christophS-4
In den letzten 30 Tagen erstellte Support-Threads: 2
Lieblings-Forenthemen
This user has no favorite topics.
Forum Topics Created
Status | Thema | Supporter | Stimmen | Artikel | Aktualität |
---|---|---|---|---|---|
Performance Waterfall admin-ajax
Gestartet von: christophS-4 in: Chat Support |
1 | 2 | vor 5 Jahren, 2 Monaten | ||
Archive not shown correct after update
Gestartet von: christophS-4 in: Toolset Professional Support |
2 | 4 | vor 5 Jahren, 3 Monaten | ||
Custom Field Accordeon
Gestartet von: christophS-4 in: Toolset Professional Support |
2 | 3 | vor 5 Jahren, 4 Monaten | ||
Linebreaks in View
Gestartet von: christophS-4 in: Toolset Professional Support |
2 | 4 | vor 5 Jahren, 4 Monaten | ||
Custom Fields in Gravity Form Dropdown
Gestartet von: christophS-4 in: Toolset Professional Support |
2 | 2 | vor 5 Jahren, 5 Monaten | ||
Pagination Numbers without Activation
Gestartet von: christophS-4 in: Toolset Professioneller Support |
2 | 7 | vor 5 Jahren, 5 Monaten | ||
Fix pagination dots at slider
Gestartet von: 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 | vor 5 Jahren, 5 Monaten | ||
Picture Full Width Conflict
Gestartet von: christophS-4 in: Chat Support |
1 | 2 | vor 5 Jahren, 10 Monaten | ||
Category Grid
Gestartet von: christophS-4 in: Toolset Professioneller Support |
3 | 4 | vor 6 Jahren, 6 Monaten | ||
Layout CSS Editor
Gestartet von: christophS-4 in: Toolset Professioneller Support |
2 | 4 | vor 6 Jahren, 8 Monaten | ||
Tax Featured Image
Gestartet von: 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 | vor 6 Jahren, 8 Monaten | ||
CSS Grid Bootstrap for Mobile
Gestartet von: 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 | vor 6 Jahren, 8 Monaten | ||
Complex Listing of Categories and Subcategories and Products
Gestartet von: 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 | vor 6 Jahren, 8 Monaten | ||
Display Category/Tax Featured Image
Gestartet von: christophS-4 in: Toolset Professioneller Support |
2 | 3 | vor 6 Jahren, 8 Monaten | ||
How to remove Bootstrap buttons from tinyMCE editor
Gestartet von: 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 | vor 6 Jahren, 8 Monaten |