fulvioT
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 Block doesn't work well with feed – it's block feed update
Started by: fulvioT in: Toolset Professional Support |
2 | 4 | 3 years, 9 months ago | ||
Move post from one Post Type to another Post Type
Started by: fulvioT in: Toolset Professional Support |
2 | 3 | 4 years, 9 months ago | ||
Error displaying a post
Started by: fulvioT in: Toolset Professional Support |
2 | 2 | 4 years, 9 months ago | ||
I would liek to test a date custom filed
Started by: fulvioT in: Toolset Professional Support |
2 | 3 | 4 years, 9 months ago | ||
Change FONT TITLE POST in a view
Started by: fulvioT in: Toolset Professional Support |
2 | 7 | 4 years, 10 months ago | ||
Display a taxonomies complete list on a page
Started by: fulvioT in: Toolset Professional Support |
2 | 2 | 4 years, 11 months ago | ||
output conditional on woocommerce fields
Started by: fulvioT in: Toolset Professional Support |
2 | 2 | 4 years, 11 months ago | ||
Display a page into a page
Started by: fulvioT in: Toolset Professional Support |
2 | 4 | 6 years, 2 months ago | ||
Alphabetic order of taxonomy
Started by: fulvioT
in: Toolset Professional Support
Problem: I have my taxonomy that I display in alphabetical order with a view. For example: Solution: I assume we are talking about a taxonomy view, which is for querying terms of a custom taxonomy. If it is, there isn't such a built-in feature within Views plugin, the taxonomy view does not support front-end search form or front-end sorting, you can edit your "taxonomy view", click "Screen Options", enable option "Custom Search Settings". In section "Custom Search Settings", you should be able to see below message: But you can try to setup some custom PHP codes to achieve what you want, for example, you can use Views filter hook "wpv_filter_taxonomy_query" to trigger a PHP function, in this function setup the custom filters, more help: https://toolset.com/documentation/programmer-reference/views-filters/#wpv_filter_taxonomy_query https://developer.wordpress.org/reference/classes/wp_term_query/ Relevant Documentation: https://toolset.com/documentation/programmer-reference/views-filters/#wpv_filter_taxonomy_query |
2 | 3 | 6 years, 9 months ago | ||
Test empty value
Started by: fulvioT
in: Toolset Professional Support
Problem: The essential issue here is that the customer wants to check if a specific field is empty on his posts. Solution: To do this you will need to use our conditional shortcode to check for the empty field. Example [wpv-conditional if="( empty($(wpcf-test-field)) )"] Shortcode to display post information. [/wpv-conditional] For more information on checking for empty fields you can take a look at the link below. |
2 | 14 | 6 years, 10 months ago | ||
Hierarchical custom taxonomy links in a Custom HTML widget
Started by: fulvioT
in: Toolset Professional Support
Problem: I would like to use the custom shortcode get_taxonomy_items to display links to hierarchical term archives in a Custom HTML widget, but the term links appear before the widget instead of inside the widget. Solution: When used in a Custom HTML widget, this custom shortcode must be modified as shown: /* modifica per categorie personalizzate */ function get_taxonomy_items_func($atts){ extract( shortcode_atts( array( 'taxonomy_name' => '', ), $atts ) ); $args = array( 'taxonomy' => $taxonomy_name, 'hierarchical' => 1, 'title_li'=>0 ); ob_start(); wp_list_categories( $args ); return ob_get_clean(); } add_shortcode('get_taxonomy_items', 'get_taxonomy_items_func'); Then insert this code in the Custom HTML widget: <ul class="widget_categories"> [get_taxonomy_items taxonomy_name="tribunali"] </ul> Relevant Documentation: @https://toolset.com/forums/topic/how-to-create-a-view-which-displays-taxonomy-as-proper-indented-hierarchy/#post-368307 |
2 | 7 | 6 years, 10 months ago | ||
Boostrap
Started by: fulvioT
in: Toolset Professional Support
Problem: Solution: You can find proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 3 | 6 years, 10 months ago | ||
Layout Category
Started by: fulvioT in: Toolset Professional Support |
2 | 4 | 6 years, 10 months ago | ||
Display two views in a row
Started by: fulvioT in: Toolset Professional Support |
2 | 8 | 6 years, 10 months ago | ||
List of category
Started by: fulvioT in: Toolset Professional Support |
2 | 6 | 6 years, 11 months ago |