julieP
Support threads created in the last 30 days: 2
Favorite Forum Topics
This user has no favorite topics.
Forum Topics Created
Status | Topic | Supporter | Voices | Posts | Freshness |
---|---|---|---|---|---|
Update to Access V2.4.3.1 Causes Fatal Error
Started by: julieP in: Toolset Professional Support |
3 | 4 | 7 years ago | ||
Generic Field [cred_show_group] causing Fatal Error
Started by: julieP
in: Toolset Professional Support
Problem: Fatal error: require_once(): Failed opening required 'field/class.radio.php' (include_path='.:/opt/alt/php70/usr/share/pear') in /home/mysite/public_html/wp-content/plugins/cred-frontend-editor/application/controllers/form_rendering.php on line 83 Solution: You can find hotfix at: Relevant Documentation: |
2 | 5 | 7 years, 1 month ago | ||
Previous ticket re character count (FOR CHRISTIAN PLEASE)
Started by: julieP in: Toolset Professional Support |
2 | 3 | 7 years, 1 month ago | ||
Query Filter Using Dates
Started by: julieP
in: Toolset Professional Support
Problem: Solution: |
2 | 9 | 7 years, 1 month ago | ||
Forum Search Not Working (Again)
Started by: julieP in: Toolset Professional Support |
2 | 3 | 7 years, 1 month ago | ||
Best Way of Setting Up Posts with Expiry Dates
Started by: julieP in: Toolset Professional Support |
2 | 5 | 7 years, 1 month ago | ||
Clarification please: Post Expiry Settings on Edit Content Version of Post Form
Started by: julieP in: Toolset Professional Support |
1 | 2 | 7 years, 1 month ago | ||
Vote for User Confirmation Link
Started by: julieP in: Toolset Professional Support |
2 | 3 | 7 years, 2 months ago | ||
Add Title Attribute to [toolet-edit-post-link] shortcode
Started by: julieP
in: Toolset Professional Support
Problem: Solution: [toolset-edit-post-link content_template_slug="update_post"]<span title="Update">[wpv-post-title][/toolset-edit-post-link]</span> Relevant Documentation: |
2 | 7 | 7 years, 2 months ago | ||
Using cred-save_data hook to populate date field on form submission
Started by: julieP
in: Toolset Professional Support
Problem: I'm trying to get the end date to be the same as the start date if the user submits the form leaving the end date blank. Solution: function save_data_form_48($post_id, $form_data){ // Change your CRED Form "ID" accordingly below if ($form_data['id']==48){ if(isset($_POST['wpcf-end-date']['display-only']) && $_POST['wpcf-end-date']['display-only'] == ''){ // End date is empty $custom_date = get_post_meta( $post_id, 'wpcf-start-date', true ); update_post_meta($post_id, 'wpcf-end-date', $custom_date); } } } add_action('cred_save_data', 'save_data_form_48',10,2); Relevant Documentation: |
2 | 5 | 7 years, 3 months ago | ||
CRED Notifications Sent Multiple Times (Affecting Toolset emails too)
Started by: julieP in: Toolset Professional Support |
2 | 5 | 7 years, 3 months ago | ||
Add Parent Post Title to Child Post Title Using cred_save_data Function
Started by: julieP
in: Toolset Professional Support
Problem: I have a CRED form that allows users to create child posts. Using cred_save_data, I would like to create a custom post title using information stored in a custom field on the parent post. Solution: In cred_save_data, you will be able to determine the parent post's ID using get_post_meta to access _wpcf_belongs_parentslug_id. Then you can get the custom field value using get_post_meta, the parent ID, and the custom field slug: ... // get the parent ID from the child postmeta $parent_id = get_post_meta($post_id, '_wpcf_belongs_parentslug_id', true); // get the title from the parent postmeta $custom_title = get_post_meta( $parent_id, 'wpcf-custom-field', true ); ... Relevant Documentation: https://developer.wordpress.org/reference/functions/get_post_meta/ |
2 | 5 | 7 years, 3 months ago | ||
Link to Support Threads
Started by: julieP in: Toolset Professional Support |
2 | 6 | 7 years, 3 months ago | ||
Displaying CRED usermeta in Post Form
Started by: julieP
in: Toolset Professional Support
Problem: I would like to display the value of a User custom field inside a CRED form. Solution: Use the wpv-user shortcode and include the 'wpcf-' prefix before the field slug: User shortcode: [wpv-user field='wpcf-business_name'] Relevant Documentation: https://toolset.com/documentation/user-guides/views-shortcodes/#wpv-user |
2 | 5 | 7 years, 3 months ago | ||
Forum Search Not Returning Any Results
Started by: julieP
in: Toolset Professional Support
Problem: The forum search function is not working. Solution: This issue has been resolved by our systems team. |
2 | 5 | 7 years, 3 months ago |