Jeff Alvarez
Forum Replies Created
-
Hi @seopie ,
Do you have any rules or filters on the feed that have little products? Include your debug log: https://adtribes.io/knowledge-base/send-your-debug-log-to-support/
Hi @ldubya,
There’s currently no way to set custom refresh for the feeds. As for when the refresh happens, you can find it in Woocommerce > Status > Scheduled Actions look for the feed refresh schedules.
This will give you the time it runs.
Hi @cutu234 ,
There’s currently no official integration with ACF so you’ll need to do some custom coding here. It was discussed on previous forum post: https://wordpress.org/support/topic/custom-fields-not-showing-in-dropdown/
Alternatively, you could use the tags/product attribute to store the manufacturer information and use those values instead of custom fields.
As for our Elite/Paid plugin we have built-in features to create custom fields (up to 5)
- This reply was modified 12 months ago by Jeff Alvarez.
Hi @s1lviu,
Can you send in a debug log: https://adtribes.io/knowledge-base/send-your-debug-log-to-support/?
Also, please confirm your currency options in Woocommerce > Settings > General:
Also, please confirm what XML template that’s being used. In most cases, our plugin will force to use the standard pricing format which is $100,000.99
Hi @gorabd ,
We support that feature but I’m afraid we only support the mappable field on the Elite/paid user:https://adtribes.io/knowledge-base/how-to-add-gtin-upc-ean-or-mpn-to-your-product-feed/.
I can’t provide more information here as it’s against WordPress Forum TOS.
Hi @tkfranz ,
I’ve just tested and can create new feed with google shopping reviews. Please try creating a new feed and the channel template should be google product reviews: https://ibb.co/n8fDFx7q
If it’s still failing, do a basic debug to confirm that it isn’t a plugin/theme conflict.
Hi @biiissen ,
Based on the image I don’t think that’s a rankmath field, it’s a Woocommerce field. We support that but it’s only available on our Elite/Paid plugin: https://adtribes.io/knowledge-base/how-to-add-gtin-upc-ean-or-mpn-to-your-product-feed/
I can’t talk more about it here as it’s against WordPress Terms of Conditions.
Hi guys,
An update for this will be added on the next version, there’s no ETAs but it should be released soon
Hi @biiissen ,
The code I’ve provided was a template you’ll need to adjust it so it meets your requirements. Also, you may need to reach out to the RankMath support team on this to help complete the snippet.
Also, I installed rankmath but I don’t see the input field for it. I’ll raise an integration request but will need more info.
Hi @ldubya ,
Try lowering your batch size: https://adtribes.io/knowledge-base/batch-size-configuration-product-feed/ this should reduce the resource usage
Hi @biiissen ,
To confirm you are using a field from Rank math for the GTIN? At the moment our GTIN mapping only works with the Woocommerce inventory options.
What you can try is adding a custom code to fetch the values dynamically:
function modify_product_feed_product_id($product_data) {
if (isset($product_data['id'])) {
$product_data['id'] = 'TEST_ID_12345'; // Set to a test value
}
return $product_data;
}
add_filter('adt_get_product_data', 'modify_product_feed_product_id', 10, 1);Hi @cviisual ,
Please open a post on the CTX feed team’s forum; as it’s a different plugin I can’t provide support here.
Hi everyone,
This is a known bug and will be addressed officially on the next version, for now please try this version:
https://drive.google.com/file/d/1j8xQHK75IWPAXVuDI9uuXGh7YiAUlqq4/view?usp=sharing or temporary disable error logging
Don’t forget to make backups in case something happens
- This reply was modified 1 year ago by Jeff Alvarez.
Hi @amaurynac ,
You can try running our built in tools: https://ibb.co/mrh2ybDY On the newer versions we’ve yet to fully integrate ACF but you can use it with some custom code: https://wordpress.org/support/topic/custom-fields-not-showing-in-dropdown/
There’s a request for this so I’ll add a +1 in favor of it being developed. For now, remain on the previous versions as a quick solution
Hi @richardmeintjens ,
Thanks for the logs. I can see that the batch size logs is 0, this shouldn’t be the case it might be due to that: Try changing it: https://adtribes.io/knowledge-base/batch-size-configuration-product-feed/
The default value is 750, lower it to something like 200 or mess around and see if it helps. Also, your PHP version is quite outdated, please update it to version 8.1 as this is our official supported version.