Dùng hàm sau để thực hiện việc thêm nút liên hệ khi giá sản phẩm là 0 nhé
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
function replace_add_to_cart() { global $product; if( $product->get_price() == 0 ) { $link = 'YOUR CONTACT PAGE URL'; $button_text = 'Contact Us'; } else { $link = $product->get_permalink(); $button_text = 'Buy Now'; } echo do_shortcode('[button link="' . esc_attr($link) . '"]'.$button_text.'[/button]'); } add_action('woocommerce_after_shop_loop_item','replace_add_to_cart'); |