With the Views plugin you can create different Views elements to display all your custom types and content on the front-end, without coding. You can also create powerful parametric searches and add pagination to your content lists.
When you ask for help or report issues, make sure to tell us the options of your View.
Viewing 15 topics - 1,951 through 1,965 (of 1,988 total)
Problem:
The user would like to have a popup/modal window in one of his Toolset pages.
Solution:
Toolset does not offer such an element as Popup or Modal. On the other hand, Toolset can load Twitter Bootstrap (versions 3 or 4), Twitter Bootstrap includes a modal element which can be used then to create the desired user experience/interface.
Check this video about Bootstrap modals. https://www.youtube.com/watch?v=bT9Tta7xWdo
Problem:
How to filter the posts by custom date field having past date
Solution:
You should create a block view or classic view and to the Query filter section, you should try to add the custom filter for your date custom field and select the comparison as Number and grater than PAST_DAY and input the value 2.
Problem:
The user wanted to remove some spacing between blocks.
Solution:
You can add a CSS class to the block or to a parent container block. And add a custom CSS to style them. Check this screenshot https://prnt.sc/sd9k5y
Then we can use CSS:
/* style the title*/
h4.no-margin-bottom{
margin-bottom: 0px;
}
/* style the paragraph inside a shortcode block*/
.no-margin-bottom p {
margin-bottom: 0px;
}
When I click "Add to cart"([wpv-woo-buy-options] shortcode), it displays a link "see cart". but this link is /prodcuts/null instead of /cart, giving a 404.
Problem:
Filtered Output Showing Memberium Shortcode on Frontend
Solution:
Third-party shortcodes typically will not work when a page is updated via ajax when you set your filters to update the results using ajax or by using ajax-based pagination. The only solution is to update results via a page refresh rather than ajax in such situations.