Jeff Alvarez
Forum Replies Created
-
Hi @pdagency ,
I tried accessing your XML file and it doesn’t exist. Can you confirm that it’s been refreshed or created? Also, usually when there are no products in the feed it usually means
- You have rules and filters ( temporarily remove them and see if that works)
- You don’t have the include variations enabled: https://adtribes.io/knowledge-base/how-to-add-variable-products-to-your-product-feeds/
Hi @carlos547547 ,
Looks like you are one of our Elite users, as such we aren’t able to provide support on the forum. Please reach out via our support form: https://adtribes.io/submit-ticket/
Also, you are quite outdated; please update. You can get the .zip copy on your my accounts page. I’ll mark the post as resolved for now and continue via email.
Hi @antonic93 ,
Looks like the error is due to the Google bot or crawler having a hard time accessing the product URL or page. This is case-by-case and might be due to your server blocking the crawler or your server being down when it was trying to access the page.
If you confirm that the page is viewable, then simply ask GMC to recrawl or try visiting the pages again and the error should resolved.
the error after 1\2 days resolves itself.
That happened as GMC periodically crawls back the page.
The user role editor plugin is free and available on the WordPress plugin repository: https://wordpress.org/plugins/user-role-editor/
Also, please add this code to your functions.php
function remove_decimal_point( $product_data, $feed, $product )
{
if (! is_array($product_data) ) {
return $product_data;
}
$rounded_prices = array(
'rounded_price',
'rounded_regular_price',
'rounded_sale_price',
'price_forced_rounded',
'net_price_rounded',
'net_regular_price_rounded',
'net_sale_price_rounded',
'sale_price_forced_rounded',
);
foreach ( $rounded_prices as $key ) {
if (array_key_exists($key, $product_data) && is_numeric($product_data[ $key ]) ) {
$product_data[ $key ] = number_format($product_data[ $key ], 0);
}
}
return $product_data;
}
add_filter('adt_get_product_data', 'remove_decimal_point', 20, 3);Then on your mapping use any of the ’rounded’ mappable fields.
Hi @ileiaeu,
This error is only happening on our Elite plugin. Please reach out to our support form and we’ll continue from there: https://adtribes.io/submit-ticket/
Hi @baymaxrmd ,
We never had an official integration with ACF/SCF and looks like it has to be officially integrated to work. I’ll raise an integration request for this but please keep in mind that there’s no ETA for this.
I suggest downgrading to the previous versions in order to keep using the custom fields https://wordpress.org/plugins/woo-product-feed-pro/advanced/
Please use a plugin like user role editor and edit the shop manager role. Update the permission to allow manage_options
Hi @mrsdivas ,
We currently do not have any feature or integration with the Dynamic Pricing & Discount plugin. There are integration requests for this so I’ll add a +1 in favor of it being developed
However, do note that there are no ETAs for this. As a temporary solution you could try passing the regular sale price from Woocommerce.
You can also reach out to the Dynamic Pricing Team if they can help
Hi @happysleep ,
Can you please provide more information on what you mean by description tag? I assume you mean product tag? If so I just tested and it’s working fine: https://www.loom.com/share/a1cc16abdc6b42b19d6857735625e1a0
Hi @golfball-uhu ,
Can you please provide more information on what you meant by escaping? Do you mean by showing < instead of <
https://stackoverflow.com/questions/5068951/what-do-lt-and-gt-stand-for
Hi @gerhardst17 ,
There shouldn’t be any problems with the new update on refreshing feeds. Though, we did refactor things to use Woocommerce’s Scheduled Export for refreshing the feeds.
On your staging site, can you please try updating and running the migration/sync settings in Product Feed > Settings
Also, try creating a new feed and see if it updates or refreshes.
Hi @carlos547547 ,
Please pass on your debug log so I can get an idea on how your feed is set up: https://adtribes.io/knowledge-base/send-your-debug-log-to-support/
Hi @antonic93 ,
Can you please check on GMC on what the warnings are? It might just be a missing attribute or invalid value.
Hi @antonic93 ,
Please open up a new post as you likely have a different reason. Please also check on GMC on why it was rejected. There should be a reason why it was rejected.