mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-02 12:02:25 +08:00
8 lines
403 B
Text
8 lines
403 B
Text
add_action( 'woocommerce_after_shop_loop_item', 'wc_display_whole_add_cart_form', 1 );
|
|
|
|
function wc_display_whole_add_cart_form() {
|
|
global $product;
|
|
if ( ! $product->is_purchasable() ) return;
|
|
remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 );
|
|
add_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_single_add_to_cart', 11 );
|
|
}
|