Welcome to WordPress. This is your first post. Edit or delete it, then start writing!
// Disable WooCommerce single product page add_action('template_redirect', 'disable_woocommerce_product_page'); function disable_woocommerce_product_page() { if (is_product()) { wp_safe_redirect( wc_get_page_permalink( 'shop' ) ); exit; } } // Remove product links on shop page remove_action( 'woocommerce_before_shop_loop_item', 'woocommerce_template_loop_product_link_open', 10 ); remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_product_link_close', 5 );
Welcome to WordPress. This is your first post. Edit or delete it, then start writing!
Hi, this is a comment.
To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.
Commenter avatars come from Gravatar.