Announcement

Collapse
No announcement yet.

Netquotevar:extinolink

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

    Netquotevar:extinolink

    Hi,

    I am using the Act_ProductlineTable template and extended info pages. What I would like is the customer to be able to click on the product name to generate the extended info page and not use the NETQUOTE text link.

    Any ideas anybody how i would acheive this.

    thanks
    Naveed

    #2
    Hi here

    The only way i can think of doing this, is to edit Act_ProductlineTable.html. Simply find "NETQUOTEVAR:PRODUCTNAME" and instead surround it with the following

    Code:
    <a href="javascript:showpopup('CUSTOMVAR:EXTINFO')">NETQUOTEVAR:PRODUCTNAME</a>
    Then in Actinic, go to "Advance | Custom Properties". Click on the "+" sign to create a new row and type in EXTINFO. For that product, use this template and simply go to the properties tab. Here click on the "+" sign to create a new row. Find "EXTINFO" and for the value, simply type in the pagename for the extended info (You can find this, by going into "Extended Tab" and see page name, it will look like the following "info_xx.html")

    Thats it.

    Kind Regards
    Nadeem Rasool
    SellerDeck Development

    Comment


      #3
      If you don't intend to use the Display by Button then you could sacrifice it to your needs.

      Replace Act_ExtendedInfoButton.html with
      Code:
      <!-- Act_ExtendedInfoButton HTML begin -->
      <!-- This template is used for the Extended Info button. -->
      
      <!-- NETQUOTEVAR:BUTTONLABEL NETQUOTEVAR:BUTTONNAME -->
      
      NETQUOTEVAR:LINK
      
      <!-- This template is used for the Extended Info button. -->
      <!-- Act_ExtendedInfoButton HTML end -->
      And edit your product templates(s) to replace

      NETQUOTEVAR:PRODUCTNAME

      with

      <a href="javascript:NETQUOTEVAR:EXTINFOBUTTON">NETQUOTEVAR:PRODUCTNAME</a>

      And remember to click the Display by Button option.
      Norman - www.drillpine.biz
      Edinburgh, U K / Bitez, Turkey

      Comment


        #4
        Thanks for the advice. I'll give the above a try and post the results.

        Comment

        Working...
        X