• Resolved jonathanbertholet

    (@jonathanbertholet)


    Hi,

    I’m running a site that has different services offered in different countries. As such, they each are offered in their own currency first, but are marketed towards people from various countries.

    Is it possible to indicate on which page which currency is the base one to convert from?

    Thanks

Viewing 1 replies (of 1 total)
  • Plugin Support mediawebster

    (@mediawebster)

    Hello

    There can be only one base currency.

    But you can show different currencies depending on the current page.
    Example:

    add_action('wp_head',function(){
    
    if(is_page('page_slug')){
    global $WPCS;
    $WPCS->storage->set_val('wpcs_current_currency','USD');
    $WPCS->current_currency="USD";
    }
    
    });
Viewing 1 replies (of 1 total)
  • The topic ‘Multiple base currencies?’ is closed to new replies.