2012-06-10 08:20:28 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2012-08-14 18:05:45 +00:00
|
|
|
* Simple product add to cart
|
|
|
|
*
|
|
|
|
* @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
|
|
|
|
2012-10-15 10:57:58 +00:00
|
|
|
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
|
|
|
|
2012-06-10 08:20:28 +00:00
|
|
|
global $woocommerce, $product;
|
|
|
|
|
2012-08-07 00:27:24 +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
|
|
|
|
$availability = $product->get_availability();
|
2012-08-06 23:33:52 +00:00
|
|
|
|
2014-01-15 05:53:37 +00:00
|
|
|
if ( $availability['availability'] )
|
2012-10-17 11:05:54 +00:00
|
|
|
echo apply_filters( 'woocommerce_stock_html', '<p class="stock ' . esc_attr( $availability['class'] ) . '">' . esc_html( $availability['availability'] ) . '</p>', $availability['availability'] );
|
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
|
|
|
|
if ( ! $product->is_sold_individually() )
|
2013-11-25 14:16:26 +00:00
|
|
|
woocommerce_quantity_input( array(
|
2012-11-19 14:05:03 +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 )
|
|
|
|
) );
|
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
|
|
|
|
2013-09-25 11:35:06 +00:00
|
|
|
<button type="submit" class="single_add_to_cart_button button alt"><?php echo $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
|
|
|
|
2011-12-09 19:55:09 +00:00
|
|
|
<?php endif; ?>
|