jessicaM-4
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 |
---|---|---|---|---|---|
Having the map display after no results found.
Started by: jessicaM-4 in: Toolset Professional Support |
2 | 2 | 3 years, 7 months ago | ||
Content template is showing page title and author. How can I remove them.
Started by: jessicaM-4
in: Toolset Professional Support
Problem: I have created a Content Template to display posts from a custom post type. I would like to manage the display of post title and post author of single posts. Solution: Some themes provide Theme Options you can use with Content Templates to manage the display of these items. Some themes do not provide these options, though, and a CSS solution is usually available. Relevant Documentation: |
2 | 7 | 3 years, 7 months ago | ||
Both my home page Zip code search and Map search are not working.
1
2
Started by: jessicaM-4 in: Toolset Professional Support |
2 | 21 | 3 years, 7 months ago | ||
Map ID
Started by: jessicaM-4
in: Toolset Professional Support
Problem: Solution: Relevant Documentation: |
2 | 3 | 3 years, 8 months ago | ||
Toolset breaking existing site styling.
Started by: jessicaM-4 in: Toolset Professional Support |
2 | 3 | 3 years, 8 months ago | ||
Get the map to default to a certain location when an address is not found.
Started by: jessicaM-4 in: Toolset Professional Support |
3 | 6 | 3 years, 11 months ago | ||
Google maps error.
Started by: jessicaM-4 in: Toolset Professional Support |
2 | 2 | 4 years, 8 months ago | ||
When adding in a new Provider listing the last provider post looses its styling.
Started by: jessicaM-4 in: Toolset Professional Support |
2 | 2 | 4 years, 9 months ago | ||
Activating spiderfy on my locations map
Started by: jessicaM-4 in: Toolset Professional Support |
2 | 2 | 5 years ago | ||
Working in block editor and my news feed is still breaking
Started by: jessicaM-4 in: Toolset Professional Support |
2 | 3 | 5 years, 3 months ago | ||
When adding in a new Provider listing the last provider post looses its styling.
Started by: jessicaM-4 in: Toolset Professional Support |
2 | 5 | 5 years, 4 months ago | ||
When adding additional locations post type the content template seems to break.
Started by: jessicaM-4 in: Toolset Professional Support |
2 | 2 | 5 years, 6 months ago | ||
Custom post style filtering breaks page.
Started by: jessicaM-4
in: Toolset Professional Support
Problem: The issue here is that if there is a view created with the divi builder and there is AJAX pagination, the design gets messed up after paginating Solution: We are currently aware of the issue and have setup an errata page for this. |
2 | 13 | 5 years, 6 months ago | ||
How to have two types of map markers based on taxonomy
1
2
3
Started by: jessicaM-4
in: Toolset Professional Support
Problem: The issue here is that the user wanted to have custom map markers based on the taxonomy that is attached to the post. Solution: In order to do this you will need to make use of the has_term() function. This function return 1 or 0 where 1 is true and 0 is false. It will check if your post has the term you want attached to it. Example usage with different markers. [wpv-conditional if="(has_term('irish-cottage-for-sale', 'listing-type', null) eq '1')"] [wpv-map-marker map_id='map-1' marker_id='marker-[wpv-post-id]' marker_field='wpcf-address_ts' marker_icon='https://cottageology.com/wp-content/uploads/2019/05/red-marker.png'] <span class="marker-feat-img">[wpv-post-featured-image size="medium"]</span><h3>[wpv-post-title]</h3><a class="et_pb_button" href="[wpv-post-url]">View Details</a> [/wpv-map-marker] [wpv-conditional if="(has_term('irish-cottage-for-rent', 'listing-type', null) eq '1')"] [wpv-map-marker map_id='map-1' marker_id='marker-[wpv-post-id]' marker_field='wpcf-address_ts' marker_icon='https://cottageology.com/wp-content/uploads/2019/05/green-marker.png'] <span class="marker-feat-img">[wpv-post-featured-image size="medium"]</span><h3>[wpv-post-title]</h3><a class="et_pb_button" href="[wpv-post-url]">View Details</a> [/wpv-map-marker] [/wpv-conditional] As you can see from the above we are checking 2 different terms in the listing type taxonomy, irish-cottage-for-rent and irish-cottage-for-sale . These are actually the slugs of the terms. Next all we did was to provide a different marker_icon url for each. In order for the has_term function to work you need to add it to the custom functions arguments in Toolset -> Settings > Frontend. |
2 | 36 | 5 years, 6 months ago | ||
Creating a different page template for certain categories based on taxonomy
1
2
Started by: jessicaM-4
in: Toolset Professional Support
Problem: I have a Content Template assigned to single Location posts. If the post has the term "Seasonal" applied in the Location Services taxonomy, I would like to display a different Content Template. Solution: Use the following custom code to programmatically switch Content Templates automatically based on post type, term assignment, and type of Content Template. //Apply a specific Content Template to posts in a specific post type with a specific term from a specific taxonomy add_filter( 'wpv_filter_force_template', 'ts_force_template_for_seasonal', 99, 3 ); function ts_force_template_for_seasonal( $template_selected, $id, $kind ) { $post_type = 'location'; $term_slug = 'seasonal'; $taxonomy_slug = 'taxonomy-slug'; $alternate_template_id = 123; // do not edit below this line if ( get_post_type( $id ) == $post_type && has_term( $term_slug, $taxonomy_slug, $id ) && $kind == 'single-location' ) { $template_selected = $alternate_template_id; } return $template_selected; } Relevant Documentation: |
2 | 20 | 5 years, 7 months ago |