Jeff Alvarez
Forum Replies Created
-
Hi @marimolnar11,
By default our plugin never deletes the file, based on your post it sounds like your server or one of your plugins that’s causing this or maybe caching.
Does manually refreshing or creating new feeds also gets the file deleted or removed?
Hi @jamespk ,
Thanks for that information. I’ve passed on the enhancement request to support vehicle ads. I’m unable to provide any ETAs here but if more users request for this but we’ll keep you in the loops.
Hi @ntmaria1 ,
Can you please go to Woocommerce > Status > Logs >> Scheduled Actions and go to the Failed Actions look for anything that failed and it mentions our plugin/product feed.
You also mentioned that you use batch sizes, by your log it’s stating 20, is this right?
Hi @bilievesser
We’ve changed how our plugin works with hidden products, right now it will always be hidden. You can change this with the following snippet:
add_filter( 'adt_product_feed_get_products_query_args', function( $query_args ) {
// Remove the tax_query filter for 'exclude-from-catalog' or 'exclude-from-search'
if ( isset( $query_args['tax_query'] ) && is_array( $query_args['tax_query'] ) ) {
$query_args['tax_query'] = array_filter( $query_args['tax_query'], function( $tax ) {
return ! (
isset( $tax['taxonomy'], $tax['terms'] ) &&
$tax['taxonomy'] === 'product_visibility' &&
array_intersect( $tax['terms'], [ 'exclude-from-catalog', 'exclude-from-search' ] )
);
});
}
return $query_args;
});- This reply was modified 1 year, 1 month ago by Jeff Alvarez.
Hi @rudolfl ,
Thanks for confirming and providing the URL for the structure. I’ll update the enhancement request for the specific marketplace
Hi @jamespk,
I tried looking into Google Vehicle Shopping this seems to be a beta/restricted. Can you please pass on some links on what the required fields are?
I’ll raise an enhancement request with our devs
Hi @edwinhw ,
We currently do not have that feature but what you can try is go to WC Vendors > Commission filter out the vendor and then export their commissions. From there you have a CSV file, here it’ll give details on their totals. There are a couple online tools that can convert CSV to invoices
Hi @rudolfl ,
So you want “Attribute 1” to be nested inside Description? It’ll look something like this?
<description>
<Attribute_1> </Attribute1>
</description>If so then no, it’s not possible currently with our plugin, there’s no way to currently add sub-attributes or nested tags.
There are feature requests for this so I’ll add a +1 in favor of it being developed.
Hi @golfball-uhu ,
For custom fields, you will do the following
- Make a custom field for the product, it’s an input field for the override image that you want to set for the variation
- Then you just map it out accordingly on your feed.
To add these custom fields you will use either: https://wordpress.org/plugins/advanced-custom-fields/
As of now there are no full integrations with custom fields but I’ve answered a couple questions in the forum to implement custom fields: https://wordpress.org/support/topic/custom-fields-not-showing-in-dropdown/ or use our Elite feature for built in custom fields
Now, assuming you have custom fields – you will still need to set it’s value but will only need to do this once as it’s saved. Compared to doing the first method via rules and filter.
With rules and filters, you could always duplicate the feed and it’ll retain the rules and filter. If you want it to follow the Yoast SEO Social Image, this might be possible but I will need to raise a feature request for this. There’s no ETAs on this.
Hi @wep287 ,
Please pass on your debug log so I can review your setup. Also, please note that multiple include only for the rules and filter will not work as intended as we follow the AND rule.
https://adtribes.io/knowledge-base/send-your-debug-log-to-support/
- This reply was modified 1 year, 1 month ago by Jeff Alvarez.
Hi @urbanhaze ,
I took a look at your XML feed, the missing descriptions are mostly due to variations. Please change your mappable fields to use Parent Description.
Variable products have the option to set specific descriptions. If this is not set then it’ll just be shown empty on your feed.
Hi @golfball-uhu ,
If you simply want to set a specific image for a specific variant or product then the rules and filter should work.
Here’s a sample: https://www.loom.com/share/f453ae1ed85b45e3b82f79b638d456ee. On the video you will see that only 1 variant is affected.
Depending on your products you might need to do this a couple of times. For the custom fields, as you’ve mentioned you aren’t comfortable with coding, consider getting our Elite/Premium plugin.
You can enable custom field options and set it on the product editor form. From there you can easily map said field to the feed: https://ibb.co/7JGfT9B4
As previously mentioned this is mostly due to your server forcibly renaming the files it’s best to change this behavior but if you still want it to be lower case then you can add this
add_filter('adt_create_product_feed_props', function($props, $product_feed, $project_data) {
if (isset($props['file_name'])) {
$props['file_name'] = strtolower($props['file_name']);
}
return $props;
}, 10, 3);Note that this name change will only work for new feeds: https://ibb.co/qYph5bXH
Hi @peppas ,
Afraid the feature you have in mind is not possible, we have a filter but it’s not possible to modify the tags within the XML files to be capital letters. If you’d like to further investigate if it’s possible look into
adt_get_product_data or adt_product_feed_data
Hi @golfball-uhu ,
We currently do not have those options, you could try looking into adding custom fields to the product and assign the images there. Or use the rules and filter to replace certain main images into another image