Home User profile
tagDiv Member
This user did not write anything. So we are just showing here some random text to make the profile page look nice :)
netco
tagDiv Member

Hi Vlad,

Hope all is well and thank you for your input. Based on your recommendations, I figured out that the problem was in my child-theme. I had entered the code below in ‘functions.php’ to help me change the translation of the day & months on the top bar and for some reason that was conflicting with my WP menus.

SCREENSHOT: https://ibb.co/MPFcNcS

That being said how do I translate the names of the days & months on that top bar without affecting my menus?

/* ----------------------------------------------------------------------------
translated month + days
*/
function change_data()
{
global $wp_locale;

// Months
$wp_locale->month['01'] = 'Enero';
$wp_locale->month['02'] = 'Febrero';
$wp_locale->month['03'] = 'Marzo';
$wp_locale->month['04'] = 'Abril';
$wp_locale->month['05'] = 'Mayo';
$wp_locale->month['06'] = 'Junio';
$wp_locale->month['07'] = 'Julio';
$wp_locale->month['08'] = 'Agosto';
$wp_locale->month['09'] = 'Septiembre';
$wp_locale->month['10'] = 'Octubre';
$wp_locale->month['11'] = 'Noviembre';
$wp_locale->month['12'] = 'Diciembre';

// Days
$wp_locale->weekday['0'] = 'Domingo';
$wp_locale->weekday['1'] = 'Lunes';
$wp_locale->weekday['2'] = 'Martes';
$wp_locale->weekday['3'] = 'Miercoles';
$wp_locale->weekday['4'] = 'Jueves';
$wp_locale->weekday['5'] = 'Viernes';
$wp_locale->weekday['6'] = 'Sabado';

// Months Abbreviation
$wp_locale->month_abbrev['January'] = 'Ene';
$wp_locale->month_abbrev['February'] = 'Feb';
$wp_locale->month_abbrev['March'] = 'Mar';
$wp_locale->month_abbrev['April'] = 'Abr';
$wp_locale->month_abbrev['May'] = 'May';
$wp_locale->month_abbrev['June'] = 'Jun';
$wp_locale->month_abbrev['Julie'] = 'Jul';
$wp_locale->month_abbrev['August'] = 'Ago';
$wp_locale->month_abbrev['September'] = 'Sep';
$wp_locale->month_abbrev['October'] = 'Oct';
$wp_locale->month_abbrev['November'] = 'Nov';
$wp_locale->month_abbrev['December'] = 'Dic';

}

add_filter('locale','change_data');

  • This reply was modified 6 years by netco.
Viewing 1 post (of 1 total)