SteffenM1628
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 |
---|---|---|---|---|---|
Userform native WordPress profile picture
Started by: SteffenM1628
in: Toolset Professional Support
Problem: I would like to use a Form to update a custom post. When the Form is submitted, I would like to automatically set a User custom field image using the Featured Image from the Form. Solution: Use custom code and the Forms API: add_action('cred_save_data', 'my_save_data_action',10,2); function my_save_data_action($post_id, $form_data) { // if a specific form if ($form_data['id']==83) //can i add more than one form? { $image_value = get_the_post_thumbnail_url( $post_id, "full"); // full size, change for a different size $user = wp_get_current_user(); $user_id = $user->ID; update_user_meta($user_id, 'wpcf-profilbild', $image_value); } } Relevant Documentation: |
2 | 10 | 4 years, 12 months ago | ||
css form styling works on html field but not on toolset field
Started by: SteffenM1628 in: Toolset Professional Support |
2 | 7 | 5 years, 1 month ago | ||
Click Toolset Forms Submit button with JavaScript or jQuery
Started by: SteffenM1628
in: Toolset Professional Support
Problem: Solution: |
2 | 9 | 5 years, 2 months ago | ||
page refresh or redirect to custom url after form submit
Started by: SteffenM1628 in: Toolset Professional Support |
2 | 10 | 5 years, 2 months ago | ||
Toolset Forms Media upload
Started by: SteffenM1628
in: Toolset Professional Support
Problem: Solution: |
2 | 9 | 5 years, 2 months ago | ||
change site to homepage – now form gives error
Started by: SteffenM1628 in: Toolset Professional Support |
2 | 4 | 5 years, 2 months ago | ||
Css loading problems
1
2
Started by: SteffenM1628 in: Toolset Professional Support |
2 | 28 | 5 years, 3 months ago | ||
Send Notification via "cred_notification_recipients to different child of parent
1
2
Started by: SteffenM1628 in: Toolset Professional Support |
3 | 22 | 5 years, 6 months ago | ||
Help to style forms
Started by: SteffenM1628 in: Toolset Professional Support |
2 | 9 | 5 years, 7 months ago | ||
Convert Unix Timestamp in to dd/mm/yyyy
Started by: SteffenM1628
in: Toolset Professional Support
Problem: My problem is in a view. i have a field "post-date" and it is shown in the front end every time in the unix timestamp. Solution: The problem was a plugin which has change the wordpress date format in the unix timestamp. Relevant Documentation: |
2 | 4 | 5 years, 8 months ago | ||
multi step form
Started by: SteffenM1628
in: Toolset Professional Support
Problem: Solution: Please elaborate precisely what, and why you need it. We cannot provide solutions for it in the forum, as it is simply not possible natively to create such forms with Toolset. Custom Solutions |
2 | 3 | 5 years, 8 months ago | ||
Elementor no dynamic key options
Started by: SteffenM1628
in: Toolset Professional Support
Problem: Display custom user field in Elementor editor. Solution: You can use Views shortcode directly, for example, you can display current logged-in users 's fields with shortcode [wpv-user], like this: [wpv-user field="wpcf-custom-user-field"] And if it is a custom user field created with Types plugin, you can use Types shortcodes directly Relevant Documentation: https://toolset.com/documentation/customizing-sites-using-php/functions/ |
2 | 5 | 5 years, 8 months ago | ||
Sorting nested tables
1
2
Started by: SteffenM1628 in: Toolset Professional Support |
3 | 24 | 5 years, 10 months ago | ||
Use a conditional shortcode on an elementor button
Started by: SteffenM1628 in: Toolset Professional Support |
2 | 7 | 5 years, 10 months ago | ||
How to use jquery plugins?
Started by: SteffenM1628 in: Toolset Professional Support |
2 | 4 | 5 years, 10 months ago |