Coder Social home page Coder Social logo

Comments (2)

stevep avatar stevep commented on June 14, 2024

@christianmagill the way your code currently is, conditional is being called on the panel_content WYSIWYG field of the panel layout , which doesn't see a field flexible_content_enabled in that layout. I am assuming you want the conditional to be called on the flexible_content_enabled Flexible Content field instead.

You can add the conditional before the first layout:

$flexibleContent
    ->addTrueFalse( 'flexible_content_enabled', [
        'label' => 'Enable Flexible Content',
        'message' => 'Enable enhanced flexible content for this page.'
    ])
    ->addFlexibleContent( 'flexible_content_sections')
        ->conditional('flexible_content_enabled', '==', '1')
        ->addLayout('text')
            ->addWysiwyg('content')
        ->addLayout('accordion')
            ->addRepeater('accordion', [
                'layout' => 'block',
            ])
                ->addText('accordion_title', ['label' => 'Title'])
                ->addWysiwyg('accordion_content', ['label' => 'Content'])
                ->endRepeater()
        ->addLayout('panel')
            ->addImage('panel_image')
            ->addWysiwyg('panel_content')
    ->setLocation( 'post_type', '==', 'page' );

The reason why setLocation works after the layout is because that function doesn't exist on the field and so the call bubbles up until it finds and object that does, the root FieldsBuilder. Unlike the conditional function which does exist on a FieldBuilder field object. You could move setLocation up too if you wanted.

from acf-builder.

christianmagill avatar christianmagill commented on June 14, 2024

Thanks!

from acf-builder.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.