AmrA8547
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 |
---|---|---|---|---|---|
how to make the custom post full width
Started by: AmrA8547 in: Toolset Professional Support |
2 | 6 | 5 years, 8 months ago | ||
how to allow the site member to make only 1 post using post form ?
Started by: AmrA8547 in: Toolset Professional Support |
2 | 6 | 5 years, 8 months ago | ||
limit and control fields input of a content form
Started by: AmrA8547
in: Toolset Professional Support
Problem: I would like to validate an input field in Forms and enforce a maximum character count. Solution: Add the following custom code: add_filter( 'cred_form_validate', 'validate_form_20111', 10, 2 ); function validate_form_20111( $data, $form_data ) { $forms = array( 20111 ); if( in_array( $form_data['id'], $forms ) ){ list($fields,$errors)=$data; if ( strlen($fields['wpcf-business-brief']['value']) > 200 ) { $errors['business-brief'] = __('Maximum 200 characters for this field', 'your-language-domain'); } $data =array($fields,$errors); } return $data; } Relevant Documentation: |
2 | 5 | 5 years, 9 months ago | ||
Not working
Started by: AmrA8547
in: Toolset Professional Support
Problem: Solution: Relevant Documentation: |
2 | 3 | 5 years, 9 months ago | ||
how to filter a view by specific user role
Started by: AmrA8547
in: Toolset Professional Support
Problem: The issue here is that the user wanted to filter their view by a specific user role. Solution: I would recommend having a look at the solution provided below. |
2 | 13 | 5 years, 9 months ago | ||
how to insert image field in place of divi logo
Started by: AmrA8547
in: Toolset Professional Support
Problem: The issue here is that the user wanted to know how to change their site logo in the divi theme. Solution: This can be solved by taking a look at the link below. |
2 | 5 | 5 years, 9 months ago | ||
how to style custom search fields .. the fields appear vertically
Started by: AmrA8547 in: Toolset Professional Support |
1 | 2 | 5 years, 9 months ago | ||
how to style pagination .. its appear vertically
Started by: AmrA8547 in: Toolset Professional Support |
1 | 2 | 5 years, 9 months ago |