Mon-Fri 9am-4pm EST
Visualize community
tm
Home
|
Details
|
Support
|
Demo:
User
/
Admin
|
Customer Galleries
|
Contact Us
|
Forums
|
Blog
|
Members Area
|
Buy PhotoPost
PhotoPost Community
>
PhotoPost Support
>
PhotoPost Classifieds Support
>
Classifieds Installation & Upgrades
Expand/ Colapse categories
User Name
Remember Me?
Password
Register
FAQ
Social Groups
Calendar
Mark Forums Read
Classifieds Installation & Upgrades
If you're having install or upgrade problems, post here.
LinkBack
Thread Tools
Rate Thread
Display Modes
August 26th, 2004, 02:34 AM
#
1
(
permalink
)
Ted S
Member
Verified Customer
Join Date: Jan 2004
Posts: 100
Expand/ Colapse categories
I seem to be having problems with the expand and colapse category feature, colapsing works fine but if I try and expand the category afterwords it doesn't change and thus remains "stuck".
see
http://www.scubaboard.com/classifieds/index.php
August 30th, 2004, 03:24 PM
#
2
(
permalink
)
Ted S
Member
Verified Customer
Join Date: Jan 2004
Posts: 100
Any suggestions or does anyone have this feature working so I can check it out properly?
August 30th, 2004, 03:44 PM
#
3
(
permalink
)
Michael P
PhotoPost Developer
Verified Customer
Join Date: Jan 2002
Posts: 11,858
Try adding this to catopts.php at line 25 (under the other is_array()):
Code:
Content visible to verified customers only.
__________________
Please do not PM me for support or sales questions. Thank you for your understanding.
August 30th, 2004, 09:40 PM
#
4
(
permalink
)
Ted S
Member
Verified Customer
Join Date: Jan 2004
Posts: 100
Line 25 for me is right before the array and before the comment line // Lets check the need to expand/collapse categories
Should your code go here (before the array) or inside the initial loop { opening element?
August 30th, 2004, 10:54 PM
#
5
(
permalink
)
Chuck S
Photopost Developer
Verified Customer
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 66,802
I beleive Michael is stating to find this
// Register the global variables
if (is_array($HTTP_GET_VARS)) {
while(list($key,$value) = each($HTTP_GET_VARS)) {
if ($magic) {
$value = stripslashes($value);
}
${$key} = $value;
}
}
and add this below
if (is_array($HTTP_COOKIE_VARS)) {
while(list($key,$value) = each($HTTP_COOKIE_VARS)) {
if ($magic) {
$value = stripslashes($value);
}
${$key} = $value;
}
}
__________________
Photopost Developer and Support Engineer
Please do not PM me for support or sales questions. Thank you for your understanding.
«
SQL errors during initial installation
|
Where do I change variables for new templates?
»
Currently Active Users Viewing This Thread: 1
(0 members and 1 guests)
Thread Tools
Show Printable Version
Email this Page
Display Modes
Rate This Thread
Linear Mode
Switch to Hybrid Mode
Switch to Threaded Mode
Rate This Thread
:
5 : Excellent
4 : Good
3 : Average
2 : Bad
1 : Terrible
Posting Rules
You
may not
post new threads
You
may not
post replies
You
may not
post attachments
You
may not
edit your posts
BB code
is
On
Smilies
are
On
[IMG]
code is
On
HTML code is
Off
Trackbacks
are
On
Pingbacks
are
On
Refbacks
are
On
Forum Rules
Similar Threads
Thread
Thread Starter
Forum
Replies
Last Post
colapse / expand feature doesn't work correctly(FIXED)
PROXUS
Classifieds Bug Reports
7
August 8th, 2005
05:19 PM
Expand/Collapse on Admin categories screen
katipo
Photopost Pro How Do I...?
1
May 9th, 2005
10:47 AM
Category Expand not working
FASherman
ReviewPost Bug Reports
2
March 10th, 2005
04:48 PM
Categories won't expand
shamrox
Photopost Pro Installation & Upgrades
4
June 23rd, 2004
09:02 PM
All times are GMT -5. The time now is
01:37 PM
.
Contact Us
-
PhotoPost
-
Archive
-
Privacy Statement
-
Top
Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by
vBSEO
3.2.0
All Enthusiast Sites:
ResellerRatings: Discount Shopping / Store Ratings
Dealighted: Shopping Coupons, Bargains, Deals
TechIMO.com: Tech Support and Discussion
HOME
| Copyright 2001-2009
ALL ENTHUSIAST, INC.
ALL RIGHTS RESERVED.
LinkBack
LinkBack URL
About LinkBacks
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94