Hello,

I am trying to I want to suppress the display of the categories sidebox on all but two of the pages in my site. I found this article/tutorial --- I want to suppress the display of some of my sideboxes on my front page, but still have them show on all other pages here https://www.zen-cart.com/tutorials/i...hp?article=270 and I have got it working so that the sidebox doesn't display on the home page, but I do not know how to refer to any other pages on the site.

This is the code I put in:

// test if box should display
$show_categories= true;

if ($this_is_home_page) {
$show_categories = false;
} else {
$show_categories = true;
}

if ($show_categories == true)

Here is the site I am working on:

http://peterfasano.com/zen/

I only want the categories sidebox to appear on the Fabrics and Wallcoverings pages. How do I change the ($this_is_home_page) to refer to all the other pages, except for the two where I want the sidebox to display?

Thank you!