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 - 526 through 540 (of 885 total)
Problem:
The user would like to build a link to the author's page where he used the author's ID instead of the author's slug. The following shortcode was not working for the user as expected:
<a href="https://homemploy.com/community-profile/[wpv-post-author format="meta"" meta="ID"]">See Community Profile</a>
Solution:
It turns out that the user was pasting this code in the visual mode of the Fields&Text block. The visual code will convert some special characters to their HTML code. And that was happening with the double-quotes. Which breaks the shortcode.
After pasting the shortcode in the text mode of the Fields&Text block, the shortcode worked as expected.