julieP
Admite hilos creados en los últimos 30 días: 2
Debates favoritos del foro
Este usuario no tiene debates favoritos.
Temas del foro creados
Status | Debate | Supporter | Voces | Mensajes | Caducidad |
---|---|---|---|---|---|
Registered site URL is incorrect
Iniciado por: julieP en: Toolset Professional Support |
1 | 7 | hace 6 días, 16 horas | ||
Types Download Changelog Content Missing
Iniciado por: julieP en: Toolset Professional Support |
1 | 5 | hace 1 semana | ||
CRED Hooks
Iniciado por: julieP
en: 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 | hace 1 año, 9 meses | ||
Captcha
Iniciado por: julieP en: Toolset Professional Support |
2 | 3 | hace 2 años | ||
CRED Image Fields
Iniciado por: julieP en: Toolset Professional Support |
2 | 10 | hace 2 años, 2 meses | ||
PHP 8 Compatability (CRED)
Iniciado por: julieP en: Toolset Professional Support |
2 | 4 | hace 2 años, 5 meses | ||
How can we reduce the costs associated with the Google Maps APIs? – Static Maps API
Iniciado por: julieP
en: Toolset Professional Support
Problem: Solution: Relevant Documentation: |
2 | 8 | hace 2 años, 6 meses | ||
Is Toolset compatible with PHP 8?
Iniciado por: julieP
en: 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 | hace 2 años, 6 meses | ||
Email Validation
Iniciado por: julieP en: Toolset Professional Support |
2 | 3 | hace 2 años, 6 meses | ||
CRED Validation of Custom Taxonomy Value
Iniciado por: julieP en: Toolset Professional Support |
2 | 5 | hace 2 años, 9 meses | ||
Using Toolset Forms without Toolset Access
Iniciado por: julieP en: Toolset Professional Support |
2 | 4 | hace 2 años, 10 meses | ||
Generate Default Value for CRED Generic Field from Shortcode
Iniciado por: julieP en: Toolset Professional Support |
2 | 11 | hace 2 años, 11 meses | ||
Forms & Media Library
Iniciado por: julieP en: Toolset Professional Support |
2 | 2 | hace 3 años, 3 meses | ||
Disabling Media Library Manager
Iniciado por: julieP en: Toolset Professional Support |
2 | 7 | hace 3 años, 3 meses | ||
Problem With Astra Theme & Taxonomies
Iniciado por: julieP
en: 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 | hace 3 años, 4 meses |