I need to create toolset forms that access an external site with their API
Started by: zarrar sheikh
in: Toolset Professional Support
2
2
6 years, 3 months ago
Christian Cox
The rich editor for CRED post forms is broken in Firefox
Started by: MichaelR9215
in: Toolset Professional Support
2
5
6 years, 3 months ago
Minesh
Update grandparent with child values
Started by: MattI4840
in: Toolset Professional Support
2
3
6 years, 3 months ago
MattI4840
Post Forms (CRED) Redirect URL Parameter Error
Started by: Bobby339
in: Toolset Professional Support
2
5
6 years, 3 months ago
Bobby339
Cannot Get Parent Post ID on Cred_Save_Data with New Relationships API
Started by: jonB-5
in: Toolset Professional Support
4
7
6 years, 3 months ago
bjoernH
save the url of a custom post type to a user custom post field
Started by: Johan Marneweck
in: Toolset Professional Support
Quick solution available
2
8
6 years, 4 months ago
Johan Marneweck
Delete and image from the post and remove from the media library
Started by: davidZ-4
in: Toolset Professional Support
2
2
6 years, 4 months ago
Shane
using cred_submit_com , same page prompt
Started by: Akhil
in: Toolset Professional Support
Quick solution available
Problem:
I am exploring possibilities of displaying 'bootstrap alert' after form submiision on the same page.
Solution:
Action hook "cred_submit_complete"
https://toolset.com/documentation/programmer-reference/cred-api/#cred_submit_complete
Hook that allows doing a custom action after post data is saved to database and before doing any other action, like redirection.
It don't fit for your case, in your case, I suggest you try these:
1) disable option "AJAX submission"
2) option "What to show after submitting the form" choose:
Display a message instead of the form...
Then you will be able to customize the success message manually.
Relevant Documentation:
2
3
6 years, 4 months ago
Akhil
Illegal string offset in message dot php on line 33
Started by: PaulC9812
in: Toolset Professional Support
Quick solution available
Problem:
Client is customising the Classifieds Reference site and has added Elementor. They see a PHP warning about an Illegal String Offset.
Solution:
The issue arises from our use of the Elementor API that requires PHP 7+. Updating the server to PHP 7 fixes the issue.
3
9
6 years, 4 months ago
PZ
Cart is empty when using child post link form commerce
Started by: ahmedh
in: Toolset Professional Support
Quick solution available
3
5
6 years, 4 months ago
ahmedh
Wrong results in View filtered by date if WordPress timezone is not UTC
Started by: ahmedh
in: Toolset Professional Support
Quick solution available
Problem: I have a View with a post date Query Filter, set to display posts whose publish date is after or equal to: Minute: PAST_ONE(19). However, the filter doesn't seem to be working as expected when I change the WordPress timezone value. It works when set to UTC.
Solution: Check the Query Filter and make sure you have set the Year, Month, Day, and Hour criteria to CURRENT_ONE, otherwise, you will not get the expected results.
Relevant Documentation:
https://toolset.com/documentation/user-guides/date-filters/
2
6
6 years, 4 months ago
ahmedh
Delete created post by cred commerce on cart abandon and clear cart
Started by: ahmedh
in: Toolset Professional Support
3
25
6 years, 4 months ago
ahmedh
Image upload alternative?
Started by: mayurJ
in: Toolset Professional Support
2
8
6 years, 4 months ago
mayurJ
can’t access select-field value in custom FormValidator
Started by: klausB
in: Toolset Professional Support
Quick solution available
Problem:
can't access select-field value in custom FormValidator hook cred_form_validate
Solution:
You can use following code to validate the Toolset form.
add_filter('cred_form_validate','cred_filetype_size_validation',10,2);
function cred_filetype_size_validation($field_data, $form_data){
list($fields,$errors)=$field_data;
if ( 9999 == $form_data['id'] ) {
echo "<pre>";
print_r($_POST);
print_r($fields);
exit;
}
return array($fields,$errors);
}
You can find the proposed solution, in this case, with the following reply:
https://toolset.com/forums/topic/cant-access-select-field-value-in-custom-formvalidator/#post-1111409
Relevant Documentation:
https://toolset.com/documentation/programmer-reference/cred-api/#cred_form_validate
2
3
6 years, 4 months ago
klausB
How do we add a many to many selector in cred form?
Started by: davidM-25
in: Toolset Professional Support
3
6
6 years, 4 months ago
davidM-25