Created
November 17, 2015 21:05
-
-
Save BurlesonBrad/5ad5d28ad21e29c1f74b to your computer and use it in GitHub Desktop.
Add To Cart With Quantity
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Loop Add to Cart | |
* | |
* @author WooThemes | |
* @package WooCommerce/Templates | |
* @version 2.1.0 | |
*/ | |
if ( ! defined( 'ABSPATH' ) ) { | |
exit; // Exit if accessed directly | |
} | |
global $product; | |
if ( ! is_shop() && ! is_product_taxonomy() ) { | |
$quantity_field = woocommerce_quantity_input( array( | |
'input_name' => 'product_id', | |
'input_value' => ! empty( $product->cart_item['quantity'] ) ? $product->cart_item['quantity'] : 1, | |
'max_value' => $product->backorders_allowed() ? '' : $product->get_stock_quantity(), | |
'min_value' => 0, | |
), $product, false ); | |
$quantity_field = str_replace( array( '<div class="quantity">', "</div>" ), '', $quantity_field ); | |
echo str_replace( '<input ', '<input style="max-width: 70px" ', $quantity_field ); | |
} | |
echo apply_filters( 'woocommerce_loop_add_to_cart_link', | |
sprintf( '<a href="%s" rel="nofollow" data-product_id="%s" data-product_sku="%s" data-quantity="%s" class="button %s product_type_%s">%s</a>', | |
esc_url( $product->add_to_cart_url() ), | |
esc_attr( $product->id ), | |
esc_attr( $product->get_sku() ), | |
esc_attr( isset( $quantity ) ? $quantity : 1 ), | |
$product->is_purchasable() && $product->is_in_stock() ? 'add_to_cart_button' : '', | |
esc_attr( $product->product_type ), | |
esc_html( $product->add_to_cart_text() ) | |
), | |
$product ); | |
wc_enqueue_js( " | |
jQuery( '.add_to_cart_inline .qty' ).on( 'change', function() { | |
var qty = jQuery( this ), | |
atc = jQuery( this ).next( '.add_to_cart_button' ); | |
atc.attr( 'data-quantity', qty.val() ); | |
}); | |
" ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment