Ido Angel
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 |
---|---|---|---|---|---|
related products in a popup show related products of 1st product outside popup
Started by: Ido Angel
in: Toolset Professional Support
Problem: The issue here is that the user's related products view popup were all display the same items. In this user's case the related items were attached to the same categories so each view was displaying the same information because they were all being sorted the same. This was resolved by setting the related view to be sorted randomly. For more information see the response here: |
3 | 11 | 6 years, 6 months ago | ||
How to use the post date field in a conditional shortcode
Started by: Ido Angel
in: Toolset Professional Support
Problem: Solution: [wpv-conditional if="( '[wpv-post-date format='U']' gt 'MONTHS_FROM_NOW(-1)' )"] conditional content [/wpv-conditional] Relevant Documentation: |
2 | 4 | 6 years, 6 months ago | ||
changing title for pagination links (for accessibility)
Started by: Ido Angel
in: Toolset Professional Support
Problem: The link titles of pagination links are just the number of the page. for accessibility purposes, i want to change that to something like "page: 2" instead of just "2". Solution: There isn't such a built-in feature within Views shortcode [wpv-pager-nav-links], but you can change the link text by setup the attribute "anchor_text" of the shortcode, for example: [wpv-pager-nav-links anchor_text="Page %%PAGE%%"] Relevant Documentation: https://toolset.com/documentation/user-guides/views-shortcodes/#wpv-pager-nav-links |
2 | 5 | 6 years, 6 months ago | ||
make it possible for only 1 radio button to be checked at a time
Started by: Ido Angel in: Toolset Professional Support |
1 | 2 | 6 years, 7 months ago | ||
woo grid with second image of product (not featured)
Started by: Ido Angel in: Toolset Professional Support |
2 | 5 | 6 years, 8 months ago | ||
ajax cart update upon quantity change
Started by: Ido Angel in: Toolset Professional Support |
2 | 2 | 6 years, 8 months ago | ||
Adding custom JS that works on page load AND after updating Views filters
Started by: Ido Angel
in: Toolset Professional Support
Problem: Solution: The correct format for adding custom code to the dom ready event and a custom Views event would look like this: ( function( $ ) { $( document ).ready( function(){ // Code you want to run when the page loads }); $( document ).on( 'js_event_wpv_parametric_search_form_updated', function( event, data ) { // Code you want to run when filters have been changed }); })( jQuery ); |
2 | 7 | 6 years, 8 months ago | ||
search incredibly slow
Started by: Ido Angel
in: Toolset Professional Support
Problem: The issue here was that the user was complaining that his searches were slow. Solution: To resolve this I would recommend the use of the WP Super Cache plugin . As well as if you have images on your site to optimize them using the plugin below. This should help to increase the site speed. |
2 | 5 | 6 years, 9 months ago | ||
Group search results by category/taxonomy
Started by: Ido Angel
in: Toolset Professional Support
Problem: I have 4 categories: articles, video, audio, events. Results for "basketball" under "articles": Results for "basketball" under "videos": Results for "basketball" under "audio": Results for "basketball" under "events": Solution: Add this custom shortcode to inspect URL parameters: function exists_in_repeating_url_param_func($atts) { $var = $atts['var']; $test = $atts ['test']; $exists = isset($_GET[$var]) ? in_array( $test, $_GET[$var] ) : 0; return $exists; } add_shortcode("exists_in_repeating_url_param", "exists_in_repeating_url_param_func"); Use it like this: [exists_in_repeating_url_param var="wpv-post-typer" test="video"] If the URL includes "wpv-post-typer%5B%5D=video", this shortcode will return 1. If not, the shortcode will return null. You can use the value of this shortcode to determine whether or not to display each View. Relevant Documentation: |
2 | 8 | 6 years, 9 months ago | ||
2 issues: add class according to url param, and retrieve url param to link
Started by: Ido Angel
in: Toolset Professional Support
Problem: Solution: Relevant Documentation: |
2 | 3 | 6 years, 9 months ago | ||
trying to get a jquery range slider working…
Started by: Ido Angel in: Toolset Professional Support |
4 | 14 | 6 years, 9 months ago | ||
front end submission for events calendar tickets?
Started by: Ido Angel in: Toolset Professional Support |
2 | 7 | 6 years, 10 months ago | ||
How to create a Shop page Product grid with Product custom fields?
Started by: Ido Angel
in: Toolset Professional Support
Problem: I would like to create a grid of Products to show on the Shop page of a WooCommerce site. I would like each Product in the grid to include some custom field values and a way to select a specific Product variation. Solution: Relevant Documentation: |
2 | 5 | 6 years, 10 months ago | ||
can i choose a cpt’s start AND end date?
Started by: Ido Angel
in: Toolset Professional Support
Problem: Solution: You can find proposed solution with the following reply: Relevant Documentation: |
2 | 3 | 6 years, 11 months ago | ||
can a slider crossfade between paged instead of fading out and in?
Started by: Ido Angel
in: Toolset Professional Support
Problem: Solution: Unfortunately we do not have a crossfade animation for our view slider. |
2 | 5 | 6 years, 11 months ago |