Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remove check out option from WooCommerce?

My website is an affiliate website and the products listed there are not owned by me. I just want to list affiliate products and the buy now link will be of the affiliates website. So, I don't want the check out option on my website. I want to know that how can I remove check out and shopping cart option from WooCommerce plugin?

like image 317
Shalini Dixit Avatar asked Sep 02 '25 07:09

Shalini Dixit


1 Answers

try this

Add the filter to your theme's functions.php file.

remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart' );
like image 62
Keyur Trivedi Avatar answered Sep 04 '25 23:09

Keyur Trivedi