2012-06-10 08:20:28 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2015-11-03 13:53:50 +00:00
|
|
|
* Simple product add to cart
|
2012-08-14 18:05:45 +00:00
|
|
|
*
|
2015-11-03 13:31:20 +00:00
|
|
|
* This template can be overridden by copying it to yourtheme/woocommerce/single-product/add-to-cart/simple.php.
|
2015-10-01 14:07:20 +00:00
|
|
|
*
|
2016-02-12 11:28:41 +00:00
|
|
|
* HOWEVER, on occasion WooCommerce will need to update template files and you
|
|
|
|
* (the theme developer) will need to copy the new files to your theme to
|
|
|
|
* maintain compatibility. We try to do this as little as possible, but it does
|
|
|
|
* happen. When this occurs the version of the template file will be bumped and
|
|
|
|
* the readme will list any important changes.
|
2015-10-01 14:07:20 +00:00
|
|
|
*
|
2016-07-19 10:30:31 +00:00
|
|
|
* @see https://docs.woocommerce.com/document/template-structure/
|
2012-08-14 18:05:45 +00:00
|
|
|
* @author WooThemes
|
|
|
|
* @package WooCommerce/Templates
|
2013-09-25 11:35:06 +00:00
|
|
|
* @version 2.1.0
|
2012-06-10 08:20:28 +00:00
|
|
|
*/
|
2012-08-06 23:33:52 +00:00
|
|
|
|
2014-09-22 16:37:57 +00:00
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
|
|
exit; // Exit if accessed directly
|
|
|
|
}
|
2012-10-15 10:57:58 +00:00
|
|
|
|
2014-08-17 20:29:51 +00:00
|
|
|
global $product;
|
2012-06-10 08:20:28 +00:00
|
|
|
|
2014-09-22 16:37:57 +00:00
|
|
|
if ( ! $product->is_purchasable() ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-06-10 08:20:28 +00:00
|
|
|
?>
|
|
|
|
|
2012-08-06 23:33:52 +00:00
|
|
|
<?php
|
2012-06-10 08:20:28 +00:00
|
|
|
// Availability
|
2014-08-13 10:30:47 +00:00
|
|
|
$availability = $product->get_availability();
|
|
|
|
$availability_html = empty( $availability['availability'] ) ? '' : '<p class="stock ' . esc_attr( $availability['class'] ) . '">' . esc_html( $availability['availability'] ) . '</p>';
|
2014-09-22 16:37:57 +00:00
|
|
|
|
2014-08-13 10:30:47 +00:00
|
|
|
echo apply_filters( 'woocommerce_stock_html', $availability_html, $availability['availability'], $product );
|
2012-06-10 08:20:28 +00:00
|
|
|
?>
|
|
|
|
|
2012-07-10 16:32:56 +00:00
|
|
|
<?php if ( $product->is_in_stock() ) : ?>
|
2012-06-10 08:20:28 +00:00
|
|
|
|
2014-01-15 05:53:37 +00:00
|
|
|
<?php do_action( 'woocommerce_before_add_to_cart_form' ); ?>
|
2012-08-06 23:33:52 +00:00
|
|
|
|
2013-06-14 11:48:41 +00:00
|
|
|
<form class="cart" method="post" enctype='multipart/form-data'>
|
2014-01-15 05:53:37 +00:00
|
|
|
<?php do_action( 'woocommerce_before_add_to_cart_button' ); ?>
|
2012-06-10 08:20:28 +00:00
|
|
|
|
2012-08-06 23:33:52 +00:00
|
|
|
<?php
|
2015-06-18 20:51:17 +00:00
|
|
|
if ( ! $product->is_sold_individually() ) {
|
2013-11-25 14:16:26 +00:00
|
|
|
woocommerce_quantity_input( array(
|
2015-06-18 20:51:17 +00:00
|
|
|
'min_value' => apply_filters( 'woocommerce_quantity_input_min', 1, $product ),
|
|
|
|
'max_value' => apply_filters( 'woocommerce_quantity_input_max', $product->backorders_allowed() ? '' : $product->get_stock_quantity(), $product ),
|
2015-06-18 23:16:00 +00:00
|
|
|
'input_value' => ( isset( $_POST['quantity'] ) ? wc_stock_amount( $_POST['quantity'] ) : 1 )
|
2012-11-19 14:05:03 +00:00
|
|
|
) );
|
2015-06-18 20:51:17 +00:00
|
|
|
}
|
2012-06-10 08:20:28 +00:00
|
|
|
?>
|
|
|
|
|
2013-06-14 11:48:41 +00:00
|
|
|
<input type="hidden" name="add-to-cart" value="<?php echo esc_attr( $product->id ); ?>" />
|
2012-06-10 08:20:28 +00:00
|
|
|
|
2015-04-29 01:25:16 +00:00
|
|
|
<button type="submit" class="single_add_to_cart_button button alt"><?php echo esc_html( $product->single_add_to_cart_text() ); ?></button>
|
2012-06-10 08:20:28 +00:00
|
|
|
|
2014-01-15 05:53:37 +00:00
|
|
|
<?php do_action( 'woocommerce_after_add_to_cart_button' ); ?>
|
2012-06-10 08:20:28 +00:00
|
|
|
</form>
|
2012-08-06 23:33:52 +00:00
|
|
|
|
2014-01-15 05:53:37 +00:00
|
|
|
<?php do_action( 'woocommerce_after_add_to_cart_form' ); ?>
|
2012-08-06 23:33:52 +00:00
|
|
|
|
2014-09-22 16:37:57 +00:00
|
|
|
<?php endif; ?>
|