christophS-4
Admite hilos creados en los últimos 30 días: 0
Debates favoritos del foro
Este usuario no tiene debates favoritos.
Temas del foro creados
Status | Debate | Supporter | Voces | Mensajes | Caducidad |
---|---|---|---|---|---|
Performance Waterfall admin-ajax
Iniciado por: christophS-4 en: Chat Support |
1 | 2 | hace 5 años, 3 meses | ||
Archive not shown correct after update
Iniciado por: christophS-4 en: Toolset Professional Support |
2 | 4 | hace 5 años, 4 meses | ||
Custom Field Accordeon
Iniciado por: christophS-4 en: Toolset Professional Support |
2 | 3 | hace 5 años, 5 meses | ||
Linebreaks in View
Iniciado por: christophS-4 en: Toolset Professional Support |
2 | 4 | hace 5 años, 5 meses | ||
Custom Fields in Gravity Form Dropdown
Iniciado por: christophS-4 en: Toolset Professional Support |
2 | 2 | hace 5 años, 6 meses | ||
Pagination Numbers without Activation
Iniciado por: christophS-4 en: Toolset Professioneller Support |
2 | 7 | hace 5 años, 6 meses | ||
Fix pagination dots at slider
Iniciado por: christophS-4
en: 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 | hace 5 años, 6 meses | ||
Picture Full Width Conflict
Iniciado por: christophS-4 en: Chat Support |
1 | 2 | hace 5 años, 11 meses | ||
Category Grid
Iniciado por: christophS-4 en: Toolset Professioneller Support |
3 | 4 | hace 6 años, 7 meses | ||
Layout CSS Editor
Iniciado por: christophS-4 en: Toolset Professioneller Support |
2 | 4 | hace 6 años, 9 meses | ||
Tax Featured Image
Iniciado por: christophS-4
en: 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 | hace 6 años, 9 meses | ||
CSS Grid Bootstrap for Mobile
Iniciado por: christophS-4
en: 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 | hace 6 años, 9 meses | ||
Complex Listing of Categories and Subcategories and Products
Iniciado por: christophS-4
en: 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 | hace 6 años, 9 meses | ||
Display Category/Tax Featured Image
Iniciado por: christophS-4 en: Toolset Professioneller Support |
2 | 3 | hace 6 años, 9 meses | ||
How to remove Bootstrap buttons from tinyMCE editor
Iniciado por: christophS-4
en: 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 | hace 6 años, 10 meses |