Layouts is a WordPress plugin that lets you design responsive layouts for entire pages, from the header down to the footer.
Layouts User Guides include detailed documentation on how Layouts editor works and how you can create Layouts and assign them to specific content, or as templates for all items of a post type.
When you ask for help or report issues, make sure to tell us the versions of the Toolset plugins that you have installed and activated.
Viewing 15 topics - 1,261 through 1,275 (of 1,372 total)
Problem: CSS I have added in Layouts CSS is not working. When I check the browser console I can see that the Layouts CSS file is returning a 403 error.
Solution: In this case, the file permissions for the Layouts CSS file in wp-content/uploads/ddl-layouts-tmp should be set to 0644.
In order to know exactly what is wrong here I would recommend that you enable the wordpress debugging as this would let us know exactly what is generating the error.
Problem: I would like to use CSS to make the background image of an element transparent, but keep the contents of the element full opacity.
Solution: It's not possible to modify the opacity of just the background image of an element using CSS. An alternative approach is found at the link below.
Problem: I would like to create 1 template and add it to all of my categories...but after the website will be managed by someone who doesn't know a lot about code and I want to give him the possibility to change some elements.
Solution:
I assume you are talking about category archive pages, like yoursite.com/category/uncategorized. If you want to use the same WPBakery template for all these category term archives, no special PHP template file is required. Go to Toolset > WordPress Archives and create a new WordPress Archive. Assign this archive to the "Category" taxonomy (see new-wp-archive.png).
Scroll down to the Loop output editor of this WordPress Archive and click the "Skip wizard" link. Place your cursor inside the wpv-loop tags and click "Content Template". Create a new Content Template and assign it to this archive (see new-ct-for-archive.png). Then scroll down to the Template Editor and you will be able to design this template with WPBakery, and you can allow your site admins to edit that template later with WPBakery (see edit-ct-with-wpbakery.png).
You should only use the hook wpv_filter_force_wordpress_archive if you want to use a template that is different from the one you assigned to the Category taxonomy (see new-wp-archive.png). Like for example, if you want to one WPBakery template created above for all terms in the Category taxonomy except "uncategorized", then you will create another WordPress Archive that is not assigned to any taxonomy or post type, and design its loop template with WPBakery like before. Then use the wpv_filter_force_wordpress_archive hook to show this new WordPress Archive if the current archive is "uncategorized".