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

50 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 1.6.4
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
2012-06-10 08:20:28 +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
endif;
?>
<?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' => 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
?>
2012-10-16 09:45: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
<?php endif; ?>