this is the first time I try to display a fieldset text field

Support Meta Box AIO this is the first time I try to display a fieldset text field

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #49871
    christophe pasquierchristophe pasquier
    Participant

    Hello,

    I use Etch builder and I can display regular text fields like the process_paragraph below by entering: {this.metabox.process.process_paragraph}
    I have tried several combinations to display elements of the fieldset text like {this.metabox.process.process_item.order_step}, but it doesn't work.
    Can you help please?
    Thanks

    This is in a field group called "process"
    a:2:{s:12:"process_item";a:4:{i:0;a:2:{s:10:"order_step";s:2:"01";s:12:"process_step";s:15:"Initial fitting";}i:1;a:2:{s:10:"order_step";s:2:"02";s:12:"process_step";s:20:"Pinning and planning";}i:2;a:2:{s:10:"order_step";s:2:"03";s:12:"process_step";s:18:"Scheduled fittings";}i:3;a:2:{s:10:"order_step";s:2:"04";s:12:"process_step";s:13:"Final fitting";}}s:17:"process_paragraph";a:3:{i:0;s:65:"We recommend beginning alterations 6–8 weeks before your event.";i:1;s:113:"Appointments are structured to be efficient and focused, while allowing time for adjustments to be made properly.";i:2;s:77:"We work with both early-stage fittings and last adjustments before the event.";}}

    #49878
    PeterPeter
    Moderator

    Hello Christophe,

    Thanks for reaching out.

    The compatibility between Meta Box and Etch is maintained on the Etch side. I don't see the field fieldset_text is supported in their documentation https://docs.etchwp.com/integrations/custom-fields

    Please try to use another field to output its value with Etch, or contact their support to get further assistance.

    #49879
    christophe pasquierchristophe pasquier
    Participant

    AI helped me figure it out:

    {this.metabox.process.process_item.0.process_step}

    the loop looks like this:

    {#loop this.metabox.process.process_item as process_item}
    <div role="listitem" class="bridal-process__item" >
    <span class="bridal-process__number">{process_item.order_step}</span>
    <p class="bridal-process__label">{process_item.process_step}</p>
    </div>
    {/loop}

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.