solarsurfer Merchant Lähettäjä United Kingdom Jäsen alkaen maalisk. 2021 solarsurfer 21 huhtik. 2024 14:29 Price Valid Until google field price field "priceValidUntil" If I do a source page view it exists but with a "null" entry. Any idea where this can be set ? Google needs it or errors. This needs to be used even with "qty price discounts" as well as Campaigns. Regards
tim Founder Lähettäjä Sweden Jäsen alkaen toukok. 2013 tim 21 huhtik. 2024 15:24 Do they have a settings value or instruction for those with "continous, until further notice"? Demonstrative examples of how to nail qty price breaks and discount much appreciated.
solarsurfer Merchant Lähettäjä United Kingdom Jäsen alkaen maalisk. 2021 solarsurfer 21 huhtik. 2024 16:07 here is google snapshot here is google more info page url https://developers.google.com/search/docs/appearance/structured-data/product Ill see if i can find anything else
tim Founder Lähettäjä Sweden Jäsen alkaen toukok. 2013 tim 25 huhtik. 2024 02:05 You will need to add this commit. https://github.com/litecart/litecart/commit/0308ab01ae0dafc83a1a2ad9ac7cc36eeca176de Then in pages/feeds/google_shopping.csv.inc.php: Find 'sale_price' => (!empty($product['campaign_price']) ? currency::format_raw(tax::get_price($product['campaign_price'], $product['tax_class_id']), currency::$selected['code']) .' '. currency::$selected['code'] : ''), After that, add 'priceValidUntil' => (!empty($product['campaign_price']) ? date('c', strtotime($product['campaign_end_date'])) : ''),
solarsurfer Merchant Lähettäjä United Kingdom Jäsen alkaen maalisk. 2021 solarsurfer 25 huhtik. 2024 07:34 well done !