AtefR7377
Support threads created in the last 30 days: 0
Favorite Forum Topics
This user has no favorite topics.
Forum Topics Created
Status | Topic | Supporter | Voices | Posts | Freshness |
---|---|---|---|---|---|
Problems when using the post title shortcode inside a view shortcode
Started by: AtefR7377
in: Toolset Professional Support
Problem: I'm trying to use the post title as a shortcode attribute in a View filtered by term name. When I write the title out, the View works as expected. When I use the wpv-post-title shortcode, the filter does not show the correct results. Solution: Some characters in the post title are being interpreted differently in the shortcode attribute. We have proposed a temporary workaround in a custom shortcode here in the ticket, but if the problem appears again please report the problem in a new ticket for additional investigation and mention this ticket as a related issue. |
2 | 13 | 6 years, 7 months ago | ||
How to add autocomplete to Taxonomy lists in Custom Search?
Started by: AtefR7377 in: Toolset Professional Support |
2 | 4 | 6 years, 7 months ago | ||
Row Width Not followed and Video Appears bad on mobiles
Started by: AtefR7377 in: Toolset Professional Support |
2 | 5 | 6 years, 7 months ago | ||
Show content only if a custom field is not empty
Started by: AtefR7377
in: Toolset Professional Support
Problem: Solution: An example using a custom field with slug "sermons-audio" would be: [wpv-conditional if="( NOT(empty($(wpcf-sermons-audio))) )"] <h4>Listen to the sermon</h4> <p>Some other conditional stuff</p> <p>Then the field itself</p> [types field="sermons-audio"][/types] [/wpv-conditional] Relevant Documentation: |
2 | 9 | 6 years, 7 months ago | ||
How to filter based on custom post types?
Started by: AtefR7377 in: Toolset Professional Support |
3 | 3 | 6 years, 7 months ago | ||
WPML Language switcher shortcode in Layouts
Started by: AtefR7377
in: Toolset Professional Support
Problem: I am using WPML, and I would like to include a custom language switcher in a Layout. Solution: [wpml_language_selector_widget type="post_translations" flags=1 native=1 translated=0][/wpml_language_selector_widget] Then you can add some translatable text like this: [wpml-string context="some-unique-site-context" name="This post is also available in"]This post is also available in:[/wpml-string] Relevant Documentation: |
2 | 4 | 6 years, 8 months ago | ||
Conflict with Yoast Plugin
Started by: AtefR7377
in: Toolset Professional Support
Problem: When I add the following code with Yoast active, I see a server error 500 on my site: function add_schema_person_shortcode() { $person_name = array_filter( array ( 'givenName' => types_render_field( "schema-person-given-name", array () ), ) ); if ( ! empty( $person_name ) ) { echo 'success'; } } add_shortcode( 'schema-person-shortcode', 'add_schema_person_shortcode'); Solution: Add some conditional code that prevents the function from being called before it exists: function add_schema_person_shortcode() { if( function_exists( 'types_render_field' ) ){ $person_name = array_filter( array ( 'givenName' => types_render_field( "schema-person-given-name", array () ), ) ); if ( ! empty( $person_name ) ) { echo 'success'; } } } add_shortcode( 'schema-person-shortcode', 'add_schema_person_shortcode'); |
2 | 3 | 6 years, 8 months ago | ||
Row components show under each other instead of side by side
Started by: AtefR7377 in: Toolset Professional Support |
1 | 2 | 6 years, 8 months ago | ||
How to display taxonomy of a parent post?
Started by: AtefR7377
in: Toolset Professional Support
Problem: Solution: [wpv-post-taxonomy id="$parent-slug"] Relevant Documentation: |
2 | 2 | 6 years, 8 months ago | ||
How to display custom search dropdown for subcategories of a certain category?
Started by: AtefR7377 in: Toolset Professional Support |
3 | 5 | 6 years, 10 months ago | ||
How to remove the duplicate pagination from Archives?
Started by: AtefR7377
in: Toolset Professional Support
Problem: Remove duplicate navigation on archive page. Solution: The simplest solution to this is that it can be hidden using css. Try this below. #nav-below{ display: none; } Where #nav-below is the class of the navigation. |
3 | 7 | 6 years, 10 months ago | ||
How to show the chosen taxonomies as filters using shortcodes?
Started by: AtefR7377 in: Toolset Professional Support |
2 | 10 | 6 years, 10 months ago | ||
CRED: froms show instead of content
Started by: AtefR7377 in: Toolset Professional Support |
2 | 4 | 6 years, 10 months ago | ||
How to build a Bible Study Tool with WP Types Views
Started by: AtefR7377 in: Toolset Professional Support |
2 | 8 | 6 years, 10 months ago | ||
Views: How to create Flexible search with dropdown lists change based on choices
1
2
Started by: AtefR7377 in: Toolset Professional Support |
2 | 20 | 6 years, 10 months ago |