Hello @andbale,
My sincere apologies for the above issue. Actually, as you are using multiple plugins I can share a quick work-around for you.
Path: /wp-content/plugins/woocommerce-jetpack/includes/class-wcj-multicurrency.php
Before :
public function get_default_currency() {
$default_currency_number = wcj_get_option( 'wcj_multicurrency_default_currency', 1 );
$currency = wcj_get_option( 'wcj_multicurrency_currency_' . $default_currency_number, apply_filters( 'woocommerce_currency', get_option( 'woocommerce_currency' ) ) );
return $currency;
}
After :
public function get_default_currency() {
$module_roles = wcj_get_option( 'wcj_multicurrency_role_defaults_roles', '' );
if ( ! empty( $module_roles ) ) {
$current_user_role = wcj_get_current_user_first_role();
if ( in_array( $current_user_role, $module_roles, true ) ) {
$currency = wcj_get_option( 'wcj_multicurrency_role_defaults_' . $current_user_role, '' );
if ( '' !== $currency && null !== $currency ) {
return $currency;
}
}
}
$default_currency_number = wcj_get_option( 'wcj_multicurrency_default_currency', 1 );
$currency = wcj_get_option( 'wcj_multicurrency_currency_' . $default_currency_number, apply_filters( 'woocommerce_currency', get_option( 'woocommerce_currency' ) ) );
return $currency;
}
Kind Regards,
RonyP – Support Team