Alex Gor
Forum Replies Created
-
Forum: Plugins
In reply to: [WPGlobus - Multilingual WordPress] Pages overwritePlease read FAQ
Forum: Plugins
In reply to: [WPGlobus - Multilingual WordPress] Language Switcher not working in ChromeI see the WPGlobus language widget in the sidebar on the page
https://masfec.org/strengthening-partnerships/
and it switches all languages except Spanish.
Perhaps this problem is related to your theme or some active plugin.Forum: Plugins
In reply to: [WPGlobus - Multilingual WordPress] Tips for Switcher in Kadence Free Themeadd class name without spaces
.wpglobus-current-language
Forum: Plugins
In reply to: [WPGlobus - Multilingual WordPress] Tips for Switcher in Kadence Free ThemeYou should add css rule in the Custom CSS option
Forum: Plugins
In reply to: [WPGlobus - Multilingual WordPress] Tips for Switcher in Kadence Free ThemeYou can insert the code snippet in the functions.php file.
add_filter('wpglobus_dropdown_menu', 'filter__wpglobus_dropdown_menu', 10, 2); function filter__wpglobus_dropdown_menu( $dropdown, $config ) { return false; }
To hide the current language in the main menu you should add a CSS rule in the WPGlobus Options page, Custom Code tab
.wpglobus-current-language { display: none; }
Forum: Plugins
In reply to: [WPGlobus - Multilingual WordPress] Translate MonthsIf your theme uses standard WP functions such as
get_the_date
get_the_modified_date
then you need to download the language packs
for the installed WPGlobus languages on the page
https://yoursite/wp-admin/options-general.php
?Translations of months will be loaded automatically.To fix the issue with language switcher you should
1. open the WPGobus Options page
2. select the “Custom Code” tab
3. add code to “Custom JS Code” optionsetTimeout(function(){ jQuery(document).on('mouseenter', '.wpglobus-current-language', function(ev){ jQuery('.wpglobus-current-language .sub-menu').css({'visibility':'visible'}); }); jQuery(document).on('mouseleave', '.wpglobus-current-language', function(ev){ jQuery('.wpglobus-current-language .sub-menu').css({'visibility':'none'}); }); },500);
4. click “Save Changes”
5. check on the frontendForum: Plugins
In reply to: [WPGlobus - Multilingual WordPress] Other languages cannot be savedI have already answered you in the ticket system at https://wpglobus.com
Please add a review to this page
You can change
WPGlobus::Config()->en_language_name[$language]
to
$language
Please paste the code snippet in question here.
To create a language switcher you can use the sample code from
https://github.com/WPGlobus/WPGlobus/blob/develop/language-switcher-sample.php
And place it where you want or wrap it in a shortcode.Forum: Plugins
In reply to: [WPGlobus - Multilingual WordPress] Wrong language in frontend> This should be “willkommen” instead of “howdy”
You should install the German language pack from theGeneral Settings
page.
Find theSite Language
option and selectDeutsch
then click Save Changes.
Don’t forget to check theLanguage
option onProfile
page.> This should be “Jetzt bewerben” instead of “Apply for Job”.
You should install the German language pack for the theme or plugin that displays this button.Forum: Plugins
In reply to: [WPGlobus - Multilingual WordPress] Wrong language in frontendThen maybe a screenshot to clarify your issue.