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 - 241 through 255 (of 269 total)
Problem: I see duplicate header areas when using the Avada Integration plugin with Avada 6.0.1
Solution: The Avada Integration plugin has been retired and is no longer under development, so new issues arising from its use will probably not be addressed.
Problem: I see a JavaScript error on the front-end of my site about DDLayout_fe_settings being undefined:
Uncaught ReferenceError: DDLayout_fe_settings is not defined
Solution:
Enqueue plugins in your child theme using proper dependency registration. If a registered script depends on jQuery, it should be noted in the 3rd parameter like so:
Problem: I'm trying to insert an edit post link, but instead of being able to select a Content Template, I see a message about creating a Layout.
Solution: When your site uses Toolset Layouts, you must use a Template Layout instead of a Content Template to include your edit post link and edit post Form.
Problem: I would like to make the home page of the Real Estate Reference Site display Apartment search instead of House search. I would also like to display a Font Awesome icon next to the "bedrooms" field displayed in search results.
Solution: You must go to Toolset > Layouts and change the usage of the Houses Layout to deselect "Blog/Home". Then you would clone the Apartments Archive Layout and replace the WordPress Archive cell with a custom search View, similar to the one in the Houses Archive Layout. The reason you cannot use the Apartments Layout itself here is that it includes a WordPress Archive cell, which is not designed to be used on the main Apartments archive.
To show a Font Awesome icon, add the classes "fa fa-bed" to the "i" tag just before the types field, like this:
<span class="property-detail" title="Number of Bedrooms">
<i class="text-primary fa fa-bed"></i>
[types field="property-bedrooms" format="FIELD_VALUE"][/types]
</span>