Darryl
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 |
---|---|---|---|---|---|
Can't restore Admin Sidebar if it's collapsed and any Toolset plugin is enabled
Started by: Darryl in: Toolset Professional Support |
2 | 2 | 1 month, 1 week ago | ||
Editing the Menu Order Value using a Toolset Form
Started by: Darryl
in: 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 | 6 months, 2 weeks ago | ||
Many to Many Relationships and Intermediary Posts
Started by: Darryl in: Toolset Professional Support |
2 | 2 | 9 months, 3 weeks ago | ||
With Toolset Access activated, I cannot create forms with WS Form PRO
Started by: Darryl in: Toolset Professional Support |
2 | 8 | 1 year, 2 months ago | ||
Cannot add a link to WYSIWYG field
Started by: Darryl in: Toolset Professional Support |
2 | 2 | 1 year, 11 months ago | ||
I want to display a taxonomy only if at least one of the terms has been selected
Started by: Darryl
in: 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 | 2 years, 8 months ago | ||
Kadence Accordion closes when activated
Started by: Darryl in: Toolset Professional Support |
2 | 4 | 2 years, 9 months ago | ||
Fields not available in template unless I make the template the default
Started by: Darryl
in: 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 | 2 years, 9 months ago | ||
Bootstrap and Forms
Started by: Darryl in: Toolset Professional Support |
2 | 2 | 3 years ago | ||
The Update Button in the Block Editor is disabled when editing a Template
Started by: Darryl in: Toolset Professional Support |
2 | 2 | 3 years, 6 months ago | ||
Container block no longer has Vertical Alignment
Started by: Darryl in: Toolset Professional Support |
2 | 6 | 3 years, 11 months ago | ||
Issue with Conditional Block and Author Profile Image
Started by: Darryl
in: 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 | 3 years, 11 months ago | ||
Database upgrade issue
Started by: Darryl in: Toolset Professional Support |
3 | 7 | 3 years, 11 months ago | ||
Javascript error when trying to upload an image
Started by: Darryl
in: 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 | 3 years, 12 months ago | ||
When Types is enabled, the "Edit with Elementor" link isn't visible
Started by: Darryl in: Toolset Professional Support |
2 | 3 | 4 years ago |