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,066 through 1,080 (of 1,129 total)
Problem: I have selected "disable featured image" in Layouts Theme Options, but I am seeing inconsistent results on the front-end of the site.
Solution: Make sure there are no Content Templates applied to these posts by disabling Layouts temporarily, then editing the posts. After reactivating Layouts, you may have to modify the setting to trigger an update. Our developers are aware of some issues that happen when Theme Options in Content Templates and Layouts conflict with one another, and are looking into some ways to improve this experience.
Problem:
An ajax form is set to display a message when submitted. The problem is it is inside an accordion cell of Layouts, and when displaying the message the page reloads and the relevant accordion section is not open.
Solution:
You need to add some custom JS for when the page reloads that checks whether it is reloading because the form was submitted (checks URL parameters), and then forces a click on the appropriate accordion. In this case, we are clicking the second accordion section:
( function( $ ) {
$( document ).ready( function(){
let url = new URL(location.href);
let success = url.searchParams.get("_success_message");
if ( success ) {
$(".panel-group .panel:nth-child(2) a").click();
}
});
})( jQuery );
Problem: I would like to use Layouts to design a single post page for a post type created in a 3rd-party plugin. I'm able to create the Layout and assign it to the single post successfully, but the post content seems to be repeated in multiple cells.
Solution: Replace Content Template cells with Visual Editor cells, and choose the "Disable the_content filter" option in the cell dialog.
Problem: I am unable to register or update my plugins because it says the site key is invalid for this site.
Solution:
There is currently an issue affecting new and existing registrations and site keys. Go to Plugins > Add New > Commercial tab and click 'Check for Updates'. Delete the site key and re-register the site to produce a new site key. Check for updates again.