
skdalskdlaksdlkasldkas(@superdesign)
3 Posts
Customers
Quote from skdalskdlaksdlkasldkas on March 3, 2021, 14:36
Hello. I thinking about to buy the pro version of plugin, currently I use the free version, but I want to ask. I use Classima Wordpress theme for a classified website, I want to know can I integrate with this theme the plugin to replace the theme price in listings with price of plugin. Because I want that prices to be converted to another currency. Thanks.
Hello. I thinking about to buy the pro version of plugin, currently I use the free version, but I want to ask. I use Classima Wordpress theme for a classified website, I want to know can I integrate with this theme the plugin to replace the theme price in listings with price of plugin. Because I want that prices to be converted to another currency. Thanks.

Pablo Borysenco(@pavlo_borysenco)
34,196 Posts
Quote from Pablo Borysenco on March 4, 2021, 10:17
Hello
Yes. To show prices use shortcode - https://wp-currency.com/shortcode/wpcs_price/
Please watch a video - https://www.youtube.com/watch?v=1CLRP_tDj0k
Try the free version - https://wordpress.org/plugins/currency-switcher/
Hello
Yes. To show prices use shortcode - https://wp-currency.com/shortcode/wpcs_price/
Please watch a video - https://www.youtube.com/watch?v=1CLRP_tDj0k
Try the free version - https://wordpress.org/plugins/currency-switcher/

skdalskdlaksdlkasldkas(@superdesign)
3 PostsTopic Author
Customers
Quote from skdalskdlaksdlkasldkas on March 4, 2021, 11:48
Yes, I watched the video. But how to make to replace the theme price Classima Wordpress Theme with wpcs price to show directly the prices from this plugin, but to taken the value from classima theme? Thanks, Darius Dominte.
Yes, I watched the video. But how to make to replace the theme price Classima Wordpress Theme with wpcs price to show directly the prices from this plugin, but to taken the value from classima theme? Thanks, Darius Dominte.

skdalskdlaksdlkasldkas(@superdesign)
3 PostsTopic Author
Customers
Quote from skdalskdlaksdlkasldkas on March 4, 2021, 13:17
The domain is treburi.ro
And i have following code to put the plugin price instead of classima price in functions.php
function rt_rtcl_get_currency_symbols_cb($symbols) {
echo do_shortcode("[wpcs_price]");
}
add_filter('rtcl_get_currency_symbols', 'rt_rtcl_get_currency_symbols_cb');
But i want there in do_shortcode("[wpcs_price]") to put value like do_shortcode("[wpcs_price value=variable price listing items]") to appear to each listing item the price from theme. How can i do? Thanks.
The domain is treburi.ro
And i have following code to put the plugin price instead of classima price in functions.php
function rt_rtcl_get_currency_symbols_cb($symbols) {
echo do_shortcode("[wpcs_price]");
}
add_filter('rtcl_get_currency_symbols', 'rt_rtcl_get_currency_symbols_cb');
But i want there in do_shortcode("[wpcs_price]") to put value like do_shortcode("[wpcs_price value=variable price listing items]") to appear to each listing item the price from theme. How can i do? Thanks.

Pablo Borysenco(@pavlo_borysenco)
34,196 Posts
Quote from Pablo Borysenco on March 4, 2021, 13:33
Please read this - https://wp-currency.com/shortcode/wpcs_price/ Use attribute meta_value/ where to get the meta key - contact the support of the current theme
OR If you already have values:
echo do_shortcode("[wpcs_price value=". $amount ." ]");
Please read this - https://wp-currency.com/shortcode/wpcs_price/ Use attribute meta_value/ where to get the meta key - contact the support of the current theme
OR If you already have values:
echo do_shortcode("[wpcs_price value=". $amount ." ]");