Skip to content
This repository was archived by the owner on Feb 29, 2024. It is now read-only.

Commit 19f972b

Browse files
committed
fix translate user meta
1 parent e39f5b7 commit 19f972b

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

readme.txt

+4-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Contributors: valexar
44
Tags: localization, multilanguage, multilingual, translation, multilang
55
Requires at least: 4.7
66
Tested up to: 4.8
7-
Stable tag: 1.4.1
7+
Stable tag: 1.4.2
88
License: GPLv2 or later
99
License URI: http://www.gnu.org/licenses/gpl-2.0.html
1010

@@ -134,6 +134,9 @@ Compatible with multisite not tested.
134134

135135
== Changelog ==
136136

137+
= 1.4.2 =
138+
* fix translate user meta
139+
137140
= 1.4.1 =
138141
+ add mobile styles in admin for language switcher
139142
* fix save acf option field

wp-multilang.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
99
* Text Domain: wpm
1010
* Domain Path: /languages
11-
* Version: 1.4.1
11+
* Version: 1.4.2
1212
*
1313
* @package WPM
1414
* @category Core
@@ -42,7 +42,7 @@ final class WP_Multilang {
4242
*
4343
* @var string
4444
*/
45-
public $version = '1.4.1';
45+
public $version = '1.4.2';
4646

4747
/**
4848
* The single instance of the class.
@@ -183,8 +183,8 @@ public function init() {
183183
new Core\WPM_Posts();
184184
new Core\WPM_Taxonomies();
185185
new Core\WPM_Widgets();
186-
// new Core\WPM_Users();
187-
// new Core\WPM_Comments();
186+
new Core\WPM_Users();
187+
new Core\WPM_Comments();
188188

189189
if ( $this->is_request( 'admin' ) ) {
190190
new Core\Admin\WPM_Admin;

0 commit comments

Comments
 (0)