Ian
Support threads created in the last 30 days: 1
Favorite Forum Topics
This user has no favorite topics.
Forum Topics Created
Status | Topic | Supporter | Voices | Posts | Freshness |
---|---|---|---|---|---|
Display Toolset custom image field in Gridbuilder WP
Started by: Ian in: Toolset Professional Support |
|
2 | 9 | 1 year, 7 months ago | |
Saving a user avatar
Started by: Ian in: Toolset Professional Support |
|
2 | 4 | 2 years, 4 months ago | |
Display Toolset custom image field in Gridbuilder WP
Started by: Ian in: Toolset Professional Support |
|
2 | 2 | 2 years, 4 months ago | |
Storing latitude and longitude coordinates in an array
Started by: Ian in: Toolset Professional Support |
|
2 | 2 | 2 years, 9 months ago | |
Conditional display of repeating field
Started by: Ian in: Toolset Professional Support |
2 | 5 | 2 years, 12 months ago | ||
New link only to same term
Started by: Ian in: Toolset Professional Support |
|
2 | 2 | 2 years, 12 months ago | |
Featured Image ID
Started by: Ian in: Toolset Professional Support |
|
2 | 3 | 3 years ago | |
Show search result in a view
Started by: Ian in: Toolset Professional Support |
|
2 | 2 | 3 years, 6 months ago | |
previous next shortcode
Started by: Ian
in: Toolset Professional Support
Problem: The issue here is that the user wanted to remove the direction chevrons from the pagination generated with the following shortcodes. Solution: Under the format attribute you can customize the text that is placed here. If you look you will notice that the next and previous chevrons are also written here. These can be removed and they won't appear on the frontend. |
|
2 | 5 | 3 years, 7 months ago | |
Highlighting items in a repeating field group at a specific time
Started by: Ian in: Toolset Professional Support |
|
2 | 6 | 4 years, 1 month ago | |
content template not working
Started by: Ian in: Toolset Professional Support |
|
2 | 7 | 4 years, 3 months ago | |
Conflict wit DIVI Overlays
Started by: Ian in: Toolset Professional Support |
|
2 | 5 | 4 years, 7 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 | 4 years, 11 months ago | |
Pre-select form field based on user role
Started by: Ian in: Toolset Professional Support |
|
2 | 5 | 4 years, 11 months 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, 4 months ago |