我有这段代码看起来不错,并且在目录页面here is how it looks上隐藏了“添加到购物车”按钮。我不想显示价格
add_filter( 'woocommerce_loop_add_to_cart_link',
'replacing_add_to_cart_button', 10, 2 );
function replacing_add_to_cart_button( $button, $product ) {
$button_text = __("Escríbenos", "woocommerce");
$button = '<a class="button" href="' . $product->get_permalink() . '">' .$button_text . '</a>';
return $button;
}
我希望这个按钮在单个产品页面上显示并带有自定义链接,而不显示价格here is the single product page button that i want to change
我一直在寻找其他运气不好的答案,这在您的帮助下有可能吗?
答案 0 :(得分:0)
要删除“单个产品”页面上的“添加到购物车”按钮
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30 );
取消价格
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 10 );
要在目录页面上添加自定义链接
function replacing_single_add_to_cart_button() {
// Custom Link goes here
}
add_action( 'woocommerce_single_product_summary', 'replacing_single_add_to_cart_button', 30 );
希望对您有帮助。