Hello, I want to ask the supportteam, but I can’t login by Kriesi support . I’m working with Enfold/ child theme here is the Item Purchase Code: c4bd0421-0064-4a8a-a033-fe4712661adb.
Everything works fine:
Now I want to ask the support to change the position of WPML currency switcher on the single product page. I want to the currency switcher right beside the price in a small distance. How can i do his?
best regards Gabriela
Hi,
Thanks for contacting us!
Could you please post a screenshot showing the changes you would like to make and logins so we can view your website?
Regards,
Yigit
Hi,
thank you for answering,
” alt=”Single product page” />
please let me now if you can’t see the screenshot, i’ll try again. thank you for your help.
best regards
Gabriela
Hi,
I cannot see the screenshot. Please upload a screenshot to one of the below sites and share the link here so we can help you better :)
https://snag.gy/
https://ctrlv.cz/en/
https://imgur.com
Best regards,
Yigit
Hi,
I added following code to functions.php file of your child theme
add_action( 'woocommerce_single_product_summary', 'avia_multicurrency_position', 10 );
function avia_multicurrency_position() {
echo do_shortcode( '[currency_switcher]' );
}
Then added following code to style.css file of your child theme
.woocommerce .wcml-dropdown.product {
display: inline-block;
margin-left: 20px;
}
.product_meta > .wcml-dropdown.product {
display: none;
}
I referred to this post – https://wpml.org/documentation/related-projects/woocommerce-multilingual/multi-currency-support-woocommerce/. Please review your website :)
Best regards,
Yigit