Quote:
Originally Posted by civictuner
I have the problem that some of my categories' title are the same as the hidden categorie??
anyone who has a solution for this?
thnx
|
http://forum.x-cart.com/viewtopic.php?p=128691
If you did the modification in categories.php you are probably only missing a '(' and a ')'
Where it used to say
Quote:
$search_condition = "AND avail='Y' AND (membership=blabla
|
it should now say
Quote:
$search_condition = "AND (avail='Y' OR avail = 'H') AND (membership=blabla
|
If not the SQL query will always return more than 1 row, including the hidden category, and if the hidden category was created before the category you're viewing, the title will reflect the hidden category.
HK