VaLeXaR
Forum Replies Created
-
WP Multilang not compatible with WP Maintenance.
To get rid of the conflict with WP Maintenance, I need to completely change the logic of the name of the classes and functions.
Since I’m the only developer of WP Multilang, and now I’m developing functionality, I think I can accept the incompatibility with WP Maintenance.
An incompatibility warning will be added to the description.
Thank you for your question.@hani86
I added filter for translate texts that view in __().For translate templates for download link you can redefine download monitor templates in your theme and use
wpm_translate_text($text)function for translate link titles.
The author of Download Monitor do not filtering post text before display. Therefore, you will have to translate the content manually.- This reply was modified 8 years, 7 months ago by VaLeXaR.
@techneo
I do not use Visual Bulder Plugins. I`m Full Stack Developer and I hate to use this in production.Hi @hani86
This is your config.{ "post_types": { "dlm_download":{} }, "taxonomies": { "dlm_download_category": {}, "dlm_download_tag": {} }, "options": { "dlm_no_access_error": {} }, "admin_pages": [ "dlm_download_page_download-monitor-settings" ] }Also for translating message
- This reply was modified 8 years, 7 months ago by VaLeXaR.
Forum: Plugins
In reply to: [WP Multilang - Translation and Multilingual Plugin] Current languageHi @niels-havermans
All function You can see in code of WP Multilang.
For detect language for translation You can use functionwpm_get_language().Hi @techneo
KingComposer do not exist in list of support plugins.I did fix detect browser language.
In next version I will add posibility for use prefix for default language.
Specialy for You.
But it contradicts of Google guidelines https://support.google.com/webmasters/answer/189077?hl=en- This reply was modified 8 years, 7 months ago by VaLeXaR.
Forum: Plugins
In reply to: [WP Multilang - Translation and Multilingual Plugin] Add new language@natalarionova
This is a problem with file access rights. If you do not have permission to edit files, then you will not be able to install new translations.Forum: Plugins
In reply to: [WP Multilang - Translation and Multilingual Plugin] Widget content and cssHi @iara-chan
Widget content is translating.All content is translating, not partial.
If You added in text widget this:
font-family: "[:en]font1[:ja]font2[:]"; font-size: [:en]19px[:ja]12px[:];It not be translated.
You need add translation for each language
for
en:font-family: "font1"; font-size: 19px;for
ja:font-family: "font2"; font-size: 12px;Thank You for your report.
It wil be fixed in next version.
Hotfix added to master branch on Github.Forum: Plugins
In reply to: [WP Multilang - Translation and Multilingual Plugin] Add new languageHi @natalarionova
Do You have a permission for installing new languages?- This reply was modified 8 years, 7 months ago by VaLeXaR.
Hi @hani86
Inpost_fieldssection You need add custom fields of post type.
By defaultpost_titleis translating for each post type.
Inadmin_pagessection You need add needed admin page id.
So Your config seem like:{ "post_types": { "dlm_download":{} }, "admin_pages": [ "page_id" ] }Forum: Plugins
In reply to: [WP Multilang - Translation and Multilingual Plugin] Yoast SEO Fatal erroradd hotfix to master branch in github
WP Multilang almost does not create additional queries.
It filters the data before view. This creates a load on PHP but not on the base.