Announcement

Collapse
No announcement yet.

A few questions

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

    A few questions

    Hi guys, i need a little help with bits and bobs.

    First, how do you make the product name turn into a hyperlink for the extended info page?

    second, i know making the extended info page to fit with the rest of the site with catalogues down the side etc is pretty impossible. ut i would just like to open the page "as is" but in the same window, how do i changethe links to do this, and what do i change the "continue shopping" button to, to make it jus go back?

    then theres the little cart info box, on the site im working on it only ever works when im in view cart or checkout, anyone know where the code is for this and what the net quote vars are so i can have a go at fixing it.

    last thing is the redirect after you add something to your cart, how do you change that? i would like it to just goto the store top.

    Many thanks for any answers

    Dave

    #2
    ok i sorted out the seconds question myself, ive got it to open the ext info in the same browser window now.

    Help much apprediated on the other questions

    Dave

    Comment


      #3
      Making the product name into an extended info link:-

      This can be done but you have to sactifice the extended info button to do it. The text link and product image kinks will still be available.

      1) Go into Design / Options / Sho Defaults / Extended Info Button and check Image.

      2) Edit Act_ExtendedInfoButtonImage.html and change to
      Code:
      </a><A HREF="NETQUOTEVAR:LINK">
      
      <!-- <IMG SRC="NETQUOTEVAR:BUTTONIMG" NAME="NETQUOTEVAR:BUTTONNAME"
      WIDTH="NETQUOTEVAR:IMAGEWIDTH" HEIGHT="NETQUOTEVAR:IMAGEHEIGHT" BORDER="0"></A> -->
      3) Edit Act_ProductLine.html (and any other product templates you use).
      amend the lines
      Code:
            <a name="NETQUOTEVAR:PRODUCTANCHOR"><span class="actregular"><b>NETQUOTEVAR:PRODUCTNAME</b></span></a>
            <span class="actxsmall">NETQUOTEVAR:PRODUCTREF <br>
            NETQUOTEVAR:PRODUCTDESCRIPTION&nbsp;NETQUOTEVAR:EXTINFOLINK</span>NETQUOTEVAR:EXTINFOBUTTON
      to read
      Code:
            <a name="NETQUOTEVAR:PRODUCTANCHOR">NETQUOTEVAR:EXTINFOBUTTON<span class="actregular"><b>NETQUOTEVAR:PRODUCTNAME</b></span></a>
            <span class="actxsmall">NETQUOTEVAR:PRODUCTREF <br>
            NETQUOTEVAR:PRODUCTDESCRIPTION&nbsp;NETQUOTEVAR:EXTINFOLINK</span>
      Now when you check the Display By / Extended Info Button in Product Details / Extended Information, you will be turning on a link around the product name instead.

      Norman
      Norman - www.drillpine.biz
      Edinburgh, U K / Bitez, Turkey

      Comment

      Working...
      X