julieP
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 |
---|---|---|---|---|---|
CRED Hooks
Started by: julieP
in: Toolset Professional Support
Problem: How can I retrieve taxonomy from customer-entered form content? Solution: var_dump the $_POST array to see the proper key values that you have in before_save_data hook. <pre> <?php var_dump($_POST); ?> </pre> <p> |
2 | 6 | 1 year, 9 months ago | ||
Captcha
Started by: julieP in: Toolset Professional Support |
2 | 3 | 1 year, 11 months ago | ||
CRED Image Fields
Started by: julieP in: Toolset Professional Support |
2 | 10 | 2 years, 1 month ago | ||
PHP 8 Compatability (CRED)
Started by: julieP in: Toolset Professional Support |
2 | 4 | 2 years, 4 months ago | ||
How can we reduce the costs associated with the Google Maps APIs? – Static Maps API
Started by: julieP
in: Toolset Professional Support
Problem: Solution: Relevant Documentation: |
2 | 8 | 2 years, 5 months ago | ||
Is Toolset compatible with PHP 8?
Started by: julieP
in: Toolset Professional Support
Problem: Solution: Please try to update ALL Toolset plugins to latest version either using Toolset installer or you can download it from your account's page: Relevant Documentation: |
2 | 7 | 2 years, 5 months ago | ||
Email Validation
Started by: julieP in: Toolset Professional Support |
2 | 3 | 2 years, 5 months ago | ||
CRED Validation of Custom Taxonomy Value
Started by: julieP in: Toolset Professional Support |
2 | 5 | 2 years, 8 months ago | ||
Using Toolset Forms without Toolset Access
Started by: julieP in: Toolset Professional Support |
2 | 4 | 2 years, 9 months ago | ||
Generate Default Value for CRED Generic Field from Shortcode
Started by: julieP in: Toolset Professional Support |
2 | 11 | 2 years, 11 months ago | ||
Forms & Media Library
Started by: julieP in: Toolset Professional Support |
2 | 2 | 3 years, 2 months ago | ||
Disabling Media Library Manager
Started by: julieP in: Toolset Professional Support |
2 | 7 | 3 years, 3 months ago | ||
Problem With Astra Theme & Taxonomies
Started by: julieP
in: Toolset Professional Support
Problem: I have a Form that creates posts. There is a custom taxonomy term checkboxes group in the Form. If a the Form is placed in a WordPress Archive and at least one custom taxonomy term is selected, PHP Warnings and Notices will be generated when the Form is submitted. In some cases the same issue happens when the Form is placed on a custom Page. Solution: Our developers have identified the issue and produced a workaround you can use until the permanent fix is implemented: class tssnippet_Support_Submit_Forms_On_Archives { private $data = null; private $needs_restore = false; function __construct() { $this->maybe_save_postdata(); add_action( 'wp', array( $this, 'maybe_restore_postdata' ) ); } public function maybe_save_postdata() { if ( ! get_option( 'permalink_structure' ) ) { // Note that this will not work on sites with ugly permalinks :-/ return; } if ( isset( $_POST['_cred_cred_prefix_form_id'] ) && isset( $_POST['_cred_cred_prefix_form_count'] ) ) { $this->needs_restore = true; $this->data = $_POST; $_POST = array(); } } public function maybe_restore_postdata() { if ( ! $this->needs_restore ) { return; } $_POST = $this->data; } } add_action( 'wp_loaded', 'tssnippet_load_support_submit_forms_on_archives' ); function tssnippet_load_support_submit_forms_on_archives() { new tssnippet_Support_Submit_Forms_On_Archives(); } Note that this workaround only applies to sites that use something other than the default permalink structure. |
2 | 16 | 3 years, 3 months ago | ||
Array to String Conversion Error When Image Size Validation Fails
Started by: julieP
in: Toolset Professional Support
Problem: The cred_form_validate filter hook throws PHP waring in editing post form. Solution: This is fixed in next version of Toolset Forms plugin. Relevant Documentation: |
2 | 10 | 3 years, 5 months ago | ||
Problem Using Relationship API
Started by: julieP in: Toolset Professional Support |
2 | 3 | 3 years, 5 months ago |