Types plugin lets you easily create relationships between different post types and connect them using GUI controls. You can also connect multiple post types and build many-to-many post relationships.
When you ask for help or report issues, make sure to tell us what you have created so far and the structure that you want to achieve.
Viewing 15 topics - 586 through 600 (of 787 total)
Problem:
How can I set another (predefined) image if the Posts featured image is left empty?
Solution:
There are 3 options:
1. use HTML Conditional to actually display a predefined image in case no Featured Image is saved for the post. This does not update the post, it just displays this in the front end.
2. Save a default image when the post is saved without a Featured image with custom code
3. use a Plugin that does #2 above.
The first solution is achievable within Toolset, the second not.
Both are documented on below links:
Problem: I would like to create a link that redirects to a post with a URL parameter. I would like to use the post title as the parameter value. When two posts have the same title, the URL parameter is not unique and WordPress redirects to the wrong URL.
Solution: Use the post slug in the URL parameter instead of the post title:
<a class="btn btn-primary" href="[wpv-post-url]?accommodation=[wpv-post-slug]" role="button"> special offer </a>