Announcement

Collapse
No announcement yet.

NETQUOTEVAR:SECTIONNAME and TEXT problem

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    NETQUOTEVAR:SECTIONNAME and TEXT problem

    Hi guys. Im having a problem that I cannot seem to sort. When viewing the list of avaialble sub-categories on any pages the NETQUOTEVAR:SECTIONNAME and NETQUOTEVAR:SECTIONTEXT doesn not seem to return an values. Can anyone point me int he direction i should take to try and sort the problem.

    NETQUOTEVAR:SECTIONLINK and NETQUOTEVAR:SECTIONIMAGE both work fine, its just NETQUOTEVAR:SECTIONNAME and NETQUOTEVAR:SECTIONTEXT that wont return a value!

    I am using Act_SectionLine as the template for the items (see below) I hope someone can help me out.

    Wullie

    <!-- SectionLine HTML begin -->
    <!-- Insert HTML for the beginning of a section title -->

    <DIV ALIGN="LEFT">

    <TABLE BORDER="0" CELLSPACING="0" CELLPADDING="10">

    <TR>
    <div style="border: 1px solid #E76A00; text-align: center;">
    <A HREF="NETQUOTEVAR:SECTIONLINK">NETQUOTEVAR:SECTIONIMAGE</A>
    <div style="background-color: #E76A00; color: white;">NETQUOTEVAR:SECTIONTEXT</div>
    <A HREF="NETQUOTEVAR:SECTIONLINK"><B>NETQUOTEVAR:SECTIONNAME</B></A>WILL
    </div>

    </TR>

    </TABLE>

    </DIV>
    NETQUOTEVAR:NEXT
    <!-- Insert HTML for the end of a section title -->
    <!-- SectionLine HTML end -->

    #2
    Try it like this....


    <!-- SectionLine HTML begin -->
    <!-- Insert HTML for the beginning of a section title -->

    <DIV ALIGN="LEFT">

    <TABLE BORDER="0" CELLSPACING="0" CELLPADDING="10">

    <TR>
    <div style="border: 1px solid #E76A00; text-align: center;">
    <A HREF="NETQUOTEVAR:SECTIONLINK">NETQUOTEVAR:SECTIONIMAGE</A></div>
    <div style="background-color: #E76A00; color: white;">
    <A HREF="NETQUOTEVAR:SECTIONLINK"><B>NETQUOTEVAR:SECTIONNAME</B></A>
    <br> NETQUOTEVAR:SECTIONTEXT
    </div>

    </TR>

    </TABLE>

    </DIV>
    NETQUOTEVAR:NEXT
    <!-- Insert HTML for the end of a section title -->
    <!-- SectionLine HTML end -->

    Regards,
    Bruce King
    SellerDeck

    Comment


      #3
      Got it sorted. The problem was not in the templates, even though I spent DAYS looking through template code to try and find anything missing.

      THe issue was in the DESIGN>OPTIONS>SECTIONS area.

      Default location and arrangement of sections lists "Images Only" was checked!

      Comment


        #4
        <TR>
        <div style="border: 1px solid #E76A00; text-align: center;">
        <A HREF="NETQUOTEVAR:SECTIONLINK">NETQUOTEVAR:SECTIONIMAGE</A></div>
        <div style="background-color: #E76A00; color: white;">
        <A HREF="NETQUOTEVAR:SECTIONLINK"><B>NETQUOTEVAR:SECTIONNAME</B></A>
        <br> NETQUOTEVAR:SECTIONTEXT
        </div>

        </TR>
        I don'#t see any <TD> or </TD> in the above. Surely you need a TD cell for displayable content. i.e.
        Code:
        <TR>
        <td>
        <div style="border: 1px solid #E76A00; text-align: center;">
        <A HREF="NETQUOTEVAR:SECTIONLINK">NETQUOTEVAR:SECTIONIMAGE</A></div>
        <div style="background-color: #E76A00; color: white;">
        <A HREF="NETQUOTEVAR:SECTIONLINK"><B>NETQUOTEVAR:SECTIONNAME</B></A>
        <br> NETQUOTEVAR:SECTIONTEXT 
        </div>
        </td>
        </TR>
        Norman - www.drillpine.biz
        Edinburgh, U K / Bitez, Turkey

        Comment

        Working...
        X