julieP
In den letzten 30 Tagen erstellte Support-Threads: 0
Lieblings-Forenthemen
This user has no favorite topics.
Forum Topics Created
Status | Thema | Supporter | Stimmen | Artikel | Aktualität |
---|---|---|---|---|---|
Registered site URL is incorrect
Gestartet von: julieP in: Toolset Professional Support |
1 | 7 | vor 1 Monat, 1 Woche | ||
Types Download Changelog Content Missing
Gestartet von: julieP in: Toolset Professional Support |
1 | 5 | vor 1 Monat, 1 Woche | ||
CRED Hooks
Gestartet von: 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 | vor 1 Jahr, 10 Monaten | ||
Captcha
Gestartet von: julieP in: Toolset Professional Support |
2 | 3 | vor 2 Jahren, 1 Monat | ||
CRED Image Fields
Gestartet von: julieP in: Toolset Professional Support |
2 | 10 | vor 2 Jahren, 3 Monaten | ||
PHP 8 Compatability (CRED)
Gestartet von: julieP in: Toolset Professional Support |
2 | 4 | vor 2 Jahren, 6 Monaten | ||
How can we reduce the costs associated with the Google Maps APIs? – Static Maps API
Gestartet von: julieP
in: Toolset Professional Support
Problem: Solution: Relevant Documentation: |
2 | 8 | vor 2 Jahren, 7 Monaten | ||
Is Toolset compatible with PHP 8?
Gestartet von: 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 | vor 2 Jahren, 7 Monaten | ||
Email Validation
Gestartet von: julieP in: Toolset Professional Support |
2 | 3 | vor 2 Jahren, 7 Monaten | ||
CRED Validation of Custom Taxonomy Value
Gestartet von: julieP in: Toolset Professional Support |
2 | 5 | vor 2 Jahren, 10 Monaten | ||
Using Toolset Forms without Toolset Access
Gestartet von: julieP in: Toolset Professional Support |
2 | 4 | vor 2 Jahren, 11 Monaten | ||
Generate Default Value for CRED Generic Field from Shortcode
Gestartet von: julieP in: Toolset Professional Support |
2 | 11 | vor 3 Jahren | ||
Forms & Media Library
Gestartet von: julieP in: Toolset Professional Support |
2 | 2 | vor 3 Jahren, 4 Monaten | ||
Disabling Media Library Manager
Gestartet von: julieP in: Toolset Professional Support |
2 | 7 | vor 3 Jahren, 4 Monaten | ||
Problem With Astra Theme & Taxonomies
Gestartet von: 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 | vor 3 Jahren, 5 Monaten |