Announcement

Collapse
No announcement yet.

Dealtagger - Netquotevar:productprice

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

    Dealtagger - Netquotevar:productprice

    Hi,

    I am submitting my site to Dealtagger and have been asked to provide a range of information and hardcode some of their script into the main product templates.

    I have put the following script into my main product template:

    <script type="text/javascript"><!--
    dealtagger_clientkey = "2f599bd7a340548e3e69ceed1a0caf6a";
    dealtagger_price = "NETQUOTEVAR:PRODUCTPRICE";
    dealtagger_url = "CUSTOMVAR:URL";
    dealtagger_desc = "NETQUOTEVAR:PRODUCTNAME";
    dealtagger_stock = "NETQUOTEVAR:STOCKLEVEL";
    dealtagger_location = "Digital Cameras";
    //--></script>
    <script type="text/javascript" src="http://datafeeds.dealtagger.com/js/taglet.js"></script>

    When I upload and view source I get the following generated on this page
    http://www.kmscameras.co.uk/acatalog...aplio_R4.html:

    <script type="text/javascript"><!--
    dealtagger_clientkey = "2f599bd7a340548e3e69ceed1a0caf6a";
    dealtagger_price = "<Actinic:PRICES PROD_REF="3" RETAIL_PRICE_PROMPT="Price:"><span class="actxsmall"><b> Price: &nbsp;&nbsp;£169.99</b></span><span class="actxxsmall"><br>Inc. VAT</span></Actinic:PRICES>";
    dealtagger_url = "http://www.kmscameras.co.uk/acatalog/Ricoh_Caplio_R4.html";
    dealtagger_desc = "Ricoh Caplio R4";
    dealtagger_stock = "100";
    dealtagger_location = "Digital Cameras";
    //--></script><script type="text/javascript" src="http://datafeeds.dealtagger.com/js/taglet.js"></script>

    Basically everything works except price which is generating a lot of text rather than just the price itself. I have looking at the netquotevar list and elsewhere in the AUG and on the forum but cannot find a standard netquotevar that will do this for me. Clearly I can do it via a customvar but am trying to avoid another step in my adding a product process.

    Has anyone got any ideas?

    Cheers,

    Myles
    www.kmscameras.co.uk

    #2
    Hi

    With Actinic version7 all of the NETQUOTEVAR'S don't work in all areas, some only work on specified templates. The problem you are having may be related to that. Try using NETQUOTEVAR:COST instead of NETQUOTEVAR:PRODCUTPRICE and see if that makes a difference
    Kiran Chandran
    Technical Support - SellerDeck
    http://www.sellerdeck.co.uk/

    Further help can also be found at http://community.sellerdeck.com/forumdisplay.php?f=27

    Comment


      #3
      the onlt thing i can suggest, is to put this taglet at the end of the page.

      the variables passed into the taglet can be collected as the page renders, and then you finally submit them with:
      <script type="text/javascript" src="http://datafeeds.dealtagger.com/js/taglet.js"></script>

      This gives you ample oppertunity to fine tune the content as the page renders. for instance, as the product template displays the price, use javascript to assign the variable then, and not in the block immidiately before the submission taglet.

      geddit?

      Last edited by gabrielcrowe; 07-Feb-2007, 04:21 PM. Reason: text reads like a dyslexic robot typed it, due to typing it at warp 6

      Comment

      Working...
      X