Код: Выделить всё
class Custom_WooCommerce_Disable_Title_Link {
public function __construct() {
add_action( 'init', array( $this, 'remove_title_hyperlink' ) );
}
public function remove_title_hyperlink() {
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 );
}
}
new Custom_WooCommerce_Disable_Title_Link();
Подробнее здесь: https://stackoverflow.com/questions/790 ... oocommerce
Мобильная версия