tohL
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 |
---|---|---|---|---|---|
How to add Query Filter for wpv-control-postmeta?
Started by: tohL in: Toolset Professional Support |
2 | 4 | 6 years ago | ||
CSS problem about button and table
Started by: tohL
in: Toolset Professional Support
Problem: Style the HTML button with CSS: 1) Need to align the buttons to the bottom of a Row. 2) Change the button and text color for the button. 3) The table is not responsive. Solution: It is a custom CSS codes problem, see the solution in details here: https://toolset.com/forums/topic/css-problem-about-button-and-table/#post-1144890 Relevant Documentation: |
2 | 3 | 6 years ago | ||
How to Improve Table-based Grib View by using CSS
Started by: tohL
in: Toolset Professional Support
Problem: Improve the view by using CSS. 1) The table width needs to be standardized and equal. 2) Remove the borderline Solution: This is a CSS problem, see the solution here: https://toolset.com/forums/topic/how-to-improve-table-based-grib-view-by-using-css/#post-1144832 Relevant Documentation: |
2 | 5 | 6 years ago | ||
Dropdown list not function in responsive view (handphone view)
Started by: tohL
in: Toolset Professional Support
Problem: The select field in custom search form does not work with mobile phone. Solution: This is a conflict with custom theme + Bootstrap, you can simply change a theme Relevant Documentation: |
2 | 12 | 6 years ago | ||
How To Align Buttons To The Bottom of a Row
Started by: tohL
in: Toolset Professional Support
Problem: Use CSS codes to setup buttons in grid cells in a horizontal line. Solution: It can be fixed with CSS codes, see details here: https://toolset.com/forums/topic/how-to-align-buttons-to-the-bottom-of-a-row/#post-1142131 Relevant Documentation: |
2 | 5 | 6 years ago | ||
The display does not well arrange
Started by: tohL
in: Toolset Professional Support
Problem: The feature image order does not continue. Solution: It is a CSS problem, I suggest you follow our document to setup the bootstrap grid layout: Relevant Documentation: https://toolset.com/documentation/user-guides/view-layouts-101/#bootstrap |
2 | 3 | 6 years ago | ||
Hide search results until user selects filter
Started by: tohL
in: Toolset Professional Support
Problem: I have a custom search View. I would like to hide the results until a User chooses some filter. Solution: Use custom code to hide all search results until some filter is added. add_filter( 'wpv_filter_query', 'drop_empty_search_query', 10, 3 ); function drop_empty_search_query( $query_args, $view_settings, $view_id ) { $ids = array(1, 2, 3); if (in_array($view_id, $ids)){ if ( // taxonomy filter needs to check for not '0' as well as not empty ( isset($_GET['wpv-wpcf-store-name']) && $_GET['wpv-wpcf-store-name'] != '0' ) || // text search only needs to check for not empty ( isset($_GET['wpv_post_search']) && $_GET['wpv_post_search'] != '' ) ) { } else { $query_args['post__in'] = array(0); } } return $query_args; } Relevant Documentation: |
2 | 12 | 6 years ago | ||
I can not find the database in phpmyadmin
Started by: tohL
in: Toolset Professional Support
Problem: I tried to follow the following tutorial: "How to migrate from a custom database into WordPress". but inside this database don't have the table that I looking for. Solution: The custom fields are stored in your database table "wp_postmeta" Relevant Documentation: https://codex.wordpress.org/Database_Description#Table:_wp_postmeta |
2 | 9 | 6 years, 1 month ago |