Adatkezelés
add_filter( 'gettext', 'ovi_custom_translations', 9999, 3 );
function ovi_custom_translations( $translated, $text, $domain ) {
// APPLY COUPON
if ( stripos( $translated, 'Apply coupon' ) !== false ) {
$translated = str_ireplace( 'Apply coupon', 'Kupon beváltása', $translated );
}
// COUPON
if ( stripos( $translated, 'Coupon' ) !== false ) {
$translated = str_ireplace( 'Coupon', 'Kupon', $translated );
}
// ITEMS ELŐBB!
if ( stripos( $translated, 'Items' ) !== false ) {
$translated = str_ireplace( 'Items', 'termék', $translated );
}
// ITEM UTÁNA
if ( stripos( $translated, 'Item' ) !== false ) {
$translated = str_ireplace( 'Item', 'termék', $translated );
}
return $translated;
}
add_action( 'wp_footer', 'ovi_replace_item_text_final' );
function ovi_replace_item_text_final() {
?>