Darryl
Admite hilos creados en los últimos 30 días: 0
Debates favoritos del foro
Este usuario no tiene debates favoritos.
Temas del foro creados
Status | Debate | Supporter | Voces | Mensajes | Caducidad |
---|---|---|---|---|---|
Can't restore Admin Sidebar if it's collapsed and any Toolset plugin is enabled
Iniciado por: Darryl en: Toolset Professional Support |
2 | 2 | hace 1 mes, 2 semanas | ||
Editing the Menu Order Value using a Toolset Form
Iniciado por: Darryl
en: Toolset Professional Support
Problem: I want to use a Toolset Form to edit the Menu Order value of posts, but I can't see a way to do this through the standard Toolset Form functionalities. Solution: Add a generic input to the form with the slug name the-order. Then, add custom code to the Toolset custom code section to update the Menu Order using cred_save_data action. Sample code to get started: add_action('cred_save_data', 'update_post_order', 10, 2); function update_post_order($post_id, $form_data) { // Check if the correct form is being submitted if ($form_data['id'] == [YOUR_FORM_ID]) { // Replace [YOUR_FORM_ID] with the actual ID of your form if (isset($_POST['the-order'])) { $new_order = intval($_POST['the-order']); // Ensure the input is treated as an integer // Update the post order $args = array( 'ID' => $post_id, 'menu_order' => $new_order ); wp_update_post($args); } } } Relevant Documentation: |
2 | 3 | hace 6 meses, 2 semanas | ||
Many to Many Relationships and Intermediary Posts
Iniciado por: Darryl en: Toolset Professional Support |
2 | 2 | hace 9 meses, 3 semanas | ||
With Toolset Access activated, I cannot create forms with WS Form PRO
Iniciado por: Darryl en: Toolset Professional Support |
2 | 8 | hace 1 año, 2 meses | ||
Cannot add a link to WYSIWYG field
Iniciado por: Darryl en: Toolset Professional Support |
2 | 2 | hace 1 año, 12 meses | ||
I want to display a taxonomy only if at least one of the terms has been selected
Iniciado por: Darryl
en: Toolset Professional Support
Problem: A user reported that he is trying to use a conditional block to show the taxonomy information, only if at least one of the terms is selected. Solution: Shared the example syntax of the empty check conditional statement for the taxonomy. Relevant Documentation: n/a |
2 | 3 | hace 2 años, 8 meses | ||
Kadence Accordion closes when activated
Iniciado por: Darryl en: Toolset Professional Support |
2 | 4 | hace 2 años, 9 meses | ||
Fields not available in template unless I make the template the default
Iniciado por: Darryl
en: Toolset Professional Support
Problem: Occasionally I need to use multiple templates for a post type but unless I specify that the template is the default for the single display, all the fields of that post type are not available to me. Solution: Please edit the content template, in option "View with:", find and select a specific post, and test again, see my screenshot view-with.jpg Relevant Documentation: |
2 | 3 | hace 2 años, 9 meses | ||
Bootstrap and Forms
Iniciado por: Darryl en: Toolset Professional Support |
2 | 2 | hace 3 años | ||
The Update Button in the Block Editor is disabled when editing a Template
Iniciado por: Darryl en: Toolset Professional Support |
2 | 2 | hace 3 años, 6 meses | ||
Container block no longer has Vertical Alignment
Iniciado por: Darryl en: Toolset Professional Support |
2 | 6 | hace 3 años, 11 meses | ||
Issue with Conditional Block and Author Profile Image
Iniciado por: Darryl
en: Toolset Professional Support
Problem: Use custom user field in conditional block. Solution: You will need to use "Expert mode" of Toolset conditional block, see my screenshot: https://toolset.com/forums/topic/issue-with-conditional-block-and-author-profile-image/#post-1877869 Relevant Documentation: |
2 | 3 | hace 3 años, 11 meses | ||
Database upgrade issue
Iniciado por: Darryl en: Toolset Professional Support |
3 | 7 | hace 3 años, 12 meses | ||
Javascript error when trying to upload an image
Iniciado por: Darryl
en: Toolset Professional Support
Problem: I am trying to: upload an image using the image field in a Toolset Form Instead, I got some JS errors. Solution: It seems to be a compatibility issue, please try these: https://toolset.com/forums/topic/javascript-error-when-trying-to-upload-an-image/#post-1854389 Relevant Documentation: |
2 | 3 | hace 4 años | ||
When Types is enabled, the "Edit with Elementor" link isn't visible
Iniciado por: Darryl en: Toolset Professional Support |
2 | 3 | hace 4 años |