Currency symbol by GEO in WordPress pages not woo commerce, and Currency order in different countries
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 pleaseIf 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.
Quote from samysalah2017 on September 13, 2021, 09:59Hey Guys
I have 2 questions
My website is a listing ( custom post type on WordPress pages with woocommerce product created in backend for each listing )
Website members can list his service with different prices, i will use this plugin to offer currency based on country.
but the questions here:
1 - I need also the currency to show on WordPress listings/posts based on country same as woocommerce ( In my theme i have disabled to show currency symbol already but i need activate it and show symbol based on country )
2- force country currency for country list ( for example a service listing in united states with $50, an American living in Dubai will see it AED 50, if he pay for this service from Dubai he will pay AED50 not $50, how to force him to pay $50 based on he country of the service provider)
any ideas?
Hey Guys
I have 2 questions
My website is a listing ( custom post type on WordPress pages with woocommerce product created in backend for each listing )
Website members can list his service with different prices, i will use this plugin to offer currency based on country.
but the questions here:
1 - I need also the currency to show on WordPress listings/posts based on country same as woocommerce ( In my theme i have disabled to show currency symbol already but i need activate it and show symbol based on country )
2- force country currency for country list ( for example a service listing in united states with $50, an American living in Dubai will see it AED 50, if he pay for this service from Dubai he will pay AED50 not $50, how to force him to pay $50 based on he country of the service provider)
any ideas?
Quote from Pablo Borysenco on September 13, 2021, 10:11Hello
This plugin only works with woocommerce
Hello
This plugin only works with woocommerce
Quote from samysalah2017 on September 13, 2021, 10:16I understand dear
the theme support added a currency selection to show on the WordPress pages, and also added feature to add any specific currency symbol
https://www.docs.purethemes.net/listeo/knowledge-base/my-currency-is-missing-from-the-list-how-can-i-add-it/
function my_currency_change($currency_symbol){ return 'symbol'; } add_filter('listeo_core_currency_symbol','my_currency_change');
the point that, i can use the WOOC custom price format code __CODE__ in the above script to show the WOOC country currency ?
I understand dear
the theme support added a currency selection to show on the WordPress pages, and also added feature to add any specific currency symbol
function my_currency_change($currency_symbol){
return 'symbol';
}
add_filter('listeo_core_currency_symbol','my_currency_change');
the point that, i can use the WOOC custom price format code __CODE__ in the above script to show the WOOC country currency ?
Quote from samysalah2017 on September 13, 2021, 10:21I tried add (__CODE__) to this script in functions.php but it returned as text in the front WordPress
I need to define or make a link betweeb the theme code and the Wooc currency code
I tried add (__CODE__) to this script in functions.php but it returned as text in the front WordPress
I need to define or make a link betweeb the theme code and the Wooc currency code
Quote from Pablo Borysenco on September 13, 2021, 11:58To get currency symbol
global $WOOCS; $symbol = $WOOCS->get_symbols_set($WOOCS->current_currency);
To get currency symbol
global $WOOCS; $symbol = $WOOCS->get_symbols_set($WOOCS->current_currency);
Quote from samysalah2017 on September 13, 2021, 12:07that's amazing to have this code, but how it will integrate in this php function?
function my_currency_change($currency_symbol){ return 'symbol'; } add_filter('listeo_core_currency_symbol','my_currency_change');
that's amazing to have this code, but how it will integrate in this php function?
function my_currency_change($currency_symbol){
return 'symbol';
}
add_filter('listeo_core_currency_symbol','my_currency_change');Quote from Pablo Borysenco on September 14, 2021, 09:48Hello
You should hire a developer to customize your code
function my_currency_change($currency_symbol){global $WOOCS; $symbol = $WOOCS->get_symbols_set($WOOCS->current_currency); return $symbol;} add_filter('listeo_core_currency_symbol','my_currency_change');
Hello
You should hire a developer to customize your code
function my_currency_change($currency_symbol){global $WOOCS; $symbol = $WOOCS->get_symbols_set($WOOCS->current_currency); return $symbol;
} add_filter('listeo_core_currency_symbol','my_currency_change');Quote from samysalah2017 on September 14, 2021, 09:53i added something similar to this but it didn't save because of php errors, let me try again
i added something similar to this but it didn't save because of php errors, let me try again
Quote from samysalah2017 on September 14, 2021, 11:05It returned "Array" in the Symbol place
- Array 10.00
It returned"Array" in the Symbol place
- Array 10.00
Quote from Pablo Borysenco on September 14, 2021, 15:36Ok try
function my_currency_change($currency_symbol){global $WOOCS; $symbol = $WOOCS->get_default_currency_symbol($WOOCS->current_currency); return $symbol;} add_filter('listeo_core_currency_symbol','my_currency_change');
Ok try
function my_currency_change($currency_symbol){global $WOOCS; $symbol = $WOOCS->get_default_currency_symbol($WOOCS->current_currency); return $symbol;
} add_filter('listeo_core_currency_symbol','my_currency_change');