Alex Gor
Forum Replies Created
-
Forum: Plugins
In reply to: [WPGlobus] Pages overwritePlease read FAQ
Forum: Plugins
In reply to: [WPGlobus] 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] Tips for Switcher in Kadence Free Themeadd class name without spaces
.wpglobus-current-languageForum: Plugins
In reply to: [WPGlobus] Tips for Switcher in Kadence Free ThemeYou should add css rule in the Custom CSS option
Forum: Plugins
In reply to: [WPGlobus] 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] 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
http://yoursite/wp-admin/options-general.php
Translations of months will be loaded automatically.Forum: Plugins
In reply to: [WPGlobus] Language Switcher does not work on desktop but on mobile devicesTo 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] Other languages cannot be savedI have already answered you in the ticket system at https://wpglobus.com
Forum: Plugins
In reply to: [WPGlobus] At some places in content {:en} and {:es} are visibleForum: Plugins
In reply to: [WPGlobus] Shortcode to place language switcher anywherePlease add a review to this page
Forum: Plugins
In reply to: [WPGlobus] Shortcode to place language switcher anywhereYou can change
WPGlobus::Config()->en_language_name[$language]
to
$languageForum: Plugins
In reply to: [WPGlobus] Shortcode to place language switcher anywherePlease paste the code snippet in question here.
Forum: Plugins
In reply to: [WPGlobus] Shortcode to place language switcher anywhereTo 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] Wrong language in frontend> This should be “willkommen” instead of “howdy”
You should install the German language pack from theGeneral Settingspage.
Find theSite Languageoption and selectDeutschthen click Save Changes.
Don’t forget to check theLanguageoption onProfilepage.> 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] Wrong language in frontendThen maybe a screenshot to clarify your issue.