Decide who sees what via element conditions
Personalize the content a visitor sees on your website according to the element conditions you've set. Add your own conditions through the Element Conditions API.

Personalize your content
Restrict or personalize any element on your website based on criteria like posts, users, date/time, or even dynamic data. Finetune the user experience, reduce any clutter, and increase template flexibility.
Fine-tuned content display
Check if multiple conditions are met using “and” conditions, extend them via “or” conditions, or mix both approaches for truly limitless conditional logic.

<?php
add_filter( 'bricks/conditions/groups', function( $groups ) {
$groups[] = [
'name' => 'my_conditions',
'label' => esc_html__( 'My conditions', 'my-plugin' ),
];
return $groups;
} );
Element Conditions API
Programmatically add new conditions to the builder through the Element Conditions API. Expand its capabilities by adding your own condition keys, comparison operands, and values. Customizing the conditions interface to suit your specific needs.