Why this plugin exists?
Basically the translations are unlinked and there is no warning for this. You may need to change post’s language for example when you start to write a new post and notice that it’s in wrong language. When translations are involved, there’s really no use for changing the language.
I’ve seen that users have multiple times changed post’s language when they meant to navigate to translation. Smartly disabling the select enhances the UI.
Changing the language of post when it has content is prone to errors. Even though the language can be changed, the images added to content may still be in wrong language. Custom fields, relations etc are not automatically changed. Language should be changed right away before adding content.
Changing the site default language is prone to errors. Even though the language can be changed, links in content may still be in wrong language. Custom fields, relations etc are not automatically changed. Language should be changed only if user knows what they are doing.
iknowwhatimdoing
GET-parameter or allows it via filter$ composer require aucor/polylang-smart-language-select-disabler
{ "require": { "aucor/polylang-smart-language-select-disabler": "*" }, "extra": { "installer-paths": { "htdocs/wp-content/plugins/{$name}/": ["type:wordpress-plugin"] } } }
You can disable select always or build some fancy custom logic:
function my_polylang_disable_language_select($disable_select, $current_screen) { return true; } add_filter('polylang-disable-language-select', 'my_polylang_disable_language_select', 10, 2);
Allow default language change:
add_filter('polylang-disable-default-language-select', '__return_true');
= Issues=
Download and activate. That’s it. You will need Polylang, too (d’oh).
Disable default language change select
Changing site default language will probably cause some issues if you don’t knows what you are doing. Disable the availability to do so, unless the user know what they are doing. Also, use WordPress coding standards to make contributing easier. Props to @timiwahalahti for changes in this release.
create_function
usage and include licenseAdd changes that dropped somewhere along the way
Added some missing stuff because some changes dropped in 1.0.0 (facepalm)
*The HTML attribute “disabled” caused many problems. The disabling was changed so that the select is hidden with CSS and in its place, plain paragraph with current language is displayed.
Fix bug when adding a new term translation
Disabling the language select messes up creating new term translation. The translation wasn’t linked to the original term because of the disabled attribute. Tried to remove the disabled attribute on submit but couldn’t get it work for some reason with WordPress admin form. Removed the disabling for now on that view.