Site logo

Archived topic

Missing Flexbox option in Customize > General > Structure

1 reply · Started by Andréanne on April 1, 2022

Viewing posts 1–2 of 2

Hi,

I installed GP theme on a new Website this morning and there is no option to enable Flexbox in the customizing general options.
I use GP Premium for other websites, one of them has GP Version 3.1.0 and GP Premium plugin Version 2.1.1 and I can see the option on this web site.

Since the Flexbox option is not activated, the unsemantic grid is not working.

I am using the latest version of the theme: 3.1.3
I am using the latest version of GP Premium: 2.1.2
There is no caching option or other plugins installed

Hi there,

we deprecated Unsemantic grid back in GP 3.0
Legacy sites were given the option to 'upgrade' to Flexbox whereas new sites do not as we move forward without unsemantic.

If you 'need' unsemantic then you can enqueue it from the theme using a PHP Snippet:

add_action( 'wp_enqueue_scripts', function() {
    wp_enqueue_style( 'generate-style-grid', get_template_directory_uri() . "/assets/css/unsemantic-grid.css", false, GENERATE_VERSION, 'all' );
}, 20 );

But you may also want to consider moving it to a child theme.

This archived topic is closed to new replies.