Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Having a category show up on certain page

Having a category show up on certain page

Locked

Views: 534

Results 1 to 2 of 2
This thread is locked. New replies are disabled.
11 Jun 2009, 11:13 PM
#1
krazey avatar

krazey

New Zenner

Join Date:
Apr 2009
Posts:
32
Plugin Contributions:
0

Having a category show up on certain page

Hi zenners,
My site is http://www.mydfashop.com
I want to have some catergories only show up on certain ez pages.
ie. I want a certain category to show up on ez page 4 and not be shown throughout the rest of the store.
is this possible???
:wacko:

12 Jun 2009, 4:17 AM
#2
kunal avatar

kunal

New Zenner

Join Date:
May 2009
Posts:
86
Plugin Contributions:
0

Re: Having a category show up on certain page

hmm, if you want a category to appear within some content of a ez-page, you could always hard code a link:

To display a text link:

<a href="url_of_link">Text that will be displayed on your page</a>

To display a text link which opens into a new browser window:

Set target="_blank"

<a href="url_of_link" target="_blank">Text that will be displayed on your page</a>

To make a picture a link:

<a href="url_of_link"><img src="url_of_image"></a>

is that what you meant?