HomePage › Forums › Themeforest › Organey – Organic Food WooCommerce WordPress Theme › How to delete “Guarantee Safe Checkout” from product page? › Reply To: How to delete “Guarantee Safe Checkout” from product page?
October 15, 2021 at 12:21 am
#3869
Hi you,
To remove them, please copy and paste this code to file functions.php( child-theme):
add_action( 'after_setup_theme', 'kosis_remove_button' );
function kosis_remove_button() {
remove_action('woocommerce_single_product_summary', 'kosi_wishlist_button', 35);
remove_action('woocommerce_single_product_summary', 'kosi_compare_button', 34);
remove_action('woocommerce_share', 'kosi_social_share', 10);
}