Announcement

Collapse
No announcement yet.

Google XML

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

    Google XML

    I was pleased to see a shopping feed option via XML included in 2016 - however I tried it and it worked well except for the prices uploaded being ex VAT!

    Am I missing something?
    https://www.harrisontelescopes.co.uk/

    Ed Harrison - Menmuir Scotland

    #2
    Try Marketing / Google Product Search Data Feed... / Include Tax in Product Prices.
    Norman - www.drillpine.biz
    Edinburgh, U K / Bitez, Turkey

    Comment


      #3
      Ticked that one - surprised by this, I think I will call Sellerdeck.
      https://www.harrisontelescopes.co.uk/

      Ed Harrison - Menmuir Scotland

      Comment


        #4
        A P.S. See http://community.sellerdeck.com/showthread.php?p=351874 that fixes a bug that truncates the feed if you use paginated Sections.
        Norman - www.drillpine.biz
        Edinburgh, U K / Bitez, Turkey

        Comment


          #5
          YASB (yet another SellerDeck bug).
          Layout Google Product Feed Layout line 21 has its logic back-to-front. Setting Tax Ixclusive prices will show Exclusive and vice-versa.
          To do SelelrDeck's work for them, change:
          Code:
          			<g:price><actinic:block if="%3cactinic%3avariable%20name%3d%22IsGoogleExportIncludeTax%22%20%2f%3e" ><actinic:variable name="TaxExclusivePriceRaw" /></actinic:block><actinic:block if="%3cactinic%3avariable%20name%3d%22IsGoogleExportIncludeTax%22%20%2f%3e%20%3d%3d%200"><actinic:variable name="TaxInclusivePriceRaw" /></actinic:block> <actinic:variable name="DefaultIntCurrencySymbol" /></g:price>
          To:
          Code:
          			<g:price><actinic:block if="%3cactinic%3avariable%20name%3d%22IsGoogleExportIncludeTax%22%20%2f%3e" ><actinic:variable name="TaxInclusivePriceRaw" /></actinic:block><actinic:block if="%3cactinic%3avariable%20name%3d%22IsGoogleExportIncludeTax%22%20%2f%3e%20%3d%3d%200"><actinic:variable name="TaxExclusivePriceRaw" /></actinic:block> <actinic:variable name="DefaultIntCurrencySymbol" /></g:price>
          Norman - www.drillpine.biz
          Edinburgh, U K / Bitez, Turkey

          Comment

          Working...
          X