Jeff Alvarez
Forum Replies Created
-
Hi @iqcalex
I just tested and the all images comma separated works with both TXT and XML file: https://www.loom.com/share/7970aa103bf24342be49ed9618c04975
As for the double attributes, I’ve added 2 of the same attributes as an example. You only need one, please see the video above as I’m unable to replicate the errors you mentioned.
Hi @iqcalex ,
Google supports comma separated for the additional image links: https://support.google.com/merchants/answer/6324370?hl=en
Though, if you prefer to use multiple additional_image_link attributes you can simply create them multiple times: https://imgbb.com/
Hi @robbietr ,
I just tested, and I’m unable to replicate the additional image link issues you mentioned.
Can you please run a basic debug to check for any plugin/theme conflicts and check try my setup above?
- This reply was modified 6 months, 3 weeks ago by Jeff Alvarez.
Hi @syntaxerrorno ,
I’ll raise it up a feature request but do note that there are no ETAs for this.
Hi @iqcalex ,
Can you please send in a screenshot on how the additional image link are mapped on your feed? We support the comma separated but you will need to select the appropriate value:https://ibb.co/97yK3dN
@wood1e ,
Yes, there’s nothing wrong with it.
Hi @syntaxerrorno ,
We have the option to duplicate the feed, the category mapping is carried out as well. Does this option not work on your setup? If so can you please provide more information on how it’s set up and I’ll raise a feature request
Hi @notjustcode ,
Regarding the batch size, yes this is a bug and were working on it. As for scheduled actions – we use this to refresh the feeds.
As you mentioned that you don’t want to use this option – you can set the refresh option to no refresh and do manual refreshes instead.
Hi @koenbeer9 ,
Looks like you are using the legacy filter, can you please confirm that this is intended? If not you might be on an outdated version of Product Feed Pro.
If you are on the latest version, which is 13.4.,7 the toggle is located in Product Feed Pro > Settings > Use legacy rules and filters.
Having said that your rule setup shouldn’t cause any issues. And I visited your page again and there are products now: https://virabikes.com/wp-content/uploads/woo-product-feed-pro/xml/mnpjp8rxd8qc73llsj1zktyjld6331aa.xml
Hi @bugun ,
Looks like you have some misconfigurations, on the Availability the value field should be out_of_stock the dash is required(Check your XML file and verify what the out of stock output is)
Also, change the AND rule to OR: https://www.loom.com/share/a82e2c8920034295a592ed01a1101dfd
Hi @wood1e ,
Yes, you can type in any value. You can type in any value do note that it’s not possible to use an attribute or other mappable options on the Free version.
Hi @koenbeer9
Please include your debug log: https://adtribes.io/knowledge-base/send-your-debug-log-to-support/ or send in a screenshot on how your rules and filters are set up.
Hi @avagp ,
It’s generally not recommened to change the format but if it’s what you require then you should be able to achieve that with a snippet:
function custom_price_format_separators($product_data, $feed, $product) {
// Define the price fields to modify
$price_fields = array(
'price',
'regular_price',
'sale_price',
'price_forced',
'regular_price_forced',
'sale_price_forced',
'net_price',
'net_regular_price',
'net_sale_price',
'system_price',
'system_regular_price',
'system_sale_price',
'system_price_forced',
'system_regular_price_forced',
'system_sale_price_forced',
'system_net_price',
'system_net_regular_price',
'system_net_sale_price',
'separator_price',
'separator_regular_price',
'separator_sale_price'
);
// Define your custom separators
$custom_thousand_separator = '.'; // Change this to your desired thousand separator
$custom_decimal_separator = ','; // Change this to your desired decimal separator
// Process each price field
foreach ($price_fields as $field) {
if (isset($product_data[$field]) && is_numeric($product_data[$field])) {
// Convert to float first to ensure proper formatting
$price_value = floatval($product_data[$field]);
// Format the price with custom separators
$product_data[$field] = number_format(
$price_value,
2, // Number of decimal places
$custom_decimal_separator,
$custom_thousand_separator
);
}
}
return $product_data;
}
// Hook into the adt_get_product_data action
add_filter('adt_get_product_data', 'custom_price_format_separators', 10, 3);Add that to your functions.php or through the WP Code plugin. You might want to change the currency settings here. Note that this will apply to all your feed – so It may cause more issues on other feeds. Please also note that I’m unable to provide further support from here if you use the snippet
Hi @wood1e ,
Then can be regarded as – If X is X THEN X is Y. Think of it as if criteria matches with this value THEN I want X to do this.
- This reply was modified 7 months ago by Jeff Alvarez.
Hi @wood1e
Thanks for the image.
Looks like you are missing the Then options, this would make it so that the availability has no value set: https://ibb.co/rrz96tM
Set a value there, refresh the feed and view the XML file via incognito and verify if there’s now a value