2 回答

TA贡献1835条经验 获得超7个赞
将以下代码放入functions.php主题文件中。
// Remove links to the product details pages from the product listing page of a WooCommerce store
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 );

TA贡献1856条经验 获得超17个赞
试试这个:
function remove_direct_link_to_product_page() {
if ( is_product() && is_product_category(array('category-slug') ) ) {
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 );
}
}
- 2 回答
- 0 关注
- 184 浏览
添加回答
举报