dnaz adlı üyeden alıntı: mesajı görüntüle
Masaüstünde nasıl değiştirdiniz, mobil için farklı bir HTML butonu kullanılıyor anladığım kadarıyla. Onuda değiştirmeniz gerekiyor.
Masaüstünü functions.php Dosyasıyla Değiştim Kullandığım kod Bu
Alıntı
[COLOR=#8B8D94][FONT=Monaco]add_filter( 'add_to_cart_text', 'woo_custom_cart_button_text' ); // < 2.1[/FONT][/COLOR]
[COLOR=#8B8D94][FONT=Monaco]add_filter( 'woocommerce_product_single_add_to_cart_text', 'woo_custom_cart_button_text' ); // 2.1 +[/FONT][/COLOR]
[COLOR=#8B8D94][FONT=Monaco] [/FONT][/COLOR]
[COLOR=#8B8D94][FONT=Monaco]function woo_custom_cart_button_text() {[/FONT][/COLOR]
[COLOR=#8B8D94][FONT=Monaco] [/FONT][/COLOR]
[COLOR=#8B8D94][FONT=Monaco]return __( 'Sepete Ekle', 'woocommerce' );[/FONT][/COLOR]
[COLOR=#8B8D94][FONT=Monaco] [/FONT][/COLOR]
[COLOR=#8B8D94][FONT=Monaco]}[/FONT][/COLOR]
[COLOR=#8B8D94][FONT=Roboto, Helvetica, Arial, Verdana, sans-serif][/FONT][/COLOR]