Category page showing on site but not in menu

For articles specific to version 6.x
Post Reply
rjcuser
Posts: 36
Joined: Fri Feb 12, 2010 8:32 pm

Category page showing on site but not in menu

Post by rjcuser »

Hi

Ref V6.1.1

If you select a category to not be visible in the menu, it now doesn't show in the site at all and results in a 404. I am sure that this used to be ok, prior to V6. If this is so, does anyone know how to get the categories to show again on the site but not in the menu? Or if it's always been like this, how can I get a category to show in the site but not in the menu?

Thanks

Cheers
Richard
ISC Ultimate v6.1.1 - Windows 2003 Server IIS6 - PHP v5.2.13 - mySQL v5.0.51b
yoshiko
Posts: 5
Joined: Thu Apr 07, 2011 3:26 am

Re: Category page showing on site but not in menu

Post by yoshiko »

It must be a bug :(
It wasn't like this on version prior to v6.
rjcuser
Posts: 36
Joined: Fri Feb 12, 2010 8:32 pm

Re: Category page showing on site but not in menu

Post by rjcuser »

Can anyone help me in getting round this?

Thanks

Cheers
Richard
ISC Ultimate v6.1.1 - Windows 2003 Server IIS6 - PHP v5.2.13 - mySQL v5.0.51b
Tony Barnes
Posts: 744
Joined: Thu Jun 18, 2009 8:59 am

Re: Category page showing on site but not in menu

Post by Tony Barnes »

Open up /includes/classes/class.category - find:

Code: Select all

				$query = "
					SELECT
						*
					FROM
						[|PREFIX|]categories
					WHERE
						catname = '".$GLOBALS['ISC_CLASS_DB']->quote($arrCats[$i])."' AND
						catparentid = '".(int)$parentCat."' AND
						catvisible = 1
				";
Replace with

Code: Select all

				$query = "
					SELECT
						*
					FROM
						[|PREFIX|]categories
					WHERE
						catname = '".$GLOBALS['ISC_CLASS_DB']->quote($arrCats[$i])."' AND
						catparentid = '".(int)$parentCat."' 
				";
So basically find this code and remove it

Code: Select all

AND
						catvisible = 1
Be careful what you do going forwards, as this will leave 'off' categories visible to people who have links, though I think other than that there are no issues leaping out.
rjcuser
Posts: 36
Joined: Fri Feb 12, 2010 8:32 pm

Re: Category page showing on site but not in menu

Post by rjcuser »

Thank you so much...

Cheers
Richard
ISC Ultimate v6.1.1 - Windows 2003 Server IIS6 - PHP v5.2.13 - mySQL v5.0.51b
Tony Barnes
Posts: 744
Joined: Thu Jun 18, 2009 8:59 am

Re: Category page showing on site but not in menu

Post by Tony Barnes »

No probs
Post Reply