Forum Replies Created
Viewing 3 posts - 1 through 3 (of 3 total)
-
AuthorPosts
-
September 14, 2015 at 11:33 am in reply to: Demos: profile 'default' workflow tab missing info #4321
okeanosMember@Steve I don’t use localization plugin.
okeanosMemberI just answer to myself. I found out the pb is about localization. My wp was in french and changing for english solved the issue.
For those who are trying to find a solution, it seems that by just adding the translated version of $meta_boxes it is working.
In the file admin-user-profile-fields.php, change :
var meta_boxes = ['<?php echo implode("', '", $meta_boxes); ?>'];to
<?php $translated_metaboxes = array(); foreach ($meta_boxes as $meta_box) { $translated_metaboxes[] = __($meta_box); } ?> var meta_boxes = ['<?php echo implode("', '", $translated_metaboxes); ?>'];
okeanosMemberHi there !
I also have this pb (wp 4.3) : the default user tab is empty (same pb with the piklist demo files).
Any clue ?
-
AuthorPosts
Viewing 3 posts - 1 through 3 (of 3 total)