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,966 through 1,980 (of 2,008 total)
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.
I have added a Login Form using the wpv-login-form shortcode, The redirect only works when the user is an Administrator. Other users can successfully login but are redirected to the homepage.
Problem:
The user is using a plugin to edit a taxonomy description in a WYSIWYG editor. The result on the frontend is not wrapped in paragraphs(
tags).
Solution:
WordPress, by default, does not support a classic editor for the description of a custom taxonomy term. I think that you are using a plugin that converts the default textarea to a classic editor for the taxonomy description.
The classic editor does not actually save the content with
tags. Themes use WordPress function to convert double return lines into a paragraph using the function wpauto
Toolset shortcode does not use the function to wrap paragraphs in
tags. We will need a custom shortcode that will do that for us. As this is intended for the archive page, we can use WordPress function term_description that do wrap paragraphs into
tags.
We can build a shortcode with custom code in the theme functions.php file:
function term_description_with_paragraphs() {
return term_description();
}
add_shortcode( 'term_description_with_p', 'term_description_with_paragraphs' );
Then use the shortcode [term_description_with_p] instead of [wpv-taxonomy-description].
Use one Toolset form to create parent/child posts at the same time.
Solution:
One Toolset post form can handle only one post, you will need to setup a post form for creating new "Flight Details" post, for example, after user create a new "flight" post, redirect him to the new "flight" post, and display the child "Flight Details" form link