valentinP-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 |
---|---|---|---|---|---|
How to accordionize /collapse-uncollapse the four level taxonomy in a form
Started by: valentinP-3 in: Toolset Professional Support |
2 | 7 | 5 years, 8 months ago | ||
Search Categories
Started by: valentinP-3 in: Toolset Professional Support |
2 | 3 | 5 years, 8 months ago | ||
Auto duplicate frontend submission forms posts to all languages
1
2
Started by: valentinP-3
in: Toolset Professional Support
Problem: The issue here is that the user want their post to duplicate to their other languages when a form is submitted. Solution: This can be done by using the code below. function quick_duplicate_save_data_action( $post_id, $form_data ){ $forms = array( 2283, 2303, 2304 ); if ( in_array($form_data['id'],$forms) ){ global $sitepress; do_action( 'wpml_make_post_duplicates', $post_id); } } add_action( 'cred_save_data', 'quick_duplicate_save_data_action', 10, 2 ); All that you need to do is change the ids in the array to match the id of the forms that you want this code to affect. [edit] Note that the above will create WPML duplicates, which means the posts are synched and the "translations" cannot be independently edited except in the back-end when converting from duplicates to translations. The code above can be updated to do this automatically when the "duplicates" are first created. See https://toolset.com/forums/topic/edit-independently-in-front-end-ro-en-title-content-of-duplicated-posts/#post-1239002 |
3 | 17 | 5 years, 8 months ago | ||
I can't display in form, custom fields conditional to a taxonomy-category option
Started by: valentinP-3 in: Toolset Professional Support |
2 | 14 | 5 years, 9 months ago | ||
checkbox custom field not displaying properly on front end add new post form
Started by: valentinP-3 in: Toolset Professional Support |
2 | 4 | 5 years, 9 months ago | ||
Autocomplete custom post type title
Started by: valentinP-3 in: Toolset Professional Support |
2 | 4 | 5 years, 9 months ago |