diff --git a/inc/woocommerce.php b/inc/woocommerce.php index a237057d..7c89d194 100644 --- a/inc/woocommerce.php +++ b/inc/woocommerce.php @@ -10,7 +10,7 @@ if ( ! function_exists( 'understrap_woocommerce_support' ) ) { * Declares WooCommerce theme support. */ function understrap_woocommerce_support() { - add_theme_support( 'woocommerce' ); + add_theme_support( 'understrap' ); // Add New Woocommerce 3.0.0 Product Gallery support add_theme_support( 'wc-product-gallery-lightbox' ); diff --git a/package.json b/package.json index 7a7516dd..1403af6b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "understrap", - "version": "0.6.8", + "version": "0.6.8.1", "description": "WordPress Theme framework", "main": "index.js", "scripts": { diff --git a/style.css b/style.css index f9fc209f..3558a2dc 100644 --- a/style.css +++ b/style.css @@ -8,7 +8,7 @@ Description: Combination of Automattic“s _s theme and Bootstrap 4. Made as a so That downloads everything and moves it in place so that you can recompile your CSS and JS files; A developer version (with Gulp/node and Sass sources) is available on gitHub: https://github.com/holger1411/understrap A child theme is available on Github, too: https://github.com/holger1411/understrap-child; -Version: 0.6.8 +Version: 0.6.8.1 License: GNU General Public License v2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html Text Domain: understrap diff --git a/woocommerce/cart/cart-empty.php b/woocommerce/cart/cart-empty.php index 001cf992..07a5fd1a 100644 --- a/woocommerce/cart/cart-empty.php +++ b/woocommerce/cart/cart-empty.php @@ -30,7 +30,7 @@ do_action( 'woocommerce_cart_is_empty' ); if ( wc_get_page_id( 'shop' ) > 0 ) : ?>
diff --git a/woocommerce/cart/cart.php b/woocommerce/cart/cart.php index 94308149..3a047b54 100644 --- a/woocommerce/cart/cart.php +++ b/woocommerce/cart/cart.php @@ -32,10 +32,10 @@ do_action( 'woocommerce_before_cart' ); ?>' . esc_html__( 'Available on backorder', 'woocommerce' ) . '
'; + echo '' . esc_html__( 'Available on backorder', 'understrap' ) . '
'; } ?>: cart->get_cart_subtotal(); ?>
+: cart->get_cart_subtotal(); ?>
@@ -77,7 +77,7 @@ do_action( 'woocommerce_before_mini_cart' ); ?> - + diff --git a/woocommerce/cart/proceed-to-checkout-button.php b/woocommerce/cart/proceed-to-checkout-button.php index be155e57..611c6b88 100644 --- a/woocommerce/cart/proceed-to-checkout-button.php +++ b/woocommerce/cart/proceed-to-checkout-button.php @@ -24,5 +24,5 @@ if ( ! defined( 'ABSPATH' ) ) { ?> - + diff --git a/woocommerce/checkout/form-checkout.php b/woocommerce/checkout/form-checkout.php index 56e2678d..2533b65c 100644 --- a/woocommerce/checkout/form-checkout.php +++ b/woocommerce/checkout/form-checkout.php @@ -26,7 +26,7 @@ do_action( 'woocommerce_before_checkout_form', $checkout ); // If checkout registration is disabled and not logged in, the user cannot checkout. if ( ! $checkout->enable_signup && ! $checkout->enable_guest_checkout && ! is_user_logged_in() ) { - echo apply_filters( 'woocommerce_checkout_must_be_logged_in_message', __( 'You must be logged in to checkout.', 'woocommerce' ) ); + echo apply_filters( 'woocommerce_checkout_must_be_logged_in_message', __( 'You must be logged in to checkout.', 'understrap' ) ); return; } @@ -52,7 +52,7 @@ if ( ! $checkout->enable_signup && ! $checkout->enable_guest_checkout && ! is_us - + diff --git a/woocommerce/checkout/form-coupon.php b/woocommerce/checkout/form-coupon.php index 9ca97fa7..c2562694 100644 --- a/woocommerce/checkout/form-coupon.php +++ b/woocommerce/checkout/form-coupon.php @@ -25,7 +25,7 @@ if ( ! wc_coupons_enabled() ) { } if ( empty( WC()->cart->applied_coupons ) ) { - $info_message = apply_filters( 'woocommerce_checkout_coupon_message', __( 'Have a coupon?', 'woocommerce' ) . ' ' . __( 'Click here to enter your code', 'woocommerce' ) . '' ); + $info_message = apply_filters( 'woocommerce_checkout_coupon_message', __( 'Have a coupon?', 'understrap' ) . ' ' . __( 'Click here to enter your code', 'understrap' ) . '' ); wc_print_notice( $info_message, 'notice' ); } ?> @@ -33,11 +33,11 @@ if ( empty( WC()->cart->applied_coupons ) ) {