emilyB-2
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 |
---|---|---|---|---|---|
How to add custom query in query filter
Started by: emilyB-2 in: Toolset Professional Support |
2 | 2 | 1 year, 5 months ago | ||
custom post type missing from content selection checkboxes in toolset view
Started by: 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 | 3 years, 4 months ago | ||
using the same post relationship filter multiple times, AND the resulting posts
Started by: emilyB-2 in: Toolset Professional Support |
2 | 6 | 3 years, 9 months ago | ||
wpv-views not updating with ajax filter
Started by: emilyB-2 in: Toolset Professional Support |
2 | 11 | 3 years, 10 months ago | ||
creating 2 post-relationship filters with select2
Started by: 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 | 3 years, 10 months ago | ||
add a text search as the top item in a dropdown search
Started by: 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 | 3 years, 10 months ago | ||
Custom post fields in a views slider return either http or https source URLs
Started by: emilyB-2
in: Toolset Professional Support
Problem: Custom field images in a Views slider are pointing at the wrong URLs. Solution: Update to Types 3.0.7 |
2 | 16 | 6 years, 5 months ago | ||
Custom post archive pagination URLs
Started by: emilyB-2
in: Toolset Professional Support
Problem: The custom post archives set up by WordPress include paginated URLs like: However, the WordPress Archive I am using to display these posts is not paginated. Now these URLs contain the same content, which is bad for SEO. I would like to set my WordPress URL pagination so that these URLs do not exist if they are not needed. Solution: function change_posts_per_page_in_archive( $query ) { if ( is_post_type_archive('book') ) { $query->set( 'posts_per_page', 100 ); } } add_action( 'pre_get_posts', 'change_posts_per_page_in_archive', 999 ); |
2 | 5 | 6 years, 5 months ago | ||
Intermittent Custom Post Archive 404s – Custom Post Slow update & more
Started by: emilyB-2 in: Toolset Professional Support |
3 | 11 | 6 years, 5 months ago | ||
Views spinner URL stuck to local address 192.168.1.170
Started by: emilyB-2 in: Toolset Professional Support |
1 | 2 | 6 years, 6 months ago | ||
Are arguments passed to render_view() available in nested views
Started by: emilyB-2 in: Toolset Professional Support |
2 | 6 | 6 years, 8 months ago | ||
Setting WPML rendering language before calling render_view()
Started by: emilyB-2 in: Toolset Professional Support |
2 | 3 | 6 years, 9 months ago | ||
Translate Post Relationships
Started by: emilyB-2
in: Toolset Professional Support
Problem: Solution: You need to translate all involved Post Types, and each post must be translated. The translated ID will be the ID of the translated Parent Post. |
2 | 5 | 6 years, 11 months ago |