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,201 through 1,215 (of 1,367 total)
The issue here is that the option "What to display if no layout is assigned to content" is greyed out for our Toolset Starter theme.
Solution:
We are aware of this issue but unfortunately this si something that won't be fixed as our Toolset Starter theme will no longer be supported with updates. This is done because we are pushing support to third party theme's such as Astra. Our Toolset Starter theme works under the assumption that once Layouts and Views are enabled then a content template or layout will always be used .
Problem: If I use the limit_content shortcode in word mode to display information from a WYSIWYG field, the content is cut off incorrectly when the field contains a link or other HTML markup.
Solution: Use wp_trim_words to strip HTML content from the custom field, or use CSS to truncate content using types field shortcodes.
Problem: I would like to turn off "Related Videos" in YouTube videos in embed custom fields. I would also like to use the enhanced privacy (no cookie) mode.
Solution: There's no built-in way to do this, but you could use the raw custom field value to construct an iframe using the proper parameters. The param rel=0 removes the related videos. Example:
Add hoverable effect to Sub Menus of "Themify Ultra" theme.
Solution:
there isn't such a built-in feature within Layouts plugin, it needs custom codes, for example, you can add some JS codes to show the Sub Menus when you move the mouse over the Menu, you can add below JS codes here:
Dashboard->Toolset-> Layouts CSS and JS-> JavaScript Editor:
jQuery(document).ready(function($){
$("li.has-sub-menu").mouseover(function() {
$( this ).addClass( "open" );
});
})
It is only an example, you will need to customize it to your website settings
Problem: I would like to include a View in my Layout, and I need to supply some shortcode attributes to the View. It seems I cannot do this with a View cell.
Solution: That is correct, at this time we do not support shortcode attributes in View cells. Instead, use a Visual Editor cell to insert the View shortcode, and apply your shortcode attributes there.