
designerthreads(@designerthreads)
5 Posts
Customers
Quote from designerthreads on March 23, 2021, 22:02
Hello,
Before installing WOOCS, I only have one currency and therefore added this code into my child theme. What is does it show a small notice on cart page to tell customers to add more items to be eligible for free shipping.
add_action( 'woocommerce_before_cart', 'wc_add_notice_free_shipping' );
function wc_add_notice_free_shipping() {
$free_shipping_settings = get_option('woocommerce_free_shipping_1_settings');
$amount_for_free_shipping = $free_shipping_settings['min_amount'];
$cart = WC()->cart->subtotal;
$remaining = $amount_for_free_shipping - $cart;
if( $amount_for_free_shipping > $cart ){
$notice = sprintf( "Add %s worth more products to get free shipping", wc_price($remaining));
wc_print_notice( $notice , 'notice' );
}
}Right now, I have 2 currency and I do not know where to find the parameter or the different currencies':
woocommerce_free_shipping_1_settings
I will appreciate any help in the right direction (not hard coding). Thank you!
Hello,
Before installing WOOCS, I only have one currency and therefore added this code into my child theme. What is does it show a small notice on cart page to tell customers to add more items to be eligible for free shipping.
add_action( 'woocommerce_before_cart', 'wc_add_notice_free_shipping' );
function wc_add_notice_free_shipping() {
$free_shipping_settings = get_option('woocommerce_free_shipping_1_settings');
$amount_for_free_shipping = $free_shipping_settings['min_amount'];
$cart = WC()->cart->subtotal;
$remaining = $amount_for_free_shipping - $cart;
if( $amount_for_free_shipping > $cart ){
$notice = sprintf("Add %s worth more products to get free shipping", wc_price($remaining));
wc_print_notice( $notice , 'notice' );
}
}Right now, I have 2 currency and I do not know where to find the parameter or the different currencies':
woocommerce_free_shipping_1_settings
I will appreciate any help in the right direction (not hard coding). Thank you!

Pablo Borysenco(@pavlo_borysenco)
34,196 Posts
Quote from Pablo Borysenco on March 24, 2021, 11:02
Hello
to get the data - https://currency-switcher.com/codex/#functions
To convert amount - https://currency-switcher.com/function/woocs-woocs_exchange_value/
Hello
to get the data - https://currency-switcher.com/codex/#functions
To convert amount - https://currency-switcher.com/function/woocs-woocs_exchange_value/