Problem: I have a URL field that I would like to use to generate a custom link tag. I would like to append some URL parameter string to the end of the URL field.
Solution: Use our shortcode library to generate the HTML markup for your custom link from the URL field and your custom URL parameter string.
Problem: I have created a Content Template for a custom post type. I am displaying some content inside a custom HTML block. Inside that block, I would like to conditionally display some content if a specific custom field is not empty.
Solution: You can use the wpv-conditional shortcode inside a custom HTML block to add conditional logic for displaying or hiding portions of the content. For example:
[wpv-conditional if="($(wpcf-consignee-company-name) ne '' )"]
<span class="invoice-to-label">Company: [types field='consignee-company-name'][/types]</span><br>
[/wpv-conditional]