Skip to content

Instantly share code, notes, and snippets.

@itzmekhokan
Created July 7, 2019 06:03
Show Gist options
  • Save itzmekhokan/2e08faa6605a5dd23da915bf484bbe26 to your computer and use it in GitHub Desktop.
Save itzmekhokan/2e08faa6605a5dd23da915bf484bbe26 to your computer and use it in GitHub Desktop.
Add quantity inputs in WooCommerce loops
<?php
function add_quantity_in_woocommerce_loop( $html, $product ) {
if ( $product && $product->is_type( 'simple' ) && $product->is_purchasable() && $product->is_in_stock() && ! $product->is_sold_individually() ) {
$html = '<form action="' . esc_url( $product->add_to_cart_url() ) . '" class="cart" method="post" enctype="multipart/form-data">';
$html .= woocommerce_quantity_input( array(), $product, false );
$html .= '<button type="submit" class="button alt">' . esc_html( $product->add_to_cart_text() ) . '</button>';
$html .= '</form>';
}
return $html;
}
add_filter( 'woocommerce_loop_add_to_cart_link', 'add_quantity_in_woocommerce_loop', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment