Hello.
We run a multivendor marketplace and use your plugin to populate our google shopping ads.
Our ads no longer work as your plugin does not bring in the shipping for each product (which is different for each seller) How do we add a new attribute to pull in this information to the google shopping ads
I have 388 products on my site yet only 144 are being fed into this product feed. The ones that aren’t on the feed aren’t there at all. Same category and very similar in nature to the other products. Any insight into why this might be?
https://www.ads-software.com/plugins/tfm-google-product-feed/
]]>Hi!
Google Merchant require some extra fields for some categories, like gender, color and age group.
Do you provide a way to fill this fields on the future? If you can create an extra field for product attributes to connect the attribute value to this fields, it will work.
Or maybe provide some hook and a way to change the XML template…
But I do that and it worked for me. At least until the next plugin update. ??
1. create product attributes (reference: https://support.google.com/merchants/answer/188494?hl=en):
a. Color, with slug ‘color’;
b. Gender, with slug ‘gender’;
b.1. options: Male (slug ‘male’), Female (‘female’) and Unisex (‘unisex);
c. Age Group, with slug ‘age_group’;
c.1. options: Up to 3 months (‘newborn’), between 3-12 months (infant), between 1-5 years old (toddler), between 5-13 years old (kids) and Teens or older (adult);
2. File tfm-shrike-feed-product.php, line 56, inserted this code:
$cores_c = get_the_terms( $p->id, 'pa_color');
$cores = array();
for ($i=0;$i<count($cores_c);$i++)
$cores[] = $cores_c[$i]->slug;
$cores = implode('/',$cores);
$params['color'] = $cores;
$gen_c = get_the_terms( $p->id, 'pa_gender');
$gens = array();
for ($i=0;$i<count($gen_c);$i++)
$gens[] = $gen_c[$i]->slug;
$gens = implode('/',$gens);
$params['gender'] = $gens;
$age_c = get_the_terms( $p->id, 'pa_age_group');
$age = array();
for ($i=0;$i<count($age_c);$i++)
$age[] = $age_c[$i]->slug;
$age = implode('/',$age);
$params['age_group'] = $age;
3. File google-item.xml, line 15, inserted this:
<g:item_group_id>{{ item_group_id }}</g:item_group_id>
<g:color>{{ color }}</g:color>
<g:gender>{{ gender }}</g:gender>
<g:age_group>{{ age_group }}</g:age_group>
https://www.ads-software.com/plugins/tfm-google-product-feed/
]]>Hi!
For Brazil, Google has a new directive for installments
<g:installment>
<g:months>6</g:months>
<g:amount>50 BRL</g:amount>
</g:installment>
What can I do to send this info? I have checked that on file tfm-shrike-feed-product.php there are some lines like:
$params[‘brand’] = $this->get_setting(‘brand’);
But I dont see how can I nest the amount and months inside the installment option. Anyone can help′? Thanks!
https://www.ads-software.com/plugins/tfm-google-product-feed/
]]>Hi,
Our client’s website is using WooCommerce, and they have informed us that they submit a feed to Google with regards to their products and Google Shopping. They have told us that they use your plugin to do this.
We have been in contact with the client today, and unfortunately Google are picking up the price before Tax, rather than the post tax price.
We know that the tax rate has been set up correctly, as we have disabled it temporarily in order to see whether the product value was actually changing.
We have been informed that, apparently, Google are specifically picking up the words “inc. VAT”.
Please advise.
https://www.ads-software.com/plugins/tfm-google-product-feed/
]]>I get this URL on the google product feed tab in woocommerce settings, https://mywebsite.com?feed=google_feed (url is fake obviously) — it generates some page with xml content.
What am I supposed to do with it? There is no way to download it or the google merchant centre cannot fetch any products using that url.
What am I missing here? How do I import products into google?
https://www.ads-software.com/plugins/tfm-google-product-feed/
]]>Setup all our products. Checking the feed on google dashboard shows only 1 item and it has an error for no shipping weight.
XML has only 1 item (and it is out of stock!)
Any help would be appreciated.
https://www.ads-software.com/plugins/tfm-google-product-feed/
]]>Hi,
How can I export the first image in the product gallery instead of the featured image?
Best regards
Mattias
https://www.ads-software.com/plugins/tfm-google-product-feed/
]]>I have installed and activated it. But the rss feed (/?feed=google_feed) does not contain any products.
Could you please suggest what could be wrong?
Thank you
https://www.ads-software.com/plugins/tfm-google-product-feed/
]]>How do you avoid the script timing out? I’ve already tried changing Max_Execution_Time
https://www.ads-software.com/plugins/tfm-google-product-feed/
]]>Hello,
There are some issues with the plugin and it seems that adwords doesn’t recognise the product ID for the dynamic remarketing: “Custom parameter “ecomm_prodid” and Merchant Center feed values don’t match”. How can I fix this?
Other issues in merchant center are the “Not performing automatic item updates for availability and price”
Thanks!
https://www.ads-software.com/plugins/tfm-google-product-feed/
]]>Hello,
I have some issues regarding automatic updates and some others. In Merchant center it says that the Price and Availability information is not updated automatically. It’s weird, because in the woocommerce the price looks correct. This issue concerns the entire account.
Some other product issues are Missing microdata for condition, wrong language, etc. Is there a way to fix those issues in the feed?
Best
https://www.ads-software.com/plugins/tfm-google-product-feed/
]]>Great Product! I was just wondering is it possible to break the xml feed into mulitple feeds? We have 10,000 products and I think it is to much for the feed. Thanks in advance for your help.
https://www.ads-software.com/plugins/tfm-google-product-feed/
]]>Hi,
This is working for me! Thank you so much for this plugin. I have edited the xml file (google-item.xml) and that did the job.
Question:
I would like to show on the xml feed a specific atribute – “color”.
I see that the title value is pulled in this way:
<title><![CDATA[{{ title }}]]></title>
Can I use this method to pull an attribute? like this:
<g:color><![CDATA[{{ color }}]]></g:color>
Any hint on how can I show a specific attribute on the xml feed?
Thanks
Yaniv
https://www.ads-software.com/plugins/tfm-google-product-feed/
]]>another vote for this plugin being relatively useless. without the ability to map mpn to sku, those that use only skus have to enter every one ot hteri skus individually for every product. why not provide the ability to map sku (which Woocommerce generates automatically) to mpn?
https://www.ads-software.com/plugins/tfm-google-product-feed/
]]>Hi, does somebody know how to exclude products from the feed? I don’t know how to do it.
Best regards
Miguel
https://www.ads-software.com/plugins/tfm-google-product-feed/
]]>Hello.
I installed the plugin in my web, with WooCommerce 2.3.9.
The plugin does nothing, does not generate any file.
but the plugin if it works on my localhost with a lower version of WooCommerce 2.3.9.
I updated my localhost to version 2.3.9 and gives the same error.
Can you help me
thank you very much
https://www.ads-software.com/plugins/tfm-google-product-feed/
]]>Maybe someone can assist me with this I am an amateur. I have a webstore with 500 products with variations. Will this plugin work in my case? Can you explain to me how to use this datafeed? I downloaded and went to settings to obtain theurl. What do I exactly with it in the Google Merchant Center.
Trying to upload my datafeed. Taken the xml and uploaded in the datafeed but it is not functioning or recognizing the file.
Am I to convert it to a csv?
Please assist.
Thanks
https://www.ads-software.com/plugins/tfm-google-product-feed/
]]>My feed has the following error:
Shipping weight must be specified in ‘shipping weight’ attribute if a weight-based rule is defined in Google Merchant Center.
Now, I have the weight listed in my woocommerce product pages, but this still isn’t working. Any suggestions on where I should be looking to resolve this?
Also have the shipping method in google listed as variable by carrier weight. So I’m not sure where this issue is stemming from: my woocommerce, google, or the plugin
https://www.ads-software.com/plugins/tfm-google-product-feed/
]]>Hi,
https://underfloorparts.co.uk/?feed=google_feed
On the Google feed output it has 3 blank spaces at the top and Google is saying this is an error.
Also the Product Weight is not showing in the feed
Do I need to change a setting for this?
Thanks for your help
Duncan
https://www.ads-software.com/plugins/tfm-google-product-feed/
]]>I am getting this error for all my products in google Merchent center:
Insufficient product identifiers: Missing two out of three attributes [GTIN, brand, mpn]186 errors.
Hard goods must have values for two out of the following attributes: gtin, brand, mpn. Please make sure to include this required attribute in your data feed
Is there a option to set all the products Identifier exists to “FALSE”?
https://2-improve.com/?feed=google_feed
https://www.ads-software.com/plugins/tfm-google-product-feed/
]]>Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 21 in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php on line 38
Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 21 in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php on line 38
Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 21 in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php on line 38
Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 40 in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php on line 38
Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 40 in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php on line 38
Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 40 in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php on line 38
Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 55 in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php on line 38
Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 55 in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php on line 38
Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 55 in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php on line 38
Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 71 in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php on line 38
Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 71 in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php on line 38
Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 71 in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php on line 38
Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 87 in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php on line 38
Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 87 in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php on line 38
Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 87 in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php on line 38
Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 103 in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php on line 38
Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 103 in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php on line 38
Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 103 in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php on line 38
Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 119 in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php on line 38
Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 119 in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php on line 38
Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 119 in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php on line 38
Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 134 in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php on line 38
Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 134 in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php on line 38
Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 134 in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php on line 38
Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 150 in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php on line 38
Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 150 in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php on line 38
Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 150 in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php on line 38
Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 165 in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php on line 38
Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 165 in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php on line 38
Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 165 in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php on line 38
Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 181 in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php on line 38
Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 181 in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php on line 38
Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 181 in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php on line 38
Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 196 in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php on line 38
Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 196 in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php on line 38
Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 196 in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php on line 38
Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 212 in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php on line 38
Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 212 in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php on line 38
Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 212 in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php on line 38
Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 229 in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php on line 38
Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 229 in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php on line 38
Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 229 in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php on line 38
Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 246 in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php on line 38
Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 246 in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php on line 38
Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 246 in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php on line 38
Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 264 in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php on line 38
Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 264 in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php on line 38
Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 264 in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php on line 38
Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 281 in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php on line 38
Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 281 in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php on line 38
Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 281 in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php on line 38
Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 297 in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php on line 38
Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 297 in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php on line 38
Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 297 in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php on line 38
Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 314 in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php on line 38
Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 314 in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php on line 38
Warning: DOMDocument::loadXML(): xmlParseEntityRef: no name in Entity, line: 314 in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php on line 38
Warning: Cannot modify header information – headers already sent by (output started at /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-xml-tools.php:38) in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-shrike-feed.php on line 59
https://www.ads-software.com/plugins/tfm-google-product-feed/
]]>Fatal error: Call to a member function get_title() on a non-object in /home/gurut/public_html/wp-content/plugins/tfm-google-product-feed/tfm-shrike-feed-product.php on line 67
https://www.ads-software.com/plugins/tfm-google-product-feed/
]]>After install your plugin, just get this feed, without products:
<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:atom="https://www.w3.org/2005/Atom" xmlns:g="https://base.google.com/ns/1.0" version="2.0">
<channel>
<title><![CDATA[xxx]]></title>
<link>https://www.xxx.es</link>
<description><![CDATA[xxx]]></description>
</channel>
</rss>
Kind regards.
https://www.ads-software.com/plugins/tfm-google-product-feed/
]]>