Zum Inhalt springen
Startseite » Woocommerce Snippets » Kategorie nicht käuflich machen

Kategorie nicht käuflich machen

Bestimmten Kategorie nicht käuflich machen

add_filter('woocommerce_is_purchasable', 'ecommercehints_catalog_mode_for_specific_category', 10, 2 );

function ecommercehints_catalog_mode_for_specific_category( $is_purchasable, $product ) {
	if (has_term('accessories', 'product_cat', $product->get_id())) { // Change 'accessories' to the category slug you would like non-purchasable
		return false;
	}
	return $is_purchasable;
}