// Tour pages se add-to-cart aur price hatao add_action('init',function (){remove_action('woocommerce_single_product_summary','woocommerce_template_single_add_to_cart',30);remove_action('woocommerce_single_product_summary','woocommerce_template_single_price',10)});// Products ko non-purchasable banao (listing pages ka cart bhi band) add_filter('woocommerce_is_purchasable','__return_false');// Cart,Checkout,My Account ko homepage pe redirect karo add_action('template_redirect',function (){if (is_cart() || is_checkout() || is_account_page()){wp_safe_redirect(home_url(../../../../../../themes/mytravel-child/));exit}});