WooCommerce Catalog Mode
// Weber: for Catalog Mode
remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart');
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart');
add_filter( 'woocommerce_get_price_html', 'remove_price');
function remove_price($price){
return ;
}
function _disable_reviews() {
remove_post_type_support( 'product', 'comments' );
}
add_action( 'init', '_disable_reviews' );
// EOF