nabils
In den letzten 30 Tagen erstellte Support-Threads: 0
Lieblings-Forenthemen
This user has no favorite topics.
Forum Topics Created
Status | Thema | Supporter | Stimmen | Artikel | Aktualität |
---|---|---|---|---|---|
Many logged in users manage same post
Gestartet von: nabils in: Toolset Professional Support |
|
2 | 2 | vor 4 Jahren, 10 Monaten | |
Email attachments
Gestartet von: nabils
in: Toolset Professional Support
Problem: Send repeating file field as email attachments with Toolset Forms. Solution: It needs custom codes, for example: https://toolset.com/forums/topic/email-attachments/#post-1685885 Relevant Documentation: |
|
2 | 7 | vor 4 Jahren, 10 Monaten | |
MONTHS_FROM_NOW() not working in condition
Gestartet von: nabils
in: Toolset Professional Support
Problem: I am trying to create a conditional that tests if a custom date field is between TODAY() and MONTHS_FROM_NOW(2), but it's not working as expected. A date one month from now is hidden by the conditional. Solution: Use the following format with no line breaks and enclosing parentheses around both clauses: [wpv-conditional if="(( $(wpcf-rental_end) gt 'TODAY()' ) AND ( $(wpcf-rental_end) lt 'MONTHS_FROM_NOW(2)' ))"]Condition is true[/wpv-conditional] Relevant Documentation: |
|
2 | 5 | vor 4 Jahren, 10 Monaten | |
Add condition based on date and number fields
Gestartet von: nabils in: Toolset Professional Support |
|
2 | 5 | vor 5 Jahren | |
User form do not save field values
Gestartet von: nabils in: Toolset Professional Support |
|
3 | 12 | vor 5 Jahren, 1 Monat | |
Repeatable Field Groups form
Gestartet von: nabils
in: Toolset Professional Support
Problem: I would like to make the process of submitting repeatable field groups (RFGs) in Forms simpler. Since I cannot create RFGs in the same Form that manages a parent post, I would like to redirect back to the parent post after the User creates an RFG in Forms. Solution: You can use the Forms redirection API to redirect to any custom post or page. In the Form settings, you must set up some redirection. It doesn't matter which page or post you choose in the Form settings, but you must choose something for redirection. Then add the following custom code in your child theme's functions.php file, or in a custom code snippet in Toolset > Settings > Custom Code: add_filter('cred_success_redirect', 'custom_redirect_rfg_editor',10,3); function custom_redirect_rfg_editor($url, $post_id, $form_data) { $forms = array( 12345 ); $rfg_slug = 'your-rfg-slug'; if ( in_array( $form_data['id'], $forms ) ) { $parent_id = toolset_get_related_post( $post_id, $rfg_slug ); return get_permalink($parent_id); } return $url; } Replace 12345 with the ID of the RFG form, and replace your-rfg-slug with the slug of your RFG. Then this code will automatically redirect to the single parent post after submitting the form. Relevant Documentation: |
|
2 | 9 | vor 5 Jahren, 1 Monat | |
Toolset chat support ticket by nabils – 1585206100
Gestartet von: nabils in: Chat Support |
|
1 | 2 |
vor 5 Jahren, 1 Monat
|
|
Make the title for post is numbers starting from 1
Gestartet von: nabils in: Toolset Professional Support |
|
2 | 3 | vor 5 Jahren, 1 Monat | |
The edit form showing wrong data for some fields
Gestartet von: nabils in: Toolset Professional Support |
1 | 2 | vor 5 Jahren, 1 Monat | ||
One to one relationship is not saved
Gestartet von: nabils in: Toolset Professional Support |
|
2 | 3 | vor 5 Jahren, 1 Monat | |
Set a condition for the tab in layout in real Estate demo
Gestartet von: nabils
in: Chat Support
Problem: Check if current logged-in user is the property author, then display different result. Solution: You can try wpv-conditional shortcode, like this: [wpv-conditional if="( '[wpv-post-author format="meta" meta="ID"]' ne '[wpv-user field="ID"]' )"] .nav.nav-tabs .rental-tab { display: none !important; } [/wpv-conditional] Relevant Documentation: |
|
1 | 2 |
vor 5 Jahren, 2 Monaten
|
|
Show all images with same size even when uploading them with different sizes
Gestartet von: nabils in: Toolset Professional Support |
|
2 | 10 | vor 5 Jahren, 2 Monaten | |
Pre-filled field with parent field
1
2
Gestartet von: nabils in: Toolset Professional Support |
|
2 | 17 | vor 5 Jahren, 2 Monaten | |
Can not update parent field when submitting a child form
Gestartet von: nabils in: Toolset Professional Support |
|
2 | 10 | vor 5 Jahren, 3 Monaten | |
Connect new post to two parent posts using crd form
Gestartet von: nabils in: Toolset Professional Support |
|
2 | 7 | vor 5 Jahren, 3 Monaten |