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

After change the currency, WPCS goes always to the top of the page

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.

Hello,

first of all, WPCS works great.
But one thing bothers me: my currency switch is about in the middle of the page. When I then select a currency, the page is reloaded and I'm at the top of the page and have to scroll down again first. Is there a way to come back to the currency converter after entering the currency?

Hello

in this case you need customization of the code.

An  example:

In file footer.php of your current wordpress theme (use child theme) add next code:

<?php if (isset($_GET['currency'])): ?>

<script>
jQuery(function ($) {

setTimeout(function () {
$('html, body').animate({
scrollTop: $(".wpcs").offset().top - 100
}, 777);
}, 333);

});
</script>

<?php endif; ?>