ACF Extended : Disable styles in front [closed]

Here my solution: add_action(‘wp_enqueue_scripts’, function () { // prevent acfe automatic style enqueue wp_register_style(‘titre-sous-le-header-layout-titre-fond-couleur’, false); wp_register_style(‘titre-sous-le-header-layout-titre-fond-couleur’, false); wp_register_script(‘titre-sous-le-header-layout-titre-fond-couleur’, false); wp_register_script(‘titre-sous-le-header-layout-titre-fond-couleur’, false); }); Final Solution I forgot to show my final solution to eliminate all css load by the_flexible() function: function layout_get($content): void { foreach ($content as $layout) { foreach ($layout[‘layouts’] as $value) { $handle = … Read more

Bullet points not showing in wordpress

In the Additional CSS for your theme, add the CSS code for ‘list-style-type’ for unordered list. Something like: ul { list-style-type: circle; } Note that this will affect all unordered lists on your site. Take a look at this page for other options: https://www.w3schools.com/css/css_list.asp Added Note that your theme may be using additional CSS that … Read more

Remove the main title, but only from the main page

You can use home class in body tag to target homepage. Also avoid using !important for css. which is not a good practice. try the following css: body.home .woocommerce-products-header__title { display:none; } body.home .page-title { display:none; }

Twenty-Twenty-Two Child Theme Mega Menu

For the ‘Everything’ submenu, you can target it and then set the width to simply fit the content. nav.wp-container-2 li.wp-block-navigation-item.has-child ul.wp-block-navigation__submenu-container { width: fit-content; } This worked for me on StackBlitz, but you may need greater specificity (MDN) to target the element in your project. Note that you can also flag it as important (MDN) … Read more