WooCommerce ‘de Satın Al Yazısını Değiştirmek
Woocommerce de satınal tekstini veya sepete ekle tekstini değiştirmek istiyorsanız, aşağıdaki kod parçasını alt temanızın functions.php dosyasına ekleyiniz
// Ürün çeşidine göre Sepete Ekleme veya Satın alma yazisini degistirmek
add_filter( 'woocommerce_product_add_to_cart_text' , 'custom_woocommerce_product_add_to_cart_text' );
function custom_woocommerce_product_add_to_cart_text() {
global $product;
$product_type = $product->product_type;
switch ( $product_type ) {
case ‘external’:
return __( ‘Beni O sayfaya götür!’, ‘woocommerce’ );
break;
case ‘grouped’:
return __( ‘Bu güzel topluluğu görüntüle’, ‘woocommerce’ );
break;
case ‘simple’:
return __( ‘ŞİMDİ ALIN!’, ‘woocommerce’ );
break;
case ‘variable’:
return __( ‘Seçenekleri İnceleyin’, ‘woocommerce’ );
break;
default:
return __( ‘Daha fazla bilgi’, ‘woocommerce’ );
}
}