VaLeXaR
Forum Replies Created
-
Hi @mwillberg
1. Not all post types using post_content. And post_title the only one field that using in all post types.
2. Not all plugins use ‘get_posts’. Many plugins use ‘get_post’. That function have no filters for the object. And it need using template filters.
3. The need for this is to be studied in more detail. Not all post types use ‘post_content’.Thank you for your help. If you have any ideas, be sure to write. Improve WP Multilang together.
You need add settings for custom post types in config.
- This reply was modified 8 years, 6 months ago by VaLeXaR.
Forum: Plugins
In reply to: [WP Multilang - Translation and Multilingual Plugin] Page Blank update pluginSign up to WP Slack https://wordpress.slack.com/ with your wp email joseandjm@chat.wordpress.org. I am here.
Forum: Plugins
In reply to: [WP Multilang - Translation and Multilingual Plugin] Page Blank update pluginCan not find you on Slack. Try to load files from new version of WP Multilang to your site of FTP.
Because group settings adding to config dinamically, You need to disable filters.
For ACF PRO:add_action( 'admin_init', function(){ if ( defined( 'WPM_PLUGIN_FILE' ) ) { remove_class_filter( 'wpm_post_acf-field-group_config', 'WPM\Includes\Integrations\WPM_Acf', 'add_config' ); remove_class_filter( 'acf/update_field', 'WPM\Includes\Integrations\WPM_Acf', 'update_field_pro', 99 ); remove_filter( 'acf/translate_field_group', 'wpm_translate_value', 5 ); } });For ACF:
add_action( 'admin_init', function(){ if ( defined( 'WPM_PLUGIN_FILE' ) ) { remove_class_filter( 'wpm_post_acf_config', 'WPM\Includes\Integrations\WPM_Acf', 'add_config' ); remove_class_filter( 'acf/update_field', 'WPM\Includes\Integrations\WPM_Acf', 'update_field', 5 ); remove_filter( 'acf/field_group/get_fields', 'wpm_translate_value', 5 ); add_action( 'acf/update_field', array( 'acf_field_functions', 'update_field' ), 5, 2 ); } });- This reply was modified 8 years, 6 months ago by VaLeXaR.
Forum: Plugins
In reply to: [WP Multilang - Translation and Multilingual Plugin] Page Blank update pluginConnect to me on WP Slack.
Forum: Plugins
In reply to: [WP Multilang - Translation and Multilingual Plugin] Page Blank update pluginHi @joseandjm
Connect to FTP, switch to plugins directory, rename directory wp-multilang. Try to load your site in browser.
What is your old version of WP Multilang?@wuselfaktor
Thank You.
Siteorigin changed theirs api. This bug will be fixed in next version.
The fixed version of WP Multilang is on github in developer branch. For using need install dependencies.Hi @wuselfaktor
Please, read the FAQ.
This behavior describes in third item.- This reply was modified 8 years, 6 months ago by VaLeXaR.
Forum: Reviews
In reply to: [WP Multilang - Translation and Multilingual Plugin] Good Job@edriscouk
Please update to version 2.1.6 and try again.
Thank You for your reply. That help us to detect the bug.- This reply was modified 8 years, 6 months ago by VaLeXaR.
Forum: Reviews
In reply to: [WP Multilang - Translation and Multilingual Plugin] Good JobHi @edriscouk
If it not that what are you want, it is not a good idea to put a bad rating.
You have not applied for support. You have not described your problem. You just came and put a bad rating.The plugin have option for deleting all translations from database.
https://goo.gl/QNEB4qForum: Plugins
In reply to: [WP Multilang - Translation and Multilingual Plugin] Dutch translationHi @josk79
This is yours locale team https://make.wordpress.org/polyglots/teams/?locale=nl_NL Need to ask them.@proscribere this not base WC functional.
You need set up another plugins semself.Give me screenshot with this field in admin.
1. The plugin metabox not supported.
2. ‘admin_screen_id’ it is ‘screen_id’ from ‘current_screen’.
3. You should use css selectors. Not jQuery objects.