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 |
---|---|---|---|---|---|
when activating wpml string translations, getting fatal error
Started by: Ido Angel
in: Toolset Professional Support
Problem: When I activate WPML String Translation with Forms active, I see a Fatal Error. Fatal error: require_once(): Failed opening required 'WPTOOLSET_FORMS_ABSPATH/classes/class.conditional.php' in /wp-content/plugins/types/vendor/toolset/types/embedded/includes/conditional-display.php on line 35 Solution: // require_once WPCF_EMBEDDED_ABSPATH . '/includes/conditional-display.php'; Update the file on the server. |
3 | 10 | 5 years, 6 months ago | ||
edit user form keeps disaplaying an error
Started by: Ido Angel in: Toolset Professional Support |
1 | 4 | 5 years, 6 months ago | ||
conditional – comments number – not working
Started by: Ido Angel
in: Toolset Professional Support
Problem: Show a different image if there are comments/no comments Solution: You can try shortcode [wpv-post-comments-number] like this: https://toolset.com/forums/topic/conditional-comments-number-not-working/#post-1249021 Relevant Documentation: https://toolset.com/documentation/user-guides/views-shortcodes/#wpv-post-comments-number |
2 | 3 | 5 years, 6 months ago | ||
recover lost content templates and views
Started by: Ido Angel in: Toolset Professional Support |
2 | 3 | 5 years, 6 months ago | ||
layout with view with flexslider distorted
1
2
Started by: Ido Angel in: Toolset Professional Support |
2 | 20 | 5 years, 6 months ago | ||
post content template not working
Started by: Ido Angel in: Toolset Professional Support |
1 | 2 | 5 years, 6 months ago | ||
conditional for wpml language
Started by: Ido Angel
in: Toolset Professional Support
Problem: The issue here is that the user had some custom code shortcode to get the current language for the page. function wpml_language_code_value_func() { global $post; $my_post_language_details = apply_filters( 'wpml_post_language_details', NULL, $post->ID ); $value = $my_post_language_details['language_code']; return $value; } add_shortcode('wpml_language_code_value', 'wpml_language_code_value_func'); They wanted to use this is a conditional code to display different content based on the language. However when added to a conditional code the shorcode doesn't work. Solution: Given that this is a custom shortcode it needs to be added to the views 3rd party shortcode arguments. If the shortcode name isn't added here then it won't work inside the conditional code. This can be found at Toolset->Settings -> Frontend. |
3 | 5 | 5 years, 7 months ago | ||
what would be the best way to create a “group gift” product?
Started by: Ido Angel
in: Toolset Professional Support
Problem: Solution: You can find the proposed solution, in this case with the following reply: Relevant Documentation: |
2 | 3 | 5 years, 8 months ago | ||
group search results by post type
Started by: Ido Angel in: Toolset Professional Support |
2 | 4 | 5 years, 8 months ago | ||
Unable to charge with cred commerce
Started by: Ido Angel
in: Toolset Professional Support
Problem: I would like to create a User form that is integrated with Forms Commerce. I am trying to select the option "The form specifies the product according to the value of this custom field" but my field never appears. Solution: |
2 | 5 | 5 years, 9 months ago | ||
pass newly created post id with url parameter to target page
Started by: Ido Angel
in: Toolset Professional Support
Problem: I would like to use the Forms API to redirect to a specific URL, including a parameter set by the new post ID. Solution: The second parameter in the callback function, $post_id, contains the ID of the created or edited post. add_filter('cred_success_redirect', 'custom_purchase_redirect',10,3); function custom_purchase_redirect($url, $post_id, $form_data) { if ($form_data['id']==60) { $redirect = $url . "?fit=" . $post_id; return $redirect; } return $url; } Relevant Documentation: |
2 | 3 | 5 years, 9 months ago | ||
searching within distance kills the server
Started by: Ido Angel
in: Toolset Professional Support
Problem: whenever i search something, the site thinks for a long time and then crashes. but the map displays them correctly. Solution: Yes, search in large data website will consume more server resource, and it will conduct some performance problems, but it should not conduct the problem: I suggest you follow our document to optimize the post view and filters. Relevant Documentation: |
2 | 4 | 5 years, 9 months ago | ||
no distance filter
Started by: Ido Angel in: Toolset Professional Support |
1 | 2 | 5 years, 10 months ago | ||
creating group gifts
Started by: Ido Angel
in: Toolset Professional Support
Problem: Solution: For more complex fields or native WooCommerce functionalities, generic fields can be used to process data through "Forms API Hooks" hooks. Relevant Documentation: |
2 | 5 | 5 years, 10 months ago | ||
jQuery “append” happens twice – only in view, not elsewhere
Started by: Ido Angel
in: Toolset Professional Support
Problem: I am using jQuery.each and jQuery.append to insert some content into the page after document ready, but for some reason append is happening twice. Solution: Check your jQuery.each selector to confirm there is only one element in the DOM. In this case, there are two matching filters because the View is split into search form and results using separate shortcodes. The filters are actually in the DOM twice. |
3 | 7 | 5 years, 10 months ago |