Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Contributor WebMan Design | Oliver Juhas

    (@webmandesign)

    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?

    Plugin Author Justin Busa

    (@justinbusa)

    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

    Plugin Contributor WebMan Design | Oliver Juhas

    (@webmandesign)

    Hi Justin,

    Thank you for the answer. I’ll stick with the workaround I’ve provided so.

    Regards,

    Oliver

    Plugin Contributor WebMan Design | Oliver Juhas

    (@webmandesign)

    The topic is resolved then.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Page Builder Settings’ is closed to new replies.