Content of the article
Plugin URL: https://support.rightpress.net/hc/en-us/categories/200129159
1 2 3 4 5 6 7 8 9 10 11 | //in your wp theme functions.php file add next code add_filter('wcml_raw_price_amount', 'woocs_convert_fix_price'); function woocs_convert_fix_price($price) { if (class_exists('WOOCS')) { global $WOOCS; $price = $WOOCS->woocs_exchange_value($price); } return $price; } |
