Alex Gor
Forum Replies Created
-
Forum: Plugins
In reply to: [WPGlobus - Multilingual WordPress] Error when translating page slugs1.
First of all try reset permalinks on Permalink Settings page.
You should just click Save Changes button on
https://yoursite/wp-admin/options-permalink.php
2.
Usually 500 Internal Server Error is connected with wrong Apache configuration
(missing module that is mentioned in htaccess or something like this).
Check your error.log right after the error occurs for details.
3.
The script tries to get more memory than is limited by the ‘memory_limit’ parameter.
4.
In some cases user has auto update of htaccess file in site root folder.
There is needs to disable this option.Forum: Plugins
In reply to: [WPGlobus - Multilingual WordPress] Translation is SwapedWPGlobus is compatible with Block Editor (Gutenberg)?
Forum: Plugins
In reply to: [WPGlobus - Multilingual WordPress] Translation is SwapedPlease read FAQ
WPGlobus doesn’t officially support Elementor
Forum: Plugins
In reply to: [WPGlobus - Multilingual WordPress] Problem in Firefox in admin area@drathy Are you using premium WPGlobus Plus add-on?
Forum: Plugins
In reply to: [WPGlobus - Multilingual WordPress] Change default language mid-functionHere is the code
/** * Get the multilingual value of the acf option. */ function wpglobus_acf_get_sub_field($key, $order = 0) { static $options = null; if ( is_null($options) ) { $options = acf_get_option_meta('options'); if ( ! is_array( $options ) ) { return false; } } $response = false; foreach( $options as $option_key=>$option_value ) { if ( $option_key[0] === '_' ) { continue; } $_key = '_' . $order . '_' . $key; if ( false === strpos($option_key, $_key) ) { continue; } if ( ! empty( $option_value[0] ) ) { $response = $option_value[0]; } } return $response; } $i = 0; while( have_rows( 'countries_additional_option', 'option' ) ) { the_row(); // Get $value and $label in current lanuage. // $value = get_sub_field( 'value' ); // $label = get_sub_field( 'label' ); // Get multilingual $value. $value = wpglobus_acf_get_sub_field('value', $i); // Get multilingual $label. $label = wpglobus_acf_get_sub_field('label', $i); // For example: Get $value in Italian. $value = WPGlobus_Core::text_filter( $value, 'it' ); // For example: Get $label in Italian. $label = WPGlobus_Core::text_filter( $label, 'it' ); $i++; }
First of all, you need to add a title for the default language and then save the post, and after that you will have access to all the features of WPGlobus.
Don’t forget to use WPGlobus for WPBakery Visual Composer
You can manually copy/paste content into the second language “B” tab using the WPBakery builder’s “Classic Mode” and the Editor’s “Text” tab.
Forum: Plugins
In reply to: [WPGlobus - Multilingual WordPress] Fatal error: Uncaught error@malae Please read php_extension/ctype
Forum: Plugins
In reply to: [WPGlobus - Multilingual WordPress] {:nl} shortcode shown in posts abstractsPlease submit a support ticket using the Help Desk tab on the WPGlobus options page.
Forum: Plugins
In reply to: [WPGlobus - Multilingual WordPress] ButtonTry add text {:ba}Zaka?i termin{:}{:en}Make an appointment{:}
Click Publish, then check the front-end- This reply was modified 1 year, 11 months ago by Alex Gor.
Forum: Plugins
In reply to: [WPGlobus - Multilingual WordPress] ButtonIn the second screenshot, you can see the language switcher in the top left corner.
Using the switcher, you can add text for both languages to the same field. Once added, click Publish. Then check the front end for correctness.Forum: Plugins
In reply to: [WPGlobus - Multilingual WordPress] ButtonIf text “Zaka?i termin” was saved as option, then you should use plugin WPGlobus Translate Options.
Forum: Plugins
In reply to: [WPGlobus - Multilingual WordPress] Pages overwriteCan I see your site in the public domain?