Issues with exporting products
The support doesn work on Saturdays and Sundays, so some Friday requests can be answered on Monday. If you have problems with registration ask help on contact us page pleaseIf you not got email within 24~36 business hours, firstly check your spam box, and if no any email from the support there - back to the forum and read answer here. DO NOT ANSWER ON EMAILS [noreply@pluginus.net] FROM THE FORUM!! Emails are just for your info, all answers should be published only here.
The support doesn work on Saturdays and Sundays, so some Friday requests can be answered on Monday.
Quote from Tim on March 30, 2022, 15:01Hi,
When I export products with the standard Woocommerce csv bulk export, the prices are exported in my local currency which is extremely inconvenient. Once I update prices to normal store currency and import the prices are displayed correctly.
How can I prevent this plugin from converting the prices to my local currency when exporting?
Purchase code: PRIVATE DATA!
Hi,
When I export products with the standard Woocommerce csv bulk export, the prices are exported in my local currency which is extremely inconvenient. Once I update prices to normal store currency and import the prices are displayed correctly.
How can I prevent this plugin from converting the prices to my local currency when exporting?
Purchase code: PRIVATE DATA!
Quote from Pablo Borysenco on March 31, 2022, 09:47Hello Tim
standard Woocommerce csv bulk export - As far as I know, the woocommerce plugin does not have such a feature.
Are you using a third party export plugin?
Hello Tim
standard Woocommerce csv bulk export - As far as I know, the woocommerce plugin does not have such a feature.
Are you using a third party export plugin?
Quote from Tim on March 31, 2022, 11:25Hi, thanks for getting back to me.
No not using third party plugin. Woocommerce offers a built in feature to import and export products: Product CSV Importer and Exporter - WooCommerce
Hi, thanks for getting back to me.
No not using third party plugin. Woocommerce offers a built in feature to import and export products: Product CSV Importer and Exporter - WooCommerce
Quote from Pablo Borysenco on April 1, 2022, 11:08Hello
Ok! I got it.
I will write to you as soon as we fix it
Hello
Ok! I got it.
I will write to you as soon as we fix it
Quote from Tim on April 2, 2022, 13:46Awesome. Looking forward to hearing back from you, thanks.
Awesome. Looking forward to hearing back from you, thanks.
Quote from Tim on April 4, 2022, 09:13Hi,
I'm currently facing two other issues with the plugin:
- Euro prices are not displayed correctly, they where displaying correctly before.
-> USD is my base currency, when I set up the plugin all prices (included EUR) where calculated correctly. However, since yesterday this is not the case anymore. I have tried to purge cache and update rates but no success.
I am using Siteground optimizer and have all caching options enabled. This are my settings in the WOOCS plugin: https://ibb.co/hKHCJ2Y
Please let me know how to fix this issue, I'll be happy to give you access if needed.
- Currency switcher integration
-> I would like to integrate the currency switcher in the footer of my website, when I try to do this it shows the currency switch but dropdown is not working. It does nothing when you try clicking it. Any idea what this could be? I'm using REHUB - Revendor theme.
Again, let me know if you need access or if I can provide you with anything else to solve this issue.
Hi,
I'm currently facing two other issues with the plugin:
- Euro prices are not displayed correctly, they where displaying correctly before.
-> USD is my base currency, when I set up the plugin all prices (included EUR) where calculated correctly. However, since yesterday this is not the case anymore. I have tried to purge cache and update rates but no success.
I am using Siteground optimizer and have all caching options enabled. This are my settings in the WOOCS plugin: https://ibb.co/hKHCJ2Y
Please let me know how to fix this issue, I'll be happy to give you access if needed.
- Currency switcher integration
-> I would like to integrate the currency switcher in the footer of my website, when I try to do this it shows the currency switch but dropdown is not working. It does nothing when you try clicking it. Any idea what this could be? I'm using REHUB - Revendor theme.
Again, let me know if you need access or if I can provide you with anything else to solve this issue.
Quote from Pablo Borysenco on April 4, 2022, 09:56Hello
Please drop me exact link to the issue and wp-admin access - https://share.pluginus.net/image/i20210618130558.png ->https://share.pluginus.net/image/i20210618130637.png
Hello
Please drop me exact link to the issue and wp-admin access - https://share.pluginus.net/image/i20210618130558.png ->https://share.pluginus.net/image/i20210618130637.png
Quote from Tim on April 4, 2022, 12:07You can see prices on each product page like this one: https://www.holymowly.com/shop/a-big-morning-sun-canvas/
I have disabled the widget in footer, I can activate it if you like or you can try it yourself if you like.
I also have shared the admin access.
Thanks for helping me.
You can see prices on each product page like this one: https://www.holymowly.com/shop/a-big-morning-sun-canvas/
I have disabled the widget in footer, I can activate it if you like or you can try it yourself if you like.
I also have shared the admin access.
Thanks for helping me.
Quote from Pablo Borysenco on April 5, 2022, 10:07Hello
- Euro prices are not displayed correctly, they where displaying correctly before.
https://share.pluginus.net/image/i20220405080615.png - Disable this third-party functionality for prices and do some tests
- Currency switcher integration
https://share.pluginus.net/video/v20220405080012.mp4 - this is a css conflict with your theme. Please add CSS:
.widget.widget-woocommerce-currency-switcher{
overflow: initial;
}
Hello
- Euro prices are not displayed correctly, they where displaying correctly before.
https://share.pluginus.net/image/i20220405080615.png - Disable this third-party functionality for prices and do some tests
- Currency switcher integration
https://share.pluginus.net/video/v20220405080012.mp4 - this is a css conflict with your theme. Please add CSS:
.widget.widget-woocommerce-currency-switcher{
overflow: initial;
}
Quote from Pablo Borysenco on April 11, 2022, 18:21Hello
the prices are exported in my local currency which is extremely inconvenient. - please in functions.php add this code:
add_filter( "woocommerce_product_export_product_query_args", function($args){
global $WOOCS;if (is_object($WOOCS) && $WOOCS->current_currency != $WOOCS->default_currency) {
$WOOCS->reset_currency();
}
return $args;
} );and do a test
Hello
the prices are exported in my local currency which is extremely inconvenient. - please in functions.php add this code:
add_filter("woocommerce_product_export_product_query_args", function($args){
global $WOOCS;
if (is_object($WOOCS) && $WOOCS->current_currency != $WOOCS->default_currency) {
$WOOCS->reset_currency();
}
return $args;
} );
and do a test
Quote from Tim on April 12, 2022, 13:13Hi,
Thanks for providing me with these solutions, I have been able to get it working properly thanks to you :)
One last question: I want to disable the currency conversion on a specific page, using slug is not working as this is an edit product page, meaning that the final part of the url is different for each product.
This is an example url: https://www.holymowly.com/dashboard/edit-product/93970/
The final number, in this example 93970 is different for each product. Any idea how I can exclude these pages from currency conversion?
Thanks!
Hi,
Thanks for providing me with these solutions, I have been able to get it working properly thanks to you :)
One last question: I want to disable the currency conversion on a specific page, using slug is not working as this is an edit product page, meaning that the final part of the url is different for each product.
This is an example url: https://www.holymowly.com/dashboard/edit-product/93970/
The final number, in this example 93970 is different for each product. Any idea how I can exclude these pages from currency conversion?
Thanks!
Quote from Pablo Borysenco on April 13, 2022, 09:59Hello
In this case, you need code customization
An example:
In functions.php add code
add_filter('wp_head',function(){
if(class_exists('WOOCS')){
$url = $_SERVER['SCRIPT_URI'];
if (stripos($url, '/dashboard/edit-product/') !== false) {
global $WOOCS;
$WOOCS->reset_currency();
}
}
});
Hello
In this case, you need code customization
An example:
In functions.php add code
add_filter('wp_head',function(){
if(class_exists('WOOCS')){
$url = $_SERVER['SCRIPT_URI'];
if (stripos($url, '/dashboard/edit-product/') !== false) {
global $WOOCS;
$WOOCS->reset_currency();
}
}
});
Quote from Tim on April 13, 2022, 11:10This works! Thank you for helping me out, really appreciate it!
This works! Thank you for helping me out, really appreciate it!
Quote from Pablo Borysenco on April 13, 2022, 12:12Welcome;)
http://codecanyon.net/downloads - rate please the plugin if you liked it ...
Welcome;)
http://codecanyon.net/downloads - rate please the plugin if you liked it ...