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

66 lines
2.2 KiB
PHP
Raw Normal View History

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.
*
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.
*
2016-05-27 01:48:49 +00:00
* @see https://docs.woothemes.com/document/template-structure/
2012-08-14 18:05:45 +00:00
* @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 ),
'input_value' => ( isset( $_POST['quantity'] ) ? wc_stock_amount( $_POST['quantity'] ) : 1 )
) );
}
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; ?>