Actually, I’ve found a workaround:
function wm_bb_settings( $value ) {
//Preparing output
//Default Page Heading
$value['show_default_heading'] = 0;
$value['default_heading_selector'] = '.disable-entry-header';
//Rows
$value['row_padding'] = 0;
//Modules
$value['module_margins'] = 0;
//Responsive Layout
$value['responsive_enabled'] = 1;
$value['medium_breakpoint'] = 960;
$value['responsive_breakpoint'] = 680;
//Output
return $value;
} // /wm_bb_settings
add_filter( 'option_' . '_fl_builder_settings', 'wm_bb_settings' );
…however, I’d like to apply more elegant solution. Can you help or is this the only way to set this up recently?
Hey Oliver,
Thanks for asking! I took a look at how we’re currently implementing those settings and there doesn’t appear to be a way to override them other than in the plugin itself or via the workaround that you found. We could look into adding an action for that, but it’s probably low on the priority list right now with some of the other stuff we have going on.
Thanks,
Justin
Hi Justin,
Thank you for the answer. I’ll stick with the workaround I’ve provided so.
Regards,
Oliver
The topic is resolved then.