julieP
Fils de soutien créés au cours des 30 derniers jours : 2
Sujets de forum favoris
This user has no favorite topics.
Sujets de forum créés
Status | Sujet | Supporter | Voix | Publications | Nouveauté |
---|---|---|---|---|---|
Registered site URL is incorrect
Commencé par : julieP in: Toolset Professional Support |
1 | 7 | Il y a 1 semaine et 6 jours | ||
Types Download Changelog Content Missing
Commencé par : julieP in: Toolset Professional Support |
1 | 5 | Il y a 2 semaines | ||
CRED Hooks
Commencé par : 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 | Il y a 1 année et 9 mois | ||
Captcha
Commencé par : julieP in: Toolset Professional Support |
2 | 3 | Il y a 2 années | ||
CRED Image Fields
Commencé par : julieP in: Toolset Professional Support |
2 | 10 | Il y a 2 années et 2 mois | ||
PHP 8 Compatability (CRED)
Commencé par : julieP in: Toolset Professional Support |
2 | 4 | Il y a 2 années et 5 mois | ||
How can we reduce the costs associated with the Google Maps APIs? – Static Maps API
Commencé par : julieP
in: Toolset Professional Support
Problem: Solution: Relevant Documentation: |
2 | 8 | Il y a 2 années et 6 mois | ||
Is Toolset compatible with PHP 8?
Commencé par : 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 | Il y a 2 années et 6 mois | ||
Email Validation
Commencé par : julieP in: Toolset Professional Support |
2 | 3 | Il y a 2 années et 6 mois | ||
CRED Validation of Custom Taxonomy Value
Commencé par : julieP in: Toolset Professional Support |
2 | 5 | Il y a 2 années et 9 mois | ||
Using Toolset Forms without Toolset Access
Commencé par : julieP in: Toolset Professional Support |
2 | 4 | Il y a 2 années et 10 mois | ||
Generate Default Value for CRED Generic Field from Shortcode
Commencé par : julieP in: Toolset Professional Support |
2 | 11 | Il y a 2 années et 11 mois | ||
Forms & Media Library
Commencé par : julieP in: Toolset Professional Support |
2 | 2 | Il y a 3 années et 3 mois | ||
Disabling Media Library Manager
Commencé par : julieP in: Toolset Professional Support |
2 | 7 | Il y a 3 années et 3 mois | ||
Problem With Astra Theme & Taxonomies
Commencé par : 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 | Il y a 3 années et 4 mois |