VaLeXaR
Forum Replies Created
-
Add needeed post type to “post_types” section in your wpm-config.json.
Like:{ "post_types": { "custom_post_type": {} } }Forum: Plugins
In reply to: [WP Multilang - Translation and Multilingual Plugin] ACF documentation@neurone
No. You can use tag “wpm_each” for apllying to each item in array.{ "options": { "category_7_headline": { "wpm_each": {} //Apllying to each element in array } } }Forum: Plugins
In reply to: [WP Multilang - Translation and Multilingual Plugin] ACF documentationCreate section ‘term_fields’ and add fields there. Example:
{ "term_fields": { "field_name_example": {} } }It will be. Now in development.
Forum: Plugins
In reply to: [WP Multilang - Translation and Multilingual Plugin] ACF documentationHi @neurone
You can add configuration for needed field in “post_fields” section in the wpm-config file. Examples of configurations you can see in config dir in root of the plugin.Try to disable all rest plugins and switch to default theme. Then enable plugins one by one. Maybe it is incompatible with the theme or some of plugin. Tell me the results.
Forum: Plugins
In reply to: [WP Multilang - Translation and Multilingual Plugin] Custom Post TypesEach translation saving separately. Use language switcher in admin for swich translation.
Forum: Plugins
In reply to: [WP Multilang - Translation and Multilingual Plugin] Custom Taxonomy@anitadahal
For taxonomies section must be named ‘taxonomies’.@rastislavkr
You need to add configuration for this plugin in config file. For integration some plugins You need to known PHP.If strings what need to translate is in options, You can add configuration for these options in config file.
add_action(‘wpm_changed_language’, function(){
wp_redirect( home_url() );
});Thank You. Fixed in new version. Please update.
Forum: Plugins
In reply to: [WP Multilang - Translation and Multilingual Plugin] WooCommerce improvementAdded
If you need to translate locale variables that are defined in the localization files, extract the tools for editing the localization. The program for the computer POEdit or the plugin for WordPress Loco Translate.
Forum: Plugins
In reply to: [WP Multilang - Translation and Multilingual Plugin] Services on frontpageYou need to check what data is displayed in the template. If raw data is displayed, you need to apply the ‘the_title’, ‘the_content’ filters to them.