2012-06-10 08:20:28 +00:00
< ? php
/**
* Simple Product Add to Cart
*/
2012-08-06 23:33:52 +00:00
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
2012-06-10 08:20:28 +00:00
if ( $availability [ 'availability' ]) :
echo apply_filters ( 'woocommerce_stock_html' , '<p class="stock ' . $availability [ 'class' ] . '">' . $availability [ 'availability' ] . '</p>' , $availability [ 'availability' ] );
endif ;
?>
2012-07-10 16:32:56 +00:00
< ? php if ( $product -> is_in_stock () ) : ?>
2012-06-10 08:20:28 +00:00
< ? php do_action ( 'woocommerce_before_add_to_cart_form' ); ?>
2012-08-06 23:33:52 +00:00
2012-06-10 08:20:28 +00:00
< form action = " <?php echo esc_url( $product->add_to_cart_url () ); ?> " class = " cart " method = " post " enctype = 'multipart/form-data' >
< ? php do_action ( 'woocommerce_before_add_to_cart_button' ); ?>
2012-08-06 23:33:52 +00:00
< ? php
if ( ! $product -> is_sold_individually () )
woocommerce_quantity_input ( array ( 'min_value' => 1 , 'max_value' => $product -> backorders_allowed () ? '' : $product -> get_stock_quantity () ) );
2012-06-10 08:20:28 +00:00
?>
2012-07-30 15:01:33 +00:00
< button type = " submit " class = " single_add_to_cart_button button alt " >< ? php echo apply_filters ( 'single_add_to_cart_text' , __ ( 'Add to cart' , 'woocommerce' ), $product -> product_type ); ?> </button>
2012-06-10 08:20:28 +00:00
< ? php do_action ( 'woocommerce_after_add_to_cart_button' ); ?>
</ form >
2012-08-06 23:33:52 +00:00
2012-06-10 08:20:28 +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 ; ?>