bartv-9
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 |
---|---|---|---|---|---|
Export custom post type and it's relationships
Started by: bartv-9 in: Toolset Professional Support |
2 | 5 | 5 years, 4 months ago | ||
View select all in filter and live search
Started by: bartv-9
in: Toolset Professional Support
Problem: I have multiple blocks with taxonomy filters in a view by checkboxes. I want to offer a 'select all' option per block. Solution: There isn't such a built-in feature within Toolset Views plugin, it needs custom JS codes, for example: https://toolset.com/forums/topic/view-select-all-in-filter-and-live-search/#post-1302767 Relevant Documentation: |
2 | 7 | 5 years, 6 months ago | ||
Filters inside view only to show available values
Started by: bartv-9 in: Toolset Professional Support |
2 | 8 | 5 years, 6 months ago | ||
Google map/ current location visitor / focused on that location / no items found
Started by: bartv-9 in: Toolset Professional Support |
3 | 10 | 5 years, 8 months ago | ||
Preselect image media library when clicking edit image (custom field)
Started by: bartv-9 in: Toolset Professional Support |
2 | 4 | 5 years, 8 months ago | ||
Post reference returns empty
Started by: bartv-9
in: Toolset Professional Support
Problem: Display relation custom reference field "product of the day" Solution: I assume the custom reference field "product of the day" is using field slug "product-of-the-day", please try to modify your shortcode as below: [wpv-post-title item="@product-of-the-day.parent"] Relevant Documentation: |
2 | 10 | 5 years, 8 months ago | ||
Alphabetic order autosave in taxonomy
Started by: bartv-9
in: Toolset Professional Support
Problem: I would like to create a list of posts sorted by first letter, but the code I found on the site doesn't seem to work. Solution: Use the following custom code and make sure the taxonomy is listed as "flat", not "hierarchical". add_action('save_post','cyb_set_first_letter'); function cyb_set_first_letter( $post_id ){ // skip autosave if( defined('DOING_AUTOSAVE') && DOING_AUTOSAVE ) { return; } // limit to term post type if( isset($_POST['post_type']) && 'flowers' != $_POST['post_type'] ) { return; } // Check permissions if( !current_user_can('edit_post', $post_id ) ) { return; } //Assign first letter of the title as alphabet term if( isset($_POST['post_title']) ) { //TODO: skip no-sense words, characters, etc $alphabet_term = mb_strtolower( mb_substr( $_POST['post_title'], 0, 1 ) ); wp_set_post_terms( $post_id, $alphabet_term, 'alphabet' ); } } |
2 | 11 | 5 years, 9 months ago | ||
Uncaught TypeError: Cannot read property 'settings' of undefined admin
Started by: bartv-9 in: Toolset Professional Support |
2 | 9 | 5 years, 9 months ago |