I'm seeing some very odd behaviour with some of my section templates. If you take a look at this page http://new.hiphopwardrobe.co.uk/acat...ns_brands.html and view source you could see that above the Akademiks section link there should be a Rocawear section link. However you will also see that although the link is there, the text for the section name and section text are not.
This is strange as this is the code that is being used for the template...
Whats weird is that both the SECTIONNAME and SECTIONTEXT nqv's are being replaced but they are replaced by nothing.
At first I thought it must just be the template I was using but then I realised that the other sections listed there should also be displaying the section name and text. Here is the code for the other sections listed there.
I know there is nothing wrong with this code as if I go one section deeper then the name and text are displayed without problems.
So... what could be causing the SECTIONNAME and SECTIONTEXT to not be displayed? Is it another bug in Actinic? Seems very odd to me as it only happens at a certain level and the SECTIONLINK and SECTIONIMAGE nqv's work fine.
Any help would be appreciated.
Thanks,
Kev
This is strange as this is the code that is being used for the template...
Code:
<!-- SectionLine HTML begin --> <!-- Insert HTML for the beginning of a section title --> <table border="0" cellspacing="0" cellpadding="0"> <tr> <td align="center" valign="TOP"> <span class="hhwbold"><A HREF="NETQUOTEVAR:SECTIONLINK"><b>NETQUOTEVAR:SECTIONNAME</b></A></span><br> <span class="actxsmall">NETQUOTEVAR:SECTIONTEXT</span> </td> </tr> </table> NETQUOTEVAR:NEXT <!-- Insert HTML for the end of a section title --> <!-- SectionLine HTML end -->
At first I thought it must just be the template I was using but then I realised that the other sections listed there should also be displaying the section name and text. Here is the code for the other sections listed there.
Code:
<!-- SectionLine HTML begin --> <!-- Insert HTML for the beginning of a section title --> <div align="center"> <table border="0" cellspacing="0" cellpadding="4"> <tr> <td align="center" valign="TOP"> <a href="NETQUOTEVAR:SECTIONLINK">NETQUOTEVAR:SECTIONIMAGE</a><br /> <h2><span class="thumb_productname">NETQUOTEVAR:SECTIONNAME</span></h2> <span class="thumb_productprice">NETQUOTEVAR:SECTIONTEXT</span> </td> </tr> </table> </div> NETQUOTEVAR:NEXT <!-- Insert HTML for the end of a section title --> <!-- SectionLine HTML end -->
So... what could be causing the SECTIONNAME and SECTIONTEXT to not be displayed? Is it another bug in Actinic? Seems very odd to me as it only happens at a certain level and the SECTIONLINK and SECTIONIMAGE nqv's work fine.
Any help would be appreciated.
Thanks,
Kev
Comment