Skip to content

Instantly share code, notes, and snippets.

@kloon
Created December 8, 2012 10:48
Show Gist options
  • Save kloon/4239771 to your computer and use it in GitHub Desktop.
Save kloon/4239771 to your computer and use it in GitHub Desktop.
WooCommerce Name Your Price, show minimum price on archive pages
add_filter( 'woocommerce_get_price_html', 'woocommerce_nyp_min_price', 11, 2 );
function woocommerce_nyp_min_price( $price, $product ) {
if ( !$product->nyp )
return $price;
if( is_shop() || is_product_category() || is_product_tag() ) {
$price = woocommerce_price( $product->minimum );
}
return $price;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment