Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter emielm

    (@emielm)

    In addition to this problem there’s also this error that shows before every field in a row that a width% is set for:

    Notice/wp-content/plugins/advanced-custom-fields-pro/api/api-helpers.php457

    This would super useful to have!

    disturbed-pixel

    (@disturbed-pixel)

    Having the same issue as emielm with rows and tabs not displaying correctly.

    hmmux

    (@hmmux)

    For me the row fields were visible only in the first tab (ACF4).
    So my quick workaround was to insert another trigger after advanced-custom-fields-row-field/js/input.js $(document).live(‘acf/setup_fields’..:

    $(document).live('acf/fields/tab/show acf/fields/tab/hide', function(e, postbox){
      if (postbox.hasClass('acf-row-wrap')) {
        if (postbox.hasClass('acf-tab_group-show')) {
          postbox.children().each(function(){
            $(this).removeClass('acf-tab_group-hide').addClass('acf-tab_group-show');
          });
        }
      }
    });
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Not working with tabs, date pickers and image upload fields’ is closed to new replies.