Tim Elliott
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 |
---|---|---|---|---|---|
Update view filters and results based on User Field
Started by: Tim Elliott in: Toolset Professional Support |
2 | 8 | 3 years, 1 month ago | ||
View won't update on frontend until I re-save the view
Started by: Tim Elliott in: Toolset Professional Support |
2 | 3 | 4 years, 2 months ago | ||
Do custom posts ping when published?
Started by: Tim Elliott in: Toolset Professional Support |
2 | 3 | 4 years, 3 months ago | ||
Content template class doesn’t include numbers
Started by: Tim Elliott
in: Toolset Professional Support
Problem: Solution: |
2 | 4 | 4 years, 4 months ago | ||
publicly_queryable without having page accessible
Started by: Tim Elliott in: Toolset Professional Support |
2 | 3 | 4 years, 7 months ago | ||
types field shortcode not working inside a conditional
Started by: Tim Elliott in: Toolset Professional Support |
2 | 7 | 4 years, 11 months ago | ||
Changing select inputs depending on form entry
Started by: Tim Elliott in: Toolset Professional Support |
2 | 3 | 4 years, 12 months ago | ||
Forms seems to be changing the label “for” value in some radio buttons
Started by: Tim Elliott
in: Toolset Professional Support
Problem: I have created a custom star rating input for Forms, but the "for" attributes for the labels associated with each input are modified by Forms JavaScript. Solution: Remove the "form-group" CSS class surrounding these inputs. This will cause the Forms JavaScript to skip over these inputs, and the attribute replacement script will not be applied. |
2 | 7 | 5 years ago | ||
JS event listener for change in a parametric search
Started by: Tim Elliott in: Toolset Professional Support |
2 | 4 | 5 years ago | ||
I seem to have a conflict between Views/Maps and Divi
Started by: Tim Elliott in: Toolset Professional Support |
2 | 5 | 5 years, 1 month ago | ||
A field that contains a script will not display unless you are logged in
Started by: Tim Elliott in: Toolset Professional Support |
2 | 5 | 5 years, 3 months ago | ||
Help with cred api actions working together
Started by: Tim Elliott in: Toolset Professional Support |
2 | 2 | 5 years, 5 months ago | ||
Auto generate username from form fields
Started by: Tim Elliott
in: Toolset Professional Support
Problem: I have a user registration form, I'd like the generated username to be in the form: Solution: It needs custom codes, see example here: https://toolset.com/forums/topic/auto-generate-username-from-form-fields/#post-1258333 Relevant Documentation: https://toolset.com/documentation/programmer-reference/cred-api/#cred_save_data |
2 | 10 | 5 years, 5 months ago | ||
View of related post to be filtered on checkbox field on intermediary post type
Started by: Tim Elliott
in: Toolset Professional Support
Problem: I have a many-to-many post relationship set up with a custom field applied to the intermediary post. On the single post page for one of the post types, I would like to display all the related posts, filtered by the custom field on the intermediary posts. Solution: Create a View of the intermediary post type, filtered by the custom field and also by post relationship, where the post is related to the current post or page. Then in the Loop, select the related post in the Post Selection tab when you insert any Fields or Views shortcodes. |
2 | 4 | 5 years, 6 months ago | ||
Is there a list of frontend events
Started by: Tim Elliott
in: Toolset Professional Support
Problem: I would like to know if there is a list of front-end events I can use for AJAX Views. Solution: See the code here for a list of all event handlers currently offered. jQuery( document ).on( 'js_event_wpv_pagination_completed', function( event, data ) { /** * data.view_unique_id (string) The View unique ID hash * data.effect (string) The View AJAX pagination effect * data.speed (integer) The View AJAX pagination speed in miliseconds * data.layout (object) The jQuery object for the View layout wrapper */ }); jQuery( document ).on( 'js_event_wpv_parametric_search_triggered', function( event, data ) { /** * data.view_unique_id (string) The View unique ID hash * data.form (object) The jQuery object for the View form * data.update_form (bool) Whether the custom search form will be updated * data.update_results (bool) Whether the custom search results will be updated */ }); jQuery( document ).on( 'js_event_wpv_parametric_search_started', function( event, data ) { /** * data.view_unique_id (string) The View unique ID hash */ }); jQuery( document ).on( 'js_event_wpv_parametric_search_form_updated', function( event, data ) { /** * data.view_unique_id (string) The View unique ID hash * data.view_changed_form (object) The jQuery object for the View form after being updated * data.view_changed_form_additional_forms_only (object) The jQuery object containing additional forms from other instances of the same View inserted using the [wpv-form-view] shortcode * data.view_changed_form_additional_forms_full (object) The jQuery object containing additional forms from other instances of the same View inserted using the [wpv-view] shortcode */ }); jQuery( document ).on( 'js_event_wpv_parametric_search_results_updated', function( event, data ) { /** * data.view_unique_id (string) The View unique ID hash * data.layout (object) The jQuery object for the View layout wrapper */ }); jQuery( document ).on( 'js_event_wpv_addon_maps_init_map_started', function( event, data ) { }); jQuery( document ).on( 'js_event_wpv_addon_maps_init_map_inited', function( event, data ) { }); jQuery( document ).on( 'js_event_wpv_addon_maps_init_map_completed', function( event, data ) { }); jQuery( document ).on( 'js_event_wpv_addon_maps_reload_map_started', function( event, data ) { }); jQuery( document ).on( 'js_event_wpv_addon_maps_reload_map_completed', function( event, data ) { }); Relevant Documentation: |
2 | 3 | 5 years, 8 months ago |