• 16-09-2020, 16:36:07
    #1
    Üyeliği durduruldu
    Merhaba arkadaşlar woocommerce altyapısında sadece arama ile sipariş almak istiyorum, sepete ekle (add to cart) butonu yerine Hemen Ara butonu nasıl oluşturabilirim?
  • 16-09-2020, 17:12:54
    #2
    Örnek kodu temanızın functions.php dosyasına ekleyip, telefonnumarasi yazan yere kendi numaranızı ekleyebilirsiniz.
    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 );
    add_action('woocommerce_after_shop_loop_item', 'add_a_custom_button', 5 );
    add_action('woocommerce_single_product_summary', 'add_a_custom_button', 5 );
    function add_a_custom_button() {
    global $product;
    echo '<div style="margin-bottom:10px;">
    <a class="button custom-button" href="tel:+90telefonnumarasi">Hemen Ara</a>
    </div>';
    }
  • 16-09-2020, 17:37:27
    #3
    Üyeliği durduruldu
    muratermis adlı üyeden alıntı: mesajı görüntüle
    Örnek kodu temanızın functions.php dosyasına ekleyip, telefonnumarasi yazan yere kendi numaranızı ekleyebilirsiniz.
    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 );
    add_action('woocommerce_after_shop_loop_item', 'add_a_custom_button', 5 );
    add_action('woocommerce_single_product_summary', 'add_a_custom_button', 5 );
    function add_a_custom_button() {
    global $product;
    echo '<div style="margin-bottom:10px;">
    <a class="button custom-button" href="tel:+90telefonnumarasi">Hemen Ara</a>
    </div>';
    }
    çalıştı teşekkürler cansınız