VaLeXaR
Forum Replies Created
-
Forum: Reviews
In reply to: [WP Multilang - Translation and Multilingual Plugin] It worksHi @vnsn
Thank You for your review.
You can get acquainted with the WP Multilang tests https://plugintests.com/plugins/wp-multilang/2.2.0. With WP Multilang, the time for loading pages increases by an average of only 0.108 s. And this is just because the plugin translates multilingual strings.Forum: Plugins
In reply to: [WP Multilang - Translation and Multilingual Plugin] Keep selected languageWhere are You using the custom link? In menu or in content section? Is it the internal link or external?
Forum: Plugins
In reply to: [WP Multilang - Translation and Multilingual Plugin] Keep selected languageHi @mystical_ghoul
Where are You using the custom link? Is it the internal link?Fixed
Forum: Plugins
In reply to: [WP Multilang - Translation and Multilingual Plugin] Cookie Consent PluginYou need to use ‘var_dump’ for display array of these settings.
Forum: Plugins
In reply to: [WP Multilang - Translation and Multilingual Plugin] Contact Form 7Contact Form 7 do not have field ‘_suject’ or ‘_subject’. What is this field?
Forum: Plugins
In reply to: [WP Multilang - Translation and Multilingual Plugin] Contact Form 7Try resave the form.
The shortcode will be added in the next version. Thank You.
Forum: Plugins
In reply to: [WP Multilang - Translation and Multilingual Plugin] Contact Form 7You can disable integration for CF7.
add_filter('wpm_integrations', function($integrations){ unset($integrations['contact-form-7']); return $integrations; }); add_filter('wpm_admin_pages', function($admin_pages){ foreach ($admin_pages as $k=>$page) { if ($page == 'toplevel_page_wpcf7') { unset($admin_pages[$k]); break; } } return $admin_pages; });The code for ‘functions.php’
{ "post_types": { "wpcf7_contact_form": null }, "post_fields": { "_form": null, "_mail": null, "_mail_2": null, "_messages": null } }Config for ‘wpm-config.json’
This possibility is not provided. And I think it’s illogical. After all, if the user does not fall into his language version, he may not find the switch in his language.
Forum: Plugins
In reply to: [WP Multilang - Translation and Multilingual Plugin] Admin field indicator.So add this field to the configuration. And the translations will be stored for each language separately.
- This reply was modified 8 years, 3 months ago by VaLeXaR.
Forum: Plugins
In reply to: [WP Multilang - Translation and Multilingual Plugin] Admin field indicator.Hi @icarleug
Unfortunately, it’s almost impossible to do this. Each plugin has its own implementation of the html code. I can not change the third-party plugin’s code. Yes, I can use JavaScript but it does not simplify the work. I will have to write the JS code for each plugin, since all plugins are different. Also, many plugins add fields dynamically. For example ACF or WooCommerce. And not every JS code has API to create events.
WP Multilang works at the base level. It filters the data before recording to the base and before displaying it. And this provides a great opportunity for integration with third-party plug-ins.Hi @russclem
Bugs are considered within the specified functional. Support for Plugins ‘User Menus by Jungle Plugins’ and ‘Nav Menu Roles by Kathy Darling’ are not announced.Hi @samhunter
There will be no support for additional plugins in the base version. Support for a large number of third-party plugins takes a lot of time and work. And doing this alone is very difficult. And doing it for free is not reasonable.Forum: Plugins
In reply to: [WP Multilang - Translation and Multilingual Plugin] Raw textHi @icarleug
This feature is not currently foreseen.