PluginUs.Net - Business Tools for WooCommerce and WordPress

[realize your idea - make your dreams come true]

Support Forum

You need to log-in to create request (topic) to the support

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 please
If 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.

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!

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?

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

Hello

Ok!  I  got it.

I will write to you as soon as we fix it

Awesome. Looking forward to hearing back from you, thanks.

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.

 

 

 

 

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

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.

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;

}

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

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!

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();

}

}

});

This works! Thank you for helping me out, really appreciate it!

Welcome;)

http://codecanyon.net/downloads - rate please the plugin if you liked it ...