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

How to put the currency selector in the menu bar in mobile?

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

In the mobile phone, how to put the currency selector (Figure 1) into the menu bar (Figure 2)?

Figure 1: https://ibb.co/r22y54z

Figure 2: https://ibb.co/0Z6f92F

If need to use the code, please let me know in detail. Thank you so much.

Hello Allen

It depends of the code of the current wp theme, usually next should help:

About shortcode attributes read: https://currency-switcher.com/shortcode/woocs

Also you can create and customize shortcode using Smart Designer https://share.pluginus.net/image/i20230807133723.png

Hello, thanks.
I did the same. But you can see that the code I added through smart design, whether it is added to the menu or the title bar, does not have a drop-down bar on the home page, and it is directly displayed there. But when I enter the next level of page (such as product page, registration page, etc.), all display is normal, how to solve it.

on homepage, shortcode in the menu: https://ibb.co/TW409nM

on homepage, code on the tital bar: https://ibb.co/rcLN0SQ

show normal on the next level page: https://ibb.co/09Z93d1

 

Thank you so much.

Hello

js+css conflict, please provide link to the site [with installed drop-down in the menu], you can paste it to the secret area https://share.pluginus.net/image/i20230807131625.png

Hello, I have submitted in a private message.

thanks

Hello

Just looked the site https://share.pluginus.net/image/i20230808141526.png - I did couple settings about design (size,scale) but on all pages in mobile view its looked well, I think what can be is browser cache, clean it, and also try in another browser

p.s. I see you using premium version please provide in the secret area https://share.pluginus.net/image/i20230807131625.png purchase code with active support there

Hello, I have shared my purchase code.
As I said before, when I click on the menu on the home page, there will be an error, and all currencies will be expanded by default: https://ibb.co/Cbpk9sx

but when I am on the next level of page, such as: product page, category page, etc., the currency selector will it shows good.
I cleared all caches and even tested with a new phone, and the problem persists.

thanks

Hello

What can be is server cache, look I did experiment and you can do it: https://mysite.com?aaa=111 - and switcher  looks ok - the same page, just added params into link

On my server I has button: https://share.pluginus.net/image/i20230809124800.png

Also disable CDN and make tests

Also try another shortocode: [woocs sd=4]

Also is possible to use own shortocode using conditions:

add_shortcode('my_switcher', function(){
if(is_front_page()){
echo do_shortcode('[woocs]');
}else{
echo do_shortcode('[woocs sd=4]');
}
});

On main page will be usual switcher, on all another ones [woocs sd=4]

But I see only here cache - no conflicts found, in browser in mobile mode looks good, if to add parameters - all is ok, only cache and cache for mobile. Try please code 'my_switcher'