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

49 lines
1.5 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
2012-06-10 08:20:28 +00:00
global $woocommerce, $product;
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
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
?>
<?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
<form class="cart" method="post" enctype='multipart/form-data'>
2012-06-10 08:20:28 +00:00
<?php do_action('woocommerce_before_add_to_cart_button'); ?>
2012-08-06 23:33:52 +00:00
<?php
if ( ! $product->is_sold_individually() )
2013-11-25 13:53:18 +00:00
wc_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 $product->single_add_to_cart_text(); ?></button>
2012-06-10 08:20:28 +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
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
<?php endif; ?>