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