Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions includes/class-wcqu-actions.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public function apply_product_notification() {
}

add_action( 'woocommerce_single_product_summary', array( $this, 'display_minimum_quantity_note' ), $priority );

add_action( 'woocommerce_after_shop_loop_item_title', array( $this, 'display_minimum_quantity_note' ), 10, 2);
}
}

Expand All @@ -65,9 +65,11 @@ public function display_minimum_quantity_note() {

global $product;

/*I'm commenting this out so i can show minimum qty on archive.

if ( !is_product() ) {
return;
}
}*/

if( $product->product_type == 'grouped' )
return;
Expand Down