Home Forums WoodMart support forum change behaveor of the add to cart buttom Reply To: change behaveor of the add to cart buttom

#557617

av_admin_1984
Participant

Excellent
Thank you for this

I found this code too from stackoveflow

what are the differences between them?

// First, remove AJAX Add to Cart Button
remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 );

// Second, add View Product Button
add_action( 'woocommerce_after_shop_loop_item', 'shop_view_product_button', 10);
function shop_view_product_button() {
global $product;
$link = $product->get_permalink();
echo '<a href="' . $link . '" class="button addtocartbutton">نمایش کالا</a>';
}