larryB-3
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 |
|---|---|---|---|---|---|
|
When using user front-end post forms, can you show a preview of the of the page?
Started by: larryB-3 in: Toolset Professional Support |
|
2 | 6 | 2 years, 11 months ago | |
|
Adding default featured image per CRED form/CPT
Started by: larryB-3 in: Toolset Professional Support |
|
2 | 3 | 2 years, 11 months ago | |
|
How to include BCCs on post form notifications
Started by: larryB-3 in: Toolset Professional Support |
|
2 | 3 | 2 years, 12 months ago | |
|
Can you display on the front end a post expiration date?
Started by: larryB-3 in: Toolset Professional Support |
|
2 | 11 | 3 years, 1 month ago | |
|
Trying to limit CRED from post content to 500 words or less
Started by: larryB-3
in: Toolset Professional Support
Problem: I add a snippet to limit the number of words for post content in the form and I get this error: Cannot redeclare function my_validation. Solution: Change the name of the function as you used that somewhere else on your WordPress installation:
add_filter('cred_form_validate','chr_validation',10,2);
function chr_validation($field_data, $form_data)
{
//field data are field values and errors
list($fields,$errors)=$field_data;
//check if post_title field is more than 500 words
if ( str_word_count($fields['post_content']['value']) > 500 )
{
//set error message for post_content field
$errors['post_content']='500 word count exceeded. Please, use less words for your description.';
}
//return result
return array($fields,$errors);
}
Relevant Documentation: https://toolset.com/forums/topic/limit-word-count-on-cred-post_content-field/ |
|
2 | 3 | 3 years, 1 month ago | |
|
User Registration Form with check box to agree to terms & conditions
Started by: larryB-3 in: Toolset Professional Support |
|
2 | 5 | 3 years, 2 months ago | |
|
Can user permissions allow the user to edit….
Started by: larryB-3 in: Toolset Professional Support |
2 | 3 | 3 years, 3 months ago | ||
|
After recent update product pages no longer appear with my theme headers footer
1
2
Started by: larryB-3 in: Toolset Professional Support |
|
2 | 18 | 5 years, 2 months ago |