Private: Home › Forums › WordPress Themes › Elvyre – Retina Ready WordPress Theme › WPML Flags don't show in header › Reply To: WPML Flags don't show in header
January 19, 2015 at 3:13 pm
#1657
Participant
Yes, there is.
Use the following code instead of echo $l['translated_name']. ' ';
:
echo $l['language_code']. ' ';
To get all the uppercase letters, add the following css code in the “Elvyre options -> Appearance – Custom CSS” box:
#wpml-header-language-selector {
text-transform: uppercase;
}
Robert