Ed
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 |
---|---|---|---|---|---|
Maps is not Applying Filters (Correctly)
Started by: Ed in: Toolset Professional Support |
2 | 9 | 1 year, 3 months ago | ||
View Limits ACF Repeater Field Output to Only 10 Rows
Started by: Ed in: Toolset Professional Support |
2 | 10 | 2 years, 1 month ago | ||
Count Attached Images (ACF Gallery)
Started by: Ed in: Toolset Professional Support |
2 | 10 | 2 years, 1 month ago | ||
Create A Category Tree With Nested Sub Cats
Started by: Ed in: Toolset Professional Support |
2 | 13 | 2 years, 1 month ago | ||
CPT Archive Using a View Instead of its Custom Archive
Started by: Ed in: Toolset Professional Support |
1 | 2 | 2 years, 1 month ago | ||
Toolset plugin cannot connect to toolset dot com
Started by: Ed in: Toolset Professional Support |
2 | 5 | 3 years, 8 months ago | ||
Unix Timestamp Conversion for My Time Zone
Started by: Ed in: Toolset Professional Support |
2 | 5 | 3 years, 9 months ago | ||
Return The Number of Child Posts in a Parent View – Follow Up
Started by: Ed in: Toolset Professional Support |
2 | 3 | 3 years, 9 months ago | ||
Return The Number of Child Posts in a Parent View
Started by: Ed in: Toolset Professional Support |
2 | 4 | 3 years, 10 months ago | ||
Specific Custom Fields Keep Getting Unassigned
Started by: Ed in: Toolset Professional Support |
2 | 5 | 3 years, 11 months ago | ||
Custom Field for Relationship using Gravity Forms Post Creation
Started by: Ed
in: Toolset Professional Support
Problem: Solution: The user ended up using this custom code: // Customer to Cut Sheet Relationship From GF Form Submit add_filter( 'gform_advancedpostcreation_post_after_creation_4', 'apc_toolset_setparent', 10, 4 ); function apc_toolset_setparent( $post_id, $feed, $entry, $form ) { toolset_connect_posts( 'customer-cut-order', $entry[21], $post_id ); } // Customer to Cut Sheet Relationship From GF Form Submit Relevant Documentation: |
3 | 11 | 4 years, 1 month ago | ||
Populate post_content Using Custom Field
Started by: Ed in: Toolset Professional Support |
2 | 6 | 4 years, 2 months ago | ||
Limit Number of Allowed Words (Not Characters) in a Form Field
Started by: Ed in: Toolset Professional Support |
2 | 3 | 4 years, 2 months ago | ||
Adding A Static Item To A View
1
2
Started by: Ed
in: Toolset Professional Support
Problem: Solution: A sample code to inject the post is: add_filter( 'wpv_filter_query_post_process', 'jts_inject_draft_promo', 10, 3 ); function jts_inject_draft_promo( $query, $view_settings, $view_id ) { // replace this with the default/draft promo post idate $default_promo_id = 123; if ( $view_id == 784 ) { if ( $query_post_count < 18 ) { $default_promo = get_post( $default_promo_id ); $query->found_post[] = $default_promo; $query->found_count = $query->found_count + 1; } } return $query; } A sample code to conditionally display a different Elementor template for the default post is: [wpv-conditional if="( '[wpv-post-id]' eq '123' )" evaluate="false" ] <div class="col-md-2"> [elementor-template id="278"] </div> [/wpv-conditional] [wpv-conditional if="( '[wpv-found-count]' lt '18' )" ] <div class="col-md-2"> [elementor-template id="867"] </div> [/wpv-conditional] Relevant Documentation: |
2 | 20 | 4 years, 5 months ago | ||
Cascading URLs
Started by: Ed in: Toolset Professional Support |
2 | 7 | 4 years, 6 months ago |