woocommerce/templates/single-product/add-to-cart/simple.php

55 lines
1.6 KiB
PHP
Raw Normal View History

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
* @version 2.1.0
2012-06-10 08:20:28 +00:00
*/
2012-08-06 23:33:52 +00:00
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
global $product;
2012-06-10 08:20:28 +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();
$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 );
2012-06-10 08:20:28 +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
<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() )
woocommerce_quantity_input( array(
'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
?>
<input type="hidden" name="add-to-cart" value="<?php echo esc_attr( $product->id ); ?>" />
2012-06-10 08:20:28 +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
<?php endif; ?>