• 10-08-2022, 17:23:14
    #1
    Woocommerce'de bir eklentiyle "Hemen Al" butonu ekledim. Fakat "Sepete Ekle" butonunu kaldırmak istiyorum ama kaldıramıyorum. Bunu ücretsiz yapmanın bir yolu var mı?



  • 10-08-2022, 17:26:31
    #2
    Anydesk verin bakalım hocam isterseniz
  • 10-08-2022, 17:28:54
    #3
    Kimlik doğrulama veya yönetimden onay bekliyor.
    woocommerce.php >

    /**
    * Main instance of WooCommerce.
    *
    * Returns the main instance of WC to prevent the need to use globals.
    *
    * @since 2.1
    * @return WooCommerce
    */
    function WC() {
    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');
    return WooCommerce::instance();
    }
  • 10-08-2022, 18:01:50
    #4
    Hocam bu kodları düzenleyince "Hemen Al" butonu da kaldırılıyor, sadece "Sepete Ekle" butonu kalksın istiyorum





    Peace adlı üyeden alıntı: mesajı görüntüle
    woocommerce.php >

    /**
    * Main instance of WooCommerce.
    *
    * Returns the main instance of WC to prevent the need to use globals.
    *
    * @since 2.1
    * @return WooCommerce
    */
    function WC() {
    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');
    return WooCommerce::instance();
    }