simonM-5
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 |
---|---|---|---|---|---|
Unable to tick and untick certain boxes in Toolset Access Control
Started by: simonM-5
in: Toolset Professional Support
Problem: Toolset Access settings checkboxes are not working correctly. Solution: Update to the latest version of Toolset plugins. |
2 | 4 | 3 years, 11 months ago | ||
implement favorites system with toolset
1
2
…
4
5
Started by: simonM-5 in: Toolset Professional Support |
4 | 64 | 4 years ago | ||
Limiting addresses in Forms via JS disables display of map when filling out form
Started by: simonM-5
in: Toolset Professional Support
Problem: I would like to limit the addresses suggested by the address field in a front-end Form to one specific country. Solution: Add a custom JavaScript snippet to the Form's JS editor: var delayed = function() { jQuery(".js-toolset-maps-address-autocomplete").each(function(index,item){ var map = jQuery(item).closest('.js-toolset-google-map-container').find('.js-toolset-google-map-preview:eq(0)'); jQuery(item).geocomplete({'country':'DE', 'type': [], 'map': map}); }); }; jQuery(document).ready(function(){ setTimeout( delayed, 2000 ); }); |
2 | 7 | 4 years ago | ||
Limit Google Map address locations to Germany via Toolset Forms
Started by: simonM-5
in: Toolset Professional Support
Problem: I would like to limit the autocomplete address options in a Toolset Forms address field to be from a specific country, Germany. Solution: Add the following JavaScript snippet to your Form's JS panel: jQuery(document).ready(function(){ jQuery(".js-toolset-maps-address-autocomplete").geocomplete({country: 'DE',type: []}); }); |
2 | 3 | 4 years ago | ||
Notice: Trying to get property 'source_language_code' of non-object in
Started by: simonM-5 in: Toolset Professional Support |
2 | 6 | 4 years ago | ||
Issue editing the existing custom code snippets
Started by: simonM-5 in: Toolset Professional Support |
2 | 9 | 4 years, 1 month ago | ||
Relationships dissappeard after the last update
1
2
Started by: simonM-5 in: Toolset Professional Support |
2 | 19 | 4 years, 1 month ago | ||
Query expiring and expired posts
1
2
Started by: simonM-5
in: Toolset Professional Support
Problem: Solution: But the view's query using "NOW" and "SECONDS_FROM_NOW" are calculated in the site's timezone. We'll need to hook into the query and change these dates to UTC. Check this sample code: add_filter( 'wpv_filter_query', 'change_date_filters_for_expiring_jobs', 10, 3 ); function change_date_filters_for_expiring_jobs( $query_args, $view_settings, $view_id ) { // return $query_args; if ( $view_id == 10351) { $value = $query_args['meta_query'][0]['value']; $values = explode(",", $value); $value = ( ( (int) $values[0] ) - 7200 ) . "," . ( ((int) $values[1]) - 7200 ); $query_args['meta_query'][0]['value'] = $value; } return $query_args; } Note that this code assumes that there is only one meta_query on the view. If the view queries another custom field, this code should be modified and adapted |
3 | 27 | 4 years, 2 months ago | ||
Toolset Debug Info is empty
Started by: simonM-5 in: Toolset Professional Support |
3 | 11 | 4 years, 2 months ago | ||
CRED delete post link shortcode ‘cred_delete_post_link’ not working after update
Started by: simonM-5
in: Toolset Professional Support
Problem: The cred_delete_post_link shortcode I have been using for some time on my site no longer works after updating my Toolset plugins. Solution: As of Forms 2.5.6, the cred_delete_post_link shortcode has been deprecated in favor of cred-delete-post. Relevant Documentation: |
2 | 5 | 4 years, 2 months ago | ||
AJAX not working correctly with WPML
1
2
…
4
5
Started by: simonM-5 in: Toolset Professional Support |
3 | 61 | 4 years, 2 months ago | ||
Sorting by Last Modified not being respected on Front End
1
2
Started by: simonM-5 in: Toolset Professional Support |
2 | 20 | 4 years, 4 months ago | ||
Last letter of taxonomy being truncated on front end
Started by: simonM-5 in: Toolset Professional Support |
2 | 3 | 4 years, 4 months ago | ||
Activating Toolset Access crashes the site
1
2
3
4
Started by: simonM-5
in: Toolset Professional Support
Problem: Solution: |
2 | 62 | 4 years, 5 months ago | ||
Currently not possible to use the “Show all my support tickets” link in Support
Started by: simonM-5
in: Toolset Professional Support
Problem: Solution: |
2 | 15 | 4 years, 5 months ago |