Skip to content

Instantly share code, notes, and snippets.

@Pross
Created December 7, 2020 17:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Pross/7634096df0a0b168a815f245f14f9a6a to your computer and use it in GitHub Desktop.
Save Pross/7634096df0a0b168a815f245f14f9a6a to your computer and use it in GitHub Desktop.
Add Notes to all rows and columns
add_filter( 'fl_builder_register_settings_form', function( $form, $id ) {
if ( in_array( $id, array( 'row', 'col' ) ) ) {
$form['tabs']['notes'] = array(
'title' => 'Notes',
'sections' => array(
'notes' => array(
'title' => '',
'fields' => array(
'note' => array(
'title' => 'Note',
'type' => 'code'
)
)
)
)
);
}
return $form;
}, 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment