Skip to content

Instantly share code, notes, and snippets.

View spiderflystudios's full-sized avatar

Spiderfly Studios spiderflystudios

View GitHub Profile
@spiderflystudios
spiderflystudios / display_max_quantity_amount.txt
Last active September 26, 2015 17:22
Woocommerce - Display max quantity allowed if set on a product
// display max quantity allowed if set on single product page
add_action('woocommerce_single_product_summary', 'maxquantityallowed', 30);
function maxquantityallowed() {
if(get_post_meta( get_the_ID(), 'maximum_allowed_quantity', true ) ){
echo 'Maximum quantity allowed for this product is <strong>'. get_post_meta( get_the_ID(), 'maximum_allowed_quantity', true ) .'</strong>. Request a custom quote for bulk orders.'; }
}