The Google Merchant Center Next feed requires an unformatted price with 2 decimal places. If a product price is $1000.00, the feed gets 1000. Google's Merchant Center requirements need it to be 1000.00. It could be an easy down-and-dirty fix if all the prices just needed .00 added. It should also be noted that I am not using the
because that would pull in a price of 0. The store builds the price from attributes and wants the product price to be a specific options price
Code:
&mvt:record:price;
Code:
&mvt:record:attribute_data[1]:options[2]:price;
Comment