Support Forum

For all questions related to themes and plugins!

Enter search keyword e.g. "footer color".

  • Registration is Required

    Registration is required to post questions to support forum. ThemeForest buyers also need to obtain Purchase code to be able to post on forum.

    Please read here how to obtain Purchase code.

#1648
Robert Kavgić
Participant

You can also try and modify it by yourself.

Go to wp-content/themes/elvyre/ folder and open functions.php. Go to about 1159 line where it is written:

echo '<img src="' . $l['country_flag_url'] . '" height="12" alt="' . $l['language_code'] . '" width="18" />';

Replace that line with the following one:

echo $l['translated_name']. ' ';

The flags should be now replaced by text names.

Robert