Views is a WordPress plugin that lets you easily design the display of single pages using content templates. You can also include any field belonging to the content in your templates, without writing PHP code.
When you ask for help or report issues, make sure to tell us what you have created so far and what you want to achieve.
Viewing 15 topics - 646 through 660 (of 896 total)
Problem:
The user was not able to edit a content template or a layout after updating the plugins. When we deactivate Toolset Forms the issue disappears.
Solution:
It turns out that the user is using PHP 8 when Toolset Forms is not yet fully compatible with it.
After downgrading the PHP version to PHP7, the issue disappeared.
Problem: I would like to know whether I should use a Post Reference field or a Post Relationship, and understand the differences between the two.
Solution: A post reference field is a very simple version of a one-to-many (O2M) relationship. In the database, they are handled identically. The main differences are how they are managed in wp-admin. For example, with a O2M relationship between Clients and Vehicles, you can edit the parent Client post and see all the child Vehicle posts easily in the post relationship editor panel. If you want to disconnect one of the Vehicle posts, you can do it from the Client post. However, with a post reference field, you cannot easily manage the related Vehicles from the Client post. You would have to edit each Vehicle post to change the post reference Client. So if you want more management capabilities in wp-admin, you should use a O2M relationship. If you do not need this type of management, you can use a Post Reference field instead.
If you need the ability to create multiple Client post references in the same Vehicle post, you should use a M2M relationship instead of a repeating post reference field.
Problem: We recently updated the site and now I cannot edit the post content. I see a message that Layouts are being used to design the site instead of a post editor.
Solution: Deactivate and delete the Toolset Layouts plugin.