Woocommerce 3.0.0 Support
This commit is contained in:
parent
129a5c2488
commit
a9a7413fd1
|
@ -1,7 +1,7 @@
|
||||||
<?php
|
<?php
|
||||||
/**
|
/**
|
||||||
* Simple product add to cart
|
* Simple product add to cart
|
||||||
*
|
* Updated for Understrap to maintain Woocommerce 3.0.3 compatability.
|
||||||
* This template can be overridden by copying it to yourtheme/woocommerce/single-product/add-to-cart/simple.php.
|
* This template can be overridden by copying it to yourtheme/woocommerce/single-product/add-to-cart/simple.php.
|
||||||
*
|
*
|
||||||
* HOWEVER, on occasion WooCommerce will need to update template files and you
|
* HOWEVER, on occasion WooCommerce will need to update template files and you
|
||||||
|
@ -13,11 +13,10 @@
|
||||||
* @see https://docs.woocommerce.com/document/template-structure/
|
* @see https://docs.woocommerce.com/document/template-structure/
|
||||||
* @author WooThemes
|
* @author WooThemes
|
||||||
* @package WooCommerce/Templates
|
* @package WooCommerce/Templates
|
||||||
* @version 2.1.0
|
* @version 3.0.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
if ( ! defined( 'ABSPATH' ) ) {
|
if ( ! defined( 'ABSPATH' ) ) {
|
||||||
exit; // Exit if accessed directly
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
global $product;
|
global $product;
|
||||||
|
@ -26,38 +25,44 @@ if ( ! $product->is_purchasable() ) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
?>
|
echo wc_get_stock_html( $product );
|
||||||
|
|
||||||
<?php
|
if ( $product->is_in_stock() ) : ?>
|
||||||
// Availability
|
|
||||||
$availability = $product->get_availability();
|
|
||||||
$availability_html = empty( $availability['availability'] ) ? '' : '<p class="stock ' . esc_attr( $availability['class'] ) . '">' . esc_html( $availability['availability'] ) . '</p>';
|
|
||||||
|
|
||||||
echo apply_filters( 'woocommerce_stock_html', $availability_html, $availability['availability'], $product );
|
|
||||||
?>
|
|
||||||
|
|
||||||
<?php if ( $product->is_in_stock() ) : ?>
|
|
||||||
|
|
||||||
<?php do_action( 'woocommerce_before_add_to_cart_form' ); ?>
|
<?php do_action( 'woocommerce_before_add_to_cart_form' ); ?>
|
||||||
|
|
||||||
<form class="cart" method="post" enctype='multipart/form-data'>
|
<form class="cart" method="post" enctype='multipart/form-data'>
|
||||||
<?php do_action( 'woocommerce_before_add_to_cart_button' ); ?>
|
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
if ( ! $product->is_sold_individually() ) {
|
/**
|
||||||
|
* @since 2.1.0.
|
||||||
|
*/
|
||||||
|
do_action( 'woocommerce_before_add_to_cart_button' );
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @since 3.0.0.
|
||||||
|
*/
|
||||||
|
do_action( 'woocommerce_before_add_to_cart_quantity' );
|
||||||
|
|
||||||
woocommerce_quantity_input( array(
|
woocommerce_quantity_input( array(
|
||||||
'min_value' => apply_filters( 'woocommerce_quantity_input_min', 1, $product ),
|
'min_value' => apply_filters( 'woocommerce_quantity_input_min', $product->get_min_purchase_quantity(), $product ),
|
||||||
'max_value' => apply_filters( 'woocommerce_quantity_input_max', $product->backorders_allowed() ? '' : $product->get_stock_quantity(), $product ),
|
'max_value' => apply_filters( 'woocommerce_quantity_input_max', $product->get_max_purchase_quantity(), $product ),
|
||||||
'input_value' => ( isset( $_POST['quantity'] ) ? wc_stock_amount( $_POST['quantity'] ) : 1 )
|
'input_value' => isset( $_POST['quantity'] ) ? wc_stock_amount( $_POST['quantity'] ) : $product->get_min_purchase_quantity(),
|
||||||
) );
|
) );
|
||||||
}
|
|
||||||
|
/**
|
||||||
|
* @since 3.0.0.
|
||||||
|
*/
|
||||||
|
do_action( 'woocommerce_after_add_to_cart_quantity' );
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<input type="hidden" name="add-to-cart" value="<?php echo esc_attr( $product->id ); ?>" />
|
<button type="submit" name="add-to-cart" value="<?php echo esc_attr( $product->get_id() ); ?>" class="single_add_to_cart_button button alt"><?php echo esc_html( $product->single_add_to_cart_text() ); ?></button>
|
||||||
|
|
||||||
<button type="submit" class="btn btn-outline-primary"><?php echo esc_html( $product->single_add_to_cart_text() ); ?></button>
|
<?php
|
||||||
|
/**
|
||||||
<?php do_action( 'woocommerce_after_add_to_cart_button' ); ?>
|
* @since 2.1.0.
|
||||||
|
*/
|
||||||
|
do_action( 'woocommerce_after_add_to_cart_button' );
|
||||||
|
?>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
<?php do_action( 'woocommerce_after_add_to_cart_form' ); ?>
|
<?php do_action( 'woocommerce_after_add_to_cart_form' ); ?>
|
||||||
|
|
Reference in New Issue