samuelH
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 |
---|---|---|---|---|---|
Auto-title from postform
Started by: samuelH in: Toolset Professional Support |
2 | 5 | 5 years, 2 months ago | ||
Manual, duplicate or import / export posttypes
Started by: samuelH in: Toolset Professional Support |
2 | 4 | 5 years, 3 months ago | ||
Styling checkbox in form
1
2
Started by: samuelH in: Toolset Professional Support |
2 | 18 | 5 years, 3 months ago | ||
Custom title from post form
Started by: samuelH in: Toolset Professional Support |
2 | 5 | 5 years, 3 months ago | ||
Recommandation?
Started by: samuelH in: Toolset Professional Support |
2 | 3 | 5 years, 3 months ago | ||
Show how many custom fields that has a specific value
Started by: samuelH in: Toolset Professional Support |
2 | 10 | 5 years, 4 months ago | ||
Post forms saved in progress / Paged forms
1
2
Started by: samuelH
in: Toolset Professional Support
Problem: I would like to create a multi-step Form. Solution: Create multiple Forms as described in the post: https://toolset.com/forums/topic/multi-page-cred-form-or-save-button-for-long-form Update the custom code to work with the latest software versions: add_filter('cred_success_redirect', 'stegvis_skjema_el_test',10,3); function stegvis_skjema_el_test($url, $post_id, $form_data) { if ($form_data['id']==874) { $arr = array('content-template-id'=>925); //the step 2 CRED form template ID $url = add_query_arg($arr, $url); } return $url; } If your site uses Layouts, you should create an unassigned Template Layout instead of an unassigned Content Template. Then the code should include the layout ID, not the content template ID, and the proper URL parameter. add_filter('cred_success_redirect', 'stegvis_skjema_el_test',10,3); function stegvis_skjema_el_test($url, $post_id, $form_data) { if ($form_data['id']==874) { $arr = array('layout_id'=>12345); //the step 2 CRED form template ID $url = add_query_arg($arr, $url); } return $url; } Relevant Documentation: https://toolset.com/documentation/programmer-reference/cred-api/#cred_success_redirect |
3 | 18 | 5 years, 6 months ago | ||
Multiple colums in form
Started by: samuelH
in: Toolset Professional Support
Problem: The issue here is that the user wanted to have their Forms in multiple columns, however they are using the Divi theme. Solution: The main issue here is that Divi is not compatible with Bootstrap so you will need manually build the columns using the expert mode of the Form. |
2 | 7 | 5 years, 6 months ago | ||
Field not redering in Safari / Opera – Fine in Chrome…
Started by: samuelH in: Toolset Professional Support |
1 | 2 | 5 years, 6 months ago | ||
Designing forms
Started by: samuelH in: Toolset Professional Support |
2 | 4 | 5 years, 6 months ago | ||
Show how many posts in a archive, and status of specific custom field.
Started by: samuelH
in: Toolset Professional Support
Problem: Solution: In the output section, don't include anything between the wpv-loop tags (which is output for each post). Immediately after the wpv-items-found shortcode insert the wpv-found-count shortcode which outputs the number of posts. In the wpv-no-items-found section output a zero. You will want to disable the wrapper div. Relevant Documentation: |
2 | 5 | 5 years, 6 months ago | ||
Multiple Archive for same post type?
Started by: samuelH in: Toolset Professional Support |
2 | 2 | 5 years, 7 months ago | ||
Generate a unic number when posting a new post
Started by: samuelH in: Toolset Professional Support |
2 | 4 | 5 years, 8 months ago | ||
Oxygen?
Started by: samuelH in: Toolset Professional Support |
2 | 2 | 5 years, 8 months ago | ||
Notification (email) when a post spesific date is overdue
Started by: samuelH in: Toolset Professional Support |
2 | 4 | 5 years, 8 months ago |