Ed
In den letzten 30 Tagen erstellte Support-Threads: 0
Lieblings-Forenthemen
This user has no favorite topics.
Forum Topics Created
Status | Thema | Supporter | Stimmen | Artikel | Aktualität |
---|---|---|---|---|---|
Maps is not Applying Filters (Correctly)
Gestartet von: Ed in: Toolset Professional Support |
|
2 | 9 | vor 1 Jahr, 8 Monaten | |
View Limits ACF Repeater Field Output to Only 10 Rows
Gestartet von: Ed in: Toolset Professional Support |
|
2 | 10 | vor 2 Jahren, 7 Monaten | |
Count Attached Images (ACF Gallery)
Gestartet von: Ed in: Toolset Professional Support |
|
2 | 10 | vor 2 Jahren, 7 Monaten | |
Create A Category Tree With Nested Sub Cats
Gestartet von: Ed in: Toolset Professional Support |
|
2 | 13 | vor 2 Jahren, 7 Monaten | |
CPT Archive Using a View Instead of its Custom Archive
Gestartet von: Ed in: Toolset Professional Support |
1 | 2 | vor 2 Jahren, 7 Monaten | ||
Toolset plugin cannot connect to toolset dot com
Gestartet von: Ed in: Toolset Professional Support |
|
2 | 5 | vor 4 Jahren, 2 Monaten | |
Unix Timestamp Conversion for My Time Zone
Gestartet von: Ed in: Toolset Professional Support |
|
2 | 5 | vor 4 Jahren, 3 Monaten | |
Return The Number of Child Posts in a Parent View – Follow Up
Gestartet von: Ed in: Toolset Professional Support |
|
2 | 3 | vor 4 Jahren, 3 Monaten | |
Return The Number of Child Posts in a Parent View
Gestartet von: Ed in: Toolset Professional Support |
|
2 | 4 | vor 4 Jahren, 4 Monaten | |
Specific Custom Fields Keep Getting Unassigned
Gestartet von: Ed in: Toolset Professional Support |
|
2 | 5 | vor 4 Jahren, 5 Monaten | |
Custom Field for Relationship using Gravity Forms Post Creation
Gestartet von: 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 | vor 4 Jahren, 7 Monaten | |
Populate post_content Using Custom Field
Gestartet von: Ed in: Toolset Professional Support |
|
2 | 6 | vor 4 Jahren, 8 Monaten | |
Limit Number of Allowed Words (Not Characters) in a Form Field
Gestartet von: Ed in: Toolset Professional Support |
|
2 | 3 | vor 4 Jahren, 8 Monaten | |
Adding A Static Item To A View
1
2
Gestartet von: 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 | vor 4 Jahren, 11 Monaten | |
Cascading URLs
Gestartet von: Ed in: Toolset Professional Support |
|
2 | 7 | vor 5 Jahren |