LennyS7960
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 |
---|---|---|---|---|---|
Toolset for Event registration with payment
Started by: LennyS7960 in: Toolset Professional Support |
|
2 | 5 | 3 years, 4 months ago | |
Toolset Forms Commerce payment methods
Started by: LennyS7960 in: Toolset Professional Support |
|
2 | 3 | 3 years, 5 months ago | |
sorting taxonomy terms in a content template
Started by: LennyS7960 in: Toolset Professional Support |
|
2 | 8 | 3 years, 9 months ago | |
Multiple line field buggy
Started by: LennyS7960 in: Toolset Professional Support |
|
2 | 8 | 3 years, 9 months ago | |
View filter inline
Started by: LennyS7960 in: Toolset Professional Support |
|
2 | 13 | 4 years, 1 month ago | |
Taxonomy order by Main-taxonomy; sub-taxonomy.
Started by: LennyS7960 in: Toolset Professional Support |
|
2 | 3 | 4 years, 1 month ago | |
Filter using slider
Started by: LennyS7960 in: Toolset Professional Support |
|
2 | 3 | 4 years, 1 month ago | |
Filter view page without sub-taxonomy.
Started by: LennyS7960
in: Toolset Professional Support
Problem: Solution: The can be done by using the hook below. add_filter( 'wpv_filter_taxonomy_frontend_search_available_terms', 'prefix_modify_list_of_terms', 10, 3 ); function prefix_modify_list_of_terms( $terms, $taxonomy, $view_id ) { $curated_terms = array(); if($view_id == 478 && $taxonomy =='category'){ foreach ( $terms as $term ) { if ( $term->parent == 0 ) { $curated_terms[] = $term; } } } return $curated_terms; } In order to get this to work for you, you will need to change 478 to the ID of your view and 'category' to the slug of the taxonomy that you want to remove the child terms for. Add the code to your Toolset custom codes in Toolset -> Settings -> Custom Code and ensure that you've activated it. Relevant Documentation: For more information on this hook you can take a look at the link below. |
|
2 | 3 | 4 years, 1 month ago | |
Custom date format for inline fields.
Started by: LennyS7960
in: Toolset Professional Support
Problem: The issue here is that the user is using the inline fields option and wanted to use a custom format for their date field. Solution: |
|
2 | 3 | 4 years, 2 months ago | |
Multiple conditions
Started by: LennyS7960
in: Toolset Professional Support
Problem: Solution: Please check the following screenshot: https://nimb.ws/4dKhP2 Relevant Documentation: |
|
2 | 6 | 4 years, 2 months ago | |
Remove date posted and category from single page.
Started by: LennyS7960 in: Toolset Professional Support |
|
2 | 3 | 4 years, 2 months ago | |
Create a table with a custom search, filtering, pagination.
Started by: LennyS7960 in: Toolset Professional Support |
|
2 | 3 | 4 years, 2 months ago | |
Kayo theme missing icon with Toolset
Started by: LennyS7960
in: Toolset Professional Support
Problem: When Toolset Types is installed with Kayo theme, the themes back to top button arrow icon is displayed as a rectangle box. Solution: Kayo theme is using Font Awesome version 4, please try these in your website: https://toolset.com/forums/topic/kayo-theme-missing-icon-with-toolset/#post-1975411 Relevant Documentation: |
|
2 | 7 | 4 years, 2 months ago | |
WP Block editor not showing up for custom post archive.
Started by: LennyS7960
in: Toolset Professional Support
Problem: The issue here is that the user is unable to edit their custom archives using the Block editor. Solution: Secondly ensure that your theme isn't enabling the classic editor either. These instructions are with the assumption that you are using Toolset Blocks. |
|
2 | 3 | 4 years, 2 months ago |