Add categories

Hi,

It seems that you don’t provide this feature and I really wonder why, this would be a great feature!
But, what is the easiest and cleanest way to add more categories other than “Advanced Modules” and “Basic Modules”?

Cheers

When creating custom modules you have the ability to define what category it goes in. For example, the Gallery module is in the Advanced Modules category…

parent::__construct(array(
    'name'           => __('Gallery', 'fl-builder'),
    'description'    => __('Display multiple photos in a gallery view.', 'fl-builder'),
    'category'       		=> __('Advanced Modules', 'fl-builder'),
    'editor_export'  => false
));

You can change that to anything you like for your modules and it will show up there.

Justin