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

Double currency display on product

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.

i need support with your currency switcher. I'm unable to display double currency on a product.

I want to display the GHS and USD(or the currency per the user's location). But the Payment currency will be GHS.

 

thank you

Hello

From the box it is possible to display only one, selected by the user, currency. In your case it is need customization. Please provide link to your site, maybe it will be possible do by CSS but no warranty.

Also read please: https://pluginus.net/support-conditions/

https://chasedestiny.com/

Hello Jeph

I created trick for you, go to FOX tab Options and enable"Show price info icon", click save button. Then open file functions.php of the current wp theme and on the same bottom of the file place next code:

add_action('wp_footer', function () {
?>
<style>
.woocs_price_info_icon{
display: none !important;
}

div:hover.woocs_price_info ul{
left: unset;
bottom: unset;
margin-left: unset;
}

div.woocs_price_info ul {
list-style: none;
position: relative;
width: auto !important;
min-width: 120px;
max-width: 400px;
color: #000 !important;
background: #fff !important;
height: auto;
min-height: 19px;
font-size: 14px !important;
line-height: normal;
vertical-align: middle;
text-align: left;
visibility: visible;
border-radius: 0;
padding: 0 !important;
}

div.woocs_price_info ul li:not(:first-child){
display: none;
}

</style>
<?php
}, 999);

 

Works: https://share.pluginus.net/image/i20251111132906.png