simchaH
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 |
---|---|---|---|---|---|
Hiding Title Correctly
Started by: simchaH in: Toolset Professional Support |
2 | 7 | 3 years ago | ||
Create dropdown for filters in legacy view
Started by: simchaH
in: Toolset Professional Support
Problem: Create a "More Filters" in the custom search form. Solution: There isn't such kind of built-in feature within Toolset Views/Blocks plugin, you can consider custom codes, for example https://toolset.com/forums/topic/create-dropdown-for-filters-in-legacy-view/#post-2234865 Relevant Documentation: |
2 | 3 | 3 years ago | ||
Highlight View Item from Post Title in Map Marker
Started by: simchaH
in: Toolset Professional Support
Problem: Solution: Relevant Documentation: |
2 | 3 | 3 years, 1 month ago | ||
Display Single Line Fields Based on Checkboxes in Admin
Started by: simchaH
in: Toolset Professional Support
Problem: The customer had a 'checkboxes' type custom field and wanted to show/hide some other single-line fields, based on those checkboxes. Solution: Guided that conditional display of custom fields is not supported for the values coming from the "checkboxes" type field. So a "checkbox" type field for each checkbox/option would need to be added, separately, which can then control the display of other custom fields. Relevant Documentation: https://toolset.com/course-lesson/conditionally-display-custom-fields-in-wordpress-backend/ |
2 | 5 | 3 years, 1 month ago | ||
Display Admin Column from Related Parent Post Title
Started by: simchaH
in: Toolset Professional Support
Problem: The issue here is that the user wanted to display their parent post information in the Toolset Admin Column for the custom post type. Solution: This can be done by using the code below. //Replace the following /* cptslug - replace with custom post type slug parent - replace with parent cpt slug child - replace with child cpt slug Column Name - replace with the desired column name. */ //Add custom column add_filter('manage_edit-cptslug_columns', 'my_columns_head'); function my_columns_head($defaults) { $defaults['Parent'] = 'Column Name';//edit return $defaults; } //Add rows data add_action( 'manage_cptslug_posts_custom_column' , 'my_custom_column', 10, 2 ); function my_custom_column($column, $post_id ){ switch ( $column ) { case 'Parent': $parent_id = toolset_get_related_post( $post_id, array( 'parent', 'child' ) );//edit if($parent_id){ echo get_the_title( $parent_id ); } else { echo 'No Parent Found'; } break; } } This code can be added to your Toolset custom code settings at Toolset -> Settings -> Custom code and then activate it once you've added the code. |
2 | 7 | 3 years, 1 month ago | ||
conditional display field if parent field checkbox is checked
Started by: simchaH in: Toolset Professional Support |
2 | 3 | 3 years, 1 month ago | ||
conditional statement if shortcode value equals another shortcode value
Started by: simchaH in: Toolset Professional Support |
3 | 5 | 3 years, 1 month ago | ||
Map Marker On Click Popup info
Started by: simchaH in: Toolset Professional Support |
2 | 3 | 3 years, 1 month ago | ||
double shortcode
Started by: simchaH in: Toolset Professional Support |
2 | 3 | 3 years, 1 month ago | ||
automatically input single field line from checkbox
Started by: simchaH in: Toolset Professional Support |
2 | 3 | 3 years, 1 month ago | ||
Place the search bar on top of the map
Started by: simchaH in: Toolset Professional Support |
3 | 7 | 3 years, 1 month ago | ||
Change the layout of the Toolset Maps Distance – Filter widget
Started by: simchaH in: Toolset Professional Support |
2 | 13 | 3 years, 1 month ago | ||
Split: filter for data from the nested CPT in the view
Started by: simchaH in: Toolset Professional Support |
2 | 9 | 3 years, 1 month ago | ||
Split: Designing the view and archive
Started by: simchaH in: Toolset Professional Support |
2 | 11 | 3 years, 1 month ago | ||
Split: display additional info in the map marker popup
Started by: simchaH in: Toolset Professional Support |
2 | 5 | 3 years, 1 month ago |