Ian
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 |
---|---|---|---|---|---|
content template not working
Started by: Ian in: Toolset Professional Support |
|
2 | 7 | 4 years, 5 months ago | |
Conflict wit DIVI Overlays
Started by: Ian in: Toolset Professional Support |
|
2 | 5 | 4 years, 10 months ago | |
Append date field to title
Started by: Ian
in: Toolset Professional Support
Problem: Solution: add_action('cred_save_data','func_custom_post_title',10,2); function func_custom_post_title($post_id,$form_data) { if ($form_data['id']==1911) { $date = get_post_meta($post_id, 'wpcf-meeting-date', true); $formated_date = date("F j Y", $date); $title= 'Council Meeting - ' . $formated_date; $args = array('ID' => $post_id, 'post_title' => $title); wp_update_post($args); } } Relevant Documentation: |
|
2 | 8 | 5 years, 1 month ago | |
Pre-select form field based on user role
Started by: Ian in: Toolset Professional Support |
|
2 | 5 | 5 years, 1 month ago | |
Filtering a View by custom field in the current post
Started by: Ian
in: Toolset Professional Support
Problem: I have a View that displays Item posts. I would like to display this View on an Auction post. Both Item and Auction have a custom field "donor". I would like to filter the View of Items by the same donor as the current Auction post. Solution: Use a shortcode attribute in the View's Query Filter configurations, and pass in the field value from the current post using the $current_page operator: [wpv-view name="Your View Name" donor="[types field='donor' item='$current_page' output='raw'][/types]"] Relevant Documentation: |
|
2 | 3 | 5 years, 6 months ago |