Client has many products with price == '0' and the pricing is done by component prices. For example the product is a blade and the Component Attribute Choices carry the respective prices.
Andy Barrow of Copdepath.biz has a plugin to convert the Choices into Hidden products. However I have been doing some testing with hidden products in general and they are not included in google-products.xml
I have been playing with the layout 'Google Product Feed Layout' in particular the Blockif that seems to decidw which products are inclkuded but I cannot get the hidden products to be inclkuded in the product feed.
Please can anyone advise? Thank you
This is the BlockIf:
Andy Barrow of Copdepath.biz has a plugin to convert the Choices into Hidden products. However I have been doing some testing with hidden products in general and they are not included in google-products.xml
I have been playing with the layout 'Google Product Feed Layout' in particular the Blockif that seems to decidw which products are inclkuded but I cannot get the hidden products to be inclkuded in the product feed.
Please can anyone advise? Thank you
This is the BlockIf:
Code:
(<actinic:variable name="IsGoogleExportExcludeNotForSaleItems" /> == 0 OR (<actinic:variable name="IsGoogleExportExcludeNotForSaleItems" /> AND <actinic:variable name="CanBeOrderedOnline" /> == 1 AND <actinic:variable name="IsInStock" />)) AND (<actinic:variable name="IsGoogleExportExcludeDuplicate" /> == 0 OR (<actinic:variable name="IsGoogleExportExcludeDuplicate" /> AND <actinic:variable name="DuplicateIndex" /> == -1)) AND <actinic:variable name="IsProductExcludedFromGoogleExport" /> == 0 AND (<actinic:variable name="ProductPriceRaw" /> != "" AND <actinic:variable name="ProductPriceRaw" /> > 0 AND <actinic:variable name="VisibleForRetailCustomers" /> == 1)
Comment