Plugin info

Total downloads: 4,653
Active installs: 40
Total reviews: 1
Average rating: 4
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 1
Last updated: 4/30/2015 (3898 days ago)
Added to WordPress: 12/24/2014 (11 years old)
Minimum WordPress version: 4.0
Tested up to WordPress version: 4.1.42
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 3898 days ago • 1 reviews

22/100

Is mqtranslate langcode widget selector abandoned?

Possibly abandoned (last update 3898 days ago).

Compatibility

Requires WordPress: 4.0
Tested up to: 4.1.42
Requires PHP: f

Developers

Languages

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

WooCommerce qTML
Rating 5.0/5 (4 reviews)Active installs 70
W2Q: WPML to qTranslate
Rating 5.0/5 (2 reviews)Active installs 20
mqTranslate Separate Comments
Rating 0.0/5 (0 reviews)Active installs 10

Description

Extension of the mqtranslate plugin that creates a widget that displays a language selector with language codes. For example, if you have got a site in 3 different
languages (Deutsch, english, spanish), the widget will display: de | en | es

The plugin is compatible with Qtrasnlate Slug {qts}.

It also has got the following filters:

  • ‘lang-code-selector-content’ => This filter allows alter the content of each idiom.

Arbitrary section

Installation

  • Install plugin either via the WordPress.org plugin directory, or by uploading the files to your server.
  • Activate the module.

Frequently Asked Questions

How can i change the content of the switcher?

Yes. It’s posible change the content of the selector. You only have to add a filter in the functions.php in your theme or add the code in yoyr custom plugin.

For example:

add_filter( ‘lang-code-selector-content’, ‘test_lang_code_selector_content’ );

function test_lang_code_selector_content( $lang_code ){
global $q_config;
$link_flag_url = dirname(plugins_url()) . ‘/’ . $q_config[‘flag_location’] . $q_config[‘flag’][$lang_code];
$link_flag = “”;
return $lang_code . $link_flag ;
}

How do i contribute to this plugin?

I’ve open a project in my github profile. Feel free to fork and change the code.

Review feed

No reviews available

Screenshots

No screenshots available

Changelog

1.0

  • Compatibylity with qransalte slug
  • Added filter: ‘lang-code-selector-content’
  • Realeased plugin.