emilyB-2
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 |
---|---|---|---|---|---|
How to add custom query in query filter
Gestartet von: emilyB-2 in: Toolset Professional Support |
|
2 | 2 | vor 1 Jahr, 12 Monaten | |
custom post type missing from content selection checkboxes in toolset view
Gestartet von: emilyB-2
in: Toolset Professional Support
Problem: Selecting a specific custom post type from the "This view will display - post types:" that was previously selectable, but is now not displayed as an option anymore. Solution: Please make sure the post type in question is not set to public. Relevant Documentation: |
|
3 | 4 | vor 3 Jahre, 11 Monaten | |
using the same post relationship filter multiple times, AND the resulting posts
Gestartet von: emilyB-2 in: Toolset Professional Support |
|
2 | 6 | vor 4 Jahre, 4 Monaten | |
Toolset chat support ticket by emilyB-2 – 1615212406
Gestartet von: emilyB-2 in: Chat Support |
|
1 | 2 |
vor 4 Jahre, 4 Monaten
|
|
wpv-views not updating with ajax filter
Gestartet von: emilyB-2 in: Toolset Professional Support |
|
2 | 11 | vor 4 Jahre, 5 Monaten | |
creating 2 post-relationship filters with select2
Gestartet von: emilyB-2
in: Toolset Professional Support
Problem: Setup two post type relationship filter in the search form. Solution: It needs custom codes, for example: https://toolset.com/forums/topic/creating-2-post-relationship-filters-with-select2/#post-1974213 Relevant Documentation: |
|
3 | 7 | vor 4 Jahre, 5 Monaten | |
Toolset chat support ticket by emilyB-2 – 1614350404
Gestartet von: emilyB-2 in: Chat Support |
|
1 | 2 |
vor 4 Jahre, 5 Monaten
|
|
add a text search as the top item in a dropdown search
Gestartet von: emilyB-2
in: Toolset Professional Support
Problem: One of the ways I see this possible is to make use of the select2 options. However in order to use this we will need to enqueue the scripts for it. Firstly you will need to add the following to your site in the Toolset custom code section at Toolset ->Settings-> Custom Code and activate it once added. wp_register_style( 'select2', 'https://cdn.jsdelivr.net/npm/select2@4.1.0-rc.0/dist/css/select2.min.css' ); wp_enqueue_style('select2'); wp_register_script( 'select2js', 'https://cdn.jsdelivr.net/npm/select2@4.1.0-rc.0/dist/js/select2.min.js', null, null, true ); wp_enqueue_script('select2js'); Secondly you will need to add the following to your view in the JS section. jQuery(document).ready(function() { jQuery('#wpv_control_select_wpcf-artist-id').select2(); }); Where you will replace the "wpcf-artist-id" section of the select id with the full slug of your custom field. So the full format should look like. #wpv_control_select_wpcf-{field-slug} Relevant Documentation: |
|
2 | 13 | vor 4 Jahre, 5 Monaten |