I have read all the posts on this subject and need help resolving this issue.
On my "Online Ctalog" i have created a "section" called "manufacturer". Under that manufacturer Section, I have Sony, Jvc, Panasonic as SubSections.
Under Sony sub section, I have 3 subsections called TV, VCR, Stereo.
Under each of them, I have many products.
The question is, HOW can I put the "next" and "previous" ONLY on the pages that have TV, VCR and STEREO? ( only the subsections that have prodcuts in it)
If this can not be done automatically, then please tell me
how to do this manually, please tell me HOW step by step.
I have already done what was proposed earlier as follows:
But, doing that, creats a NEXT and PREVIOUS on ALL my pages.
That is not the way I need this to work.
You need to find a template called 'Act_Primaty.html' within your 'Site1' folder and open it in Notepad.
Then look for where it says NETQUOTEVAR:BULK.
Just above it, place the following code:
code:--------------------------------------------------------------------------------
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>
<a href="NETQUOTEVAR:PREV_SECTION_URL">
NETQUOTEVAR:PREV_SECTION_NAME
</a>
</td>
<td align="right">
<a href="NETQUOTEVAR:NEXT_SECTION_URL">
NETQUOTEVAR:NEXT_SECTION_NAME
</a>
</td>
</tr>
</table>
On my "Online Ctalog" i have created a "section" called "manufacturer". Under that manufacturer Section, I have Sony, Jvc, Panasonic as SubSections.
Under Sony sub section, I have 3 subsections called TV, VCR, Stereo.
Under each of them, I have many products.
The question is, HOW can I put the "next" and "previous" ONLY on the pages that have TV, VCR and STEREO? ( only the subsections that have prodcuts in it)
If this can not be done automatically, then please tell me
how to do this manually, please tell me HOW step by step.
I have already done what was proposed earlier as follows:
But, doing that, creats a NEXT and PREVIOUS on ALL my pages.
That is not the way I need this to work.
You need to find a template called 'Act_Primaty.html' within your 'Site1' folder and open it in Notepad.
Then look for where it says NETQUOTEVAR:BULK.
Just above it, place the following code:
code:--------------------------------------------------------------------------------
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>
<a href="NETQUOTEVAR:PREV_SECTION_URL">
NETQUOTEVAR:PREV_SECTION_NAME
</a>
</td>
<td align="right">
<a href="NETQUOTEVAR:NEXT_SECTION_URL">
NETQUOTEVAR:NEXT_SECTION_NAME
</a>
</td>
</tr>
</table>
Comment