如何删除WooCommerce插件的一些特定功能

时间:2019-05-21 作者:Sahan Pasindu Nirmal

我需要知道如何删除WooCommerce插件中的一些功能,我的意思是添加到购物车按钮、我的帐户页面、购物车页面、结帐选项等?

我只需要在我的项目中显示商店页面,所有其他东西都需要隐藏在主题中。

如何存档此文件?

1 个回复
最合适的回答,由SO网友:Anake.me 整理而成

Disable Membership:

取消选中“Wordpress-Settings-General ~ Membership”下的复选框。

取消选中“WooCommerce-Settings-Accounts&;“隐私”。

Add the following code to your functions.php file to remove the \'Add to Cart\' button:

remove_action( \'woocommerce_after_shop_loop_item\', \'woocommerce_template_loop_add_to_cart\' );
remove_action( \'woocommerce_single_product_summary\', \'woocommerce_template_single_add_to_cart\', 30 );

To redirect away from the cart or checkout page:

在“WooCommerce-Settings-Advanced ~ page Setup”下为购物车和结账页面选择一个页面。

相关推荐