Chris
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 |
---|---|---|---|---|---|
Access not hiding woocommerce product
Started by: Chris in: Toolset Professional Support |
2 | 3 | 2 years, 1 month ago | ||
Is there a limit to the number of instances of a field that can be added?
Started by: Chris in: Toolset Professional Support |
2 | 2 | 2 years, 2 months ago | ||
Conditionally display form field group
Started by: Chris in: Toolset Professional Support |
2 | 2 | 3 years, 8 months ago | ||
Custom role no longer able to perform same tasks
Started by: Chris
in: Toolset Professional Support
Problem: I have a custom role that should be able to submit a Form to add or edit a child post, but the parent post options are not shown in the select field in the Form. This was working before a recent update. Solution: Check your custom code to confirm that redirects set up to block access to the back-end of the site are not applied to admin-ajax.php requests. Add some conditional logic to prevent those redirects as needed, like in the following code example: /** * Block wp-admin access for non-admins (not while doing AJAX, see https://toolset.com/forums/topic/custom-role-no-longer-able-to-perform-same-tasks/) */ function ace_block_wp_admin() { if (!current_user_can('edit_users') && ( !defined('DOING_AJAX') || !DOING_AJAX ) ) { wp_safe_redirect( '/my-account'); exit; } } add_action( 'admin_init', 'ace_block_wp_admin' ); |
2 | 12 | 4 years, 3 months ago | ||
Access settings incomplete
Started by: Chris in: Toolset Professional Support |
2 | 4 | 4 years, 6 months ago | ||
Unable to hide post in view using checkbox
Started by: Chris
in: Toolset Professional Support
Problem: I want to hide some of many posts displayed in a Toolset View. Solution: The easiest is to use a Taxonomy. Then create a View and query the posts by Terms "no one of these {your no show term}" |
2 | 7 | 4 years, 8 months ago | ||
search filter to check that two checkbox fields fields are checked
Started by: Chris
in: Toolset Professional Support
Problem: Solution: You can find the proposed solution in this case with the following reply: Relevant Documentation: |
2 | 10 | 4 years, 9 months ago | ||
Old solution no longer works
Started by: Chris in: Toolset Professional Support |
2 | 8 | 4 years, 10 months ago | ||
The response is not a valid JSON response.
Started by: Chris in: Toolset Professional Support |
1 | 2 | 4 years, 11 months ago | ||
Unable to select product based on field in commerce form
Started by: Chris
in: Toolset Professional Support
Problem: Solution: Relevant Documentation: |
2 | 5 | 5 years ago | ||
extracting postcode from Address field
Started by: Chris in: Toolset Professional Support |
2 | 3 | 5 years, 1 month ago | ||
Conditionally display text to author of post only OR an admin
Started by: Chris in: Toolset Professional Support |
2 | 4 | 5 years, 1 month ago | ||
trying to automatically create a fields value
Started by: Chris
in: Toolset Professional Support
Problem: Solution: You can find the proposed solution in this case with the following reply: Relevant Documentation: |
3 | 4 | 5 years, 1 month ago | ||
Displaying orders where customer is same as displayed post author
Started by: Chris
in: Toolset Professional Support
Problem: Solution: You can find the proposed solution in this case with the following reply: Relevant Documentation: |
2 | 8 | 5 years, 1 month ago | ||
How many addresses can Toolset deal with
Started by: Chris
in: Toolset Professional Support
Problem: Solution: Relevant Documentation: |
2 | 3 | 5 years, 2 months ago |