christophS-4
Fils de soutien créés au cours des 30 derniers jours : 0
Sujets de forum favoris
This user has no favorite topics.
Sujets de forum créés
Status | Sujet | Supporter | Voix | Publications | Nouveauté |
---|---|---|---|---|---|
Performance Waterfall admin-ajax
Commencé par : christophS-4 in: Chat Support |
1 | 2 | Il y a 5 années et 3 mois | ||
Archive not shown correct after update
Commencé par : christophS-4 in: Toolset Professional Support |
2 | 4 | Il y a 5 années et 4 mois | ||
Custom Field Accordeon
Commencé par : christophS-4 in: Toolset Professional Support |
2 | 3 | Il y a 5 années et 5 mois | ||
Linebreaks in View
Commencé par : christophS-4 in: Toolset Professional Support |
2 | 4 | Il y a 5 années et 5 mois | ||
Custom Fields in Gravity Form Dropdown
Commencé par : christophS-4 in: Toolset Professional Support |
2 | 2 | Il y a 5 années et 6 mois | ||
Pagination Numbers without Activation
Commencé par : christophS-4 in: Toolset Professioneller Support |
2 | 7 | Il y a 5 années et 6 mois | ||
Fix pagination dots at slider
Commencé par : christophS-4
in: Toolset Professional Support
Problem: The issue here is that the user has their pagination dots but the dots are sliding with the slider. Solution: The solution to this is that you can copy and paste your pagination shortcode to the Output Editor section of your view. |
2 | 8 | Il y a 5 années et 6 mois | ||
Picture Full Width Conflict
Commencé par : christophS-4 in: Chat Support |
1 | 2 | Il y a 5 années et 11 mois | ||
Category Grid
Commencé par : christophS-4 in: Toolset Professioneller Support |
3 | 4 | Il y a 6 années et 7 mois | ||
Layout CSS Editor
Commencé par : christophS-4 in: Toolset Professioneller Support |
2 | 4 | Il y a 6 années et 9 mois | ||
Tax Featured Image
Commencé par : christophS-4
in: Toolset Professioneller Support
Problem: For example: [types termmeta='kategorie-featured-image' alt='%%ALT%%' title='%%TITLE%%' width='600' height='300' align='center' resize='crop'][/types] You can find proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 5 | Il y a 6 années et 9 mois | ||
CSS Grid Bootstrap for Mobile
Commencé par : christophS-4
in: Toolset Professioneller Support
Problem: The issue here is that the user wanted to modify the bootstrap default breakpoints. Solution: The user was able to override the default bootstrap by writing his own custom css. Example @media screen and (max-width: 479px) { .col-xxs-12 {float: left;} .col-xxs-12 {width: 100% !important;} } |
2 | 5 | Il y a 6 années et 9 mois | ||
Complex Listing of Categories and Subcategories and Products
Commencé par : christophS-4
in: Toolset Professioneller Support
Problem: I would like to create a Product Category archive that lists the top level categories with links to those category archives. On those archives, I would like to show a list of subcategories as well as a list of products in the current category (but not in the subcategories). Solution: add_filter( 'wpv_filter_query', 'only_term_filter',99,3 ); function only_term_filter( $query_args, $views_settings, $view_id) { $view_ids = array( 12345 ); if (in_array($view_id, $view_ids)){ foreach($query_args['tax_query'] as $tq) { if( isset( $tq['taxonomy'] ) ){ $tax = $tq['taxonomy']; $term = get_term_by('id', $tq['terms'], $tax); $termChildren = isset( $term->term_id ) ? get_term_children($term->term_id, $tax) : null; $query_args['tax_query'][] = array( 'taxonomy' => $tax, 'field' => 'id', 'terms' => $termChildren, 'operator' => 'NOT IN' ); } } } return $query_args; } Relevant Documentation: |
2 | 12 | Il y a 6 années et 9 mois | ||
Display Category/Tax Featured Image
Commencé par : christophS-4 in: Toolset Professioneller Support |
2 | 3 | Il y a 6 années et 9 mois | ||
How to remove Bootstrap buttons from tinyMCE editor
Commencé par : christophS-4
in: Toolset Professioneller Support
Problem: add_filter( 'mce_buttons_3', 'remove_bootstrap_buttons', 999 ); function remove_bootstrap_buttons($buttons) { return array(); } add_filter( 'mce_buttons', 'remove_toggle_button', 999 ); function remove_toggle_button($buttons) { $remove = array( 'css_components_toolbar_toggle' ); return array_diff( $buttons, $remove ); } Solution: |
2 | 6 | Il y a 6 années et 10 mois |