show_left_to_free_shipping_info( do_shortcode( get_option( 'alg_wc_left_to_free_shipping_info_content_checkout', sprintf( __( '%s left for free shipping', 'amount-left-free-shipping-woocommerce' ), '%amount_left_for_free_shipping%' ) ) ) ); } /** * show_left_to_free_shipping_info_mini_cart. * * @version 1.3.0 * @since 1.0.0 */ function show_left_to_free_shipping_info_mini_cart() { $this->show_left_to_free_shipping_info( do_shortcode( get_option( 'alg_wc_left_to_free_shipping_info_content_mini_cart', sprintf( __( '%s left for free shipping', 'amount-left-free-shipping-woocommerce' ), '%amount_left_for_free_shipping%' ) ) ) ); } /** * show_left_to_free_shipping_info_cart. * * @version 1.3.0 * @since 1.0.0 */ function show_left_to_free_shipping_info_cart() { $this->show_left_to_free_shipping_info( do_shortcode( get_option( 'alg_wc_left_to_free_shipping_info_content_cart', sprintf( __( '%s left for free shipping', 'amount-left-free-shipping-woocommerce' ), '%amount_left_for_free_shipping%' ) ) ) ); } /** * show_left_to_free_shipping_info. * * @version 1.0.0 * @since 1.0.0 */ function show_left_to_free_shipping_info( $content ) { echo alg_get_left_to_free_shipping( $content ); } } endif; return new Alg_WC_Left_To_Free_Shipping_Core();