Woocommerce Sepete Ekle yerine hemen ara
2
●97
- 16-09-2020, 16:36:07Üyeliği durdurulduMerhaba 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Ö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Üyeliği durdurulduçalıştı teşekkürler cansınızmuratermis adlı üyeden alıntı: mesajı görüntüle