Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • in reply to: Demos: profile 'default' workflow tab missing info #4321
    okeanos
    Member

    @Steve I don’t use localization plugin.

    in reply to: Demos: profile 'default' workflow tab missing info #4310
    okeanos
    Member

    I 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); ?>'];  
    
    
    in reply to: Demos: profile 'default' workflow tab missing info #4309
    okeanos
    Member

    Hi there !

    I also have this pb (wp 4.3) : the default user tab is empty (same pb with the piklist demo files).

    Any clue ?

Viewing 3 posts - 1 through 3 (of 3 total)