Alex Gor
Forum Replies Created
-
Forum: Plugins
In reply to: [WPGlobus] Product Addons for Woocommerce with WP GlobusIf you are using WPGlobus Premium add-ons, then contact us via this page
Forum: Plugins
In reply to: [WPGlobus] WPGlobus 2.6.8 and Elementor 3.1.4First of all WPGlobus doesn’t use language codes like
zh_cn.
Only two-letter language codes are allowed.Forum: Plugins
In reply to: [WPGlobus] Mobile dropdown menu not workingPlease update WPGlobus to v.2.6.8 and check out on frontend again.
Forum: Plugins
In reply to: [WPGlobus] Mobile dropdown menu not workingTo fix the issue you should
1. open WPGobus Options page
2. select Custom Code tab
3. add code to Custom JS Code optionjQuery(document).ready(function($) { if ( 'undefined' !== typeof WPGlobus ) { setTimeout(function(){WPGlobusRegexp();},500); } function WPGlobusRegexp() { if ( $('#menu-main_menu-1').length < 1 ) {return;} var WPGregexp = new RegExp( '{:' + WPGlobus.language + '}[^{]+' ); $('#menu-main_menu-1 .sub-menu a').each(function(i,e){ var t = $(e).text(); var r = WPGregexp.exec(t); if ( 'undefined' !== typeof r[0] ) { r = r[0].replace('{:'+WPGlobus.language+'}', ''); $(e).text('- '+r); } }); } });4. click Save Changes
5. check out on frontendForum: Plugins
In reply to: [WPGlobus] Как исключить из перевода некоторые поля ACF?@sidman001 Выпущен WPGlobus 2.6.6, WPGlobus 1.5.6 c опцией отключения поддержки
многоязычности полей ACFForum: Plugins
In reply to: [NSFW] [WPGlobus] gutenberg wpglobus override to other language dataPlease read FAQ
Forum: Plugins
In reply to: [WPGlobus] Multilingual title and article cannot be addedPlease read FAQ
Forum: Plugins
In reply to: [WPGlobus] wpglobus desktopmenu doesn’t work with theme neveYou can add your own language switcher with any option.
Here is FAQForum: Plugins
In reply to: [WPGlobus] wpglobus desktopmenu doesn’t work with theme neveI have installed and activate the Neve theme on my test site.
I did nothing with language switcher in navigation menu.
Just added some JS.
You can add the code yourself:1. open WPGobus Options page
2. select Custom Code tab
3. add code to Custom JS Code optionsetTimeout(function(){ jQuery('.wpglobus-current-language').addClass('menu-item-has-children'); },300);4. click Save Changes
5. check out on frontend`Forum: Plugins
In reply to: [WPGlobus] Dont show current language code not working.or you can get the code
Example 2from
https://github.com/WPGlobus/WPGlobus/blob/develop/language-switcher-sample.phpForum: Plugins
In reply to: [WPGlobus] Dont show current language code not working.Here the code for your case
`
if ( class_exists( ‘WPGlobus’ ) ) {$wpglobus_language_image = array(
‘en’ => array(
‘src’ => ‘https://wetag.io/wp-content/plugins/language-icons-flags-switcher/img/english.png’,
‘alt’ => ‘English’,
‘title’ => ‘English’
),
‘vi’ => array(
‘src’ => ‘https://wetag.io/wp-content/plugins/language-icons-flags-switcher/img/Vietnam.png’,
‘alt’ => ‘Vietnam’,
‘title’ => ‘Vietnam’
)
);
echo ‘<div class=”wpglobus-language-switcher”>’;
foreach( WPGlobus::Config()->enabled_languages as $language ) {
if ( $language == WPGlobus::Config()->language ) {
continue;
}
echo ‘‘;
echo ‘‘;
echo ‘‘;
}
echo ‘</div>’;
}’Forum: Plugins
In reply to: [WPGlobus] Dont show current language code not working.You have not added the
wpglobus-current-languageclass for the corresponding link of current language.
Thus your CSS rule doesn’t work.Forum: Plugins
In reply to: [WPGlobus] Как исключить из перевода некоторые поля ACF?Текущая версия WPGlobus не поддерживает отключение многоязычных полей ACF в режиме
Builder. Сейчас вы можете
1. использовать для таких полей одинаковые значения для всех языков
или
2. не добавлять значения для дополнительных языков вовсе, в таблице будет храниться значение только для основного языкаЯ добавил таск по вашему тикету в backlog лист.
Forum: Plugins
In reply to: [WPGlobus] How to create floating language switcher?Please read FAQ
Forum: Plugins
In reply to: [WPGlobus] Wrong default languageYou can change the order of languages.
See pic.5 on Quick Start page