rajivG
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 |
---|---|---|---|---|---|
Colour in Ajax filter
Started by: rajivG
in: Toolset Professional Support
Problem: Whenever I change any filter checkbox option, the entire Search and Loop section becomes coloured for 4-5 seconds, and then the results appear. May I know how to prevent the section from becoming coloured for those 4-5 seconds? Solution: You can try below CSS codes: https://toolset.com/forums/topic/colour-in-ajax-filter/#post-2150319 Relevant Documentation: |
2 | 5 | 3 years, 3 months ago | ||
Spacing and alignment
Started by: rajivG in: Toolset Professional Support |
2 | 5 | 3 years, 3 months ago | ||
Search results
Started by: rajivG
in: Toolset Professional Support
Problem: The issue here is that the user wanted pagination numbers with the format Solution: It wont be possible to have your pages labeled as 1-12 of 2,000 results found. You can have it as 12 of 2,000 results found and this is because of the limitations of the shortcodes that will be employed to display this information. They can only display the current results count and the total number of results. The only way i see this being possible is for you to make use of a custom shortcode to minus 12 from the current page results count. This will involve that you pass the following shortcode into your custom shortcode and using your custom shortcode to display the final results. |
2 | 5 | 3 years, 3 months ago | ||
Comma format
Started by: rajivG
in: Toolset Professional Support
Problem: The issue here here is that the user wanted to format the output from their number field with a comma for every thousand. Solution: I've written a simple custom shortcode below to format the numbers for you. // Add Shortcode function wp_format_number( $atts ) { // Attributes $atts = shortcode_atts( array( 'number' => '', ), $atts ); return number_format($atts['number'],0,'.',','); } add_shortcode( 'wp_format_number', 'wp_format_number' ); Add it to your Toolset Custom Code section in Toolset->Settings->Custom Code and activate it. Then you can simply use the shortcode like this [wp_format_number number='[wpv-items-count]'] Relevant Documentation: |
2 | 3 | 3 years, 3 months ago | ||
Colour changes
Started by: rajivG
in: Toolset Professional Support
Problem: I would like to change some colors in custom search select field filters. Solution: You can change the background color using code like this: .wpv-custom-search-filter__input select { background: #fc0; } |
2 | 5 | 3 years, 3 months ago | ||
Shortcode font size, type
Started by: rajivG
in: Toolset Professional Support
Problem: How to use CSS codes to style shortcodes outputs? Solution: You can customize it by HTML + CSS codes, for example: https://toolset.com/forums/topic/shortcode-font-size-type/#post-2131267 Relevant Documentation: |
2 | 7 | 3 years, 3 months ago | ||
Numerical operations
Started by: rajivG in: Toolset Professional Support |
2 | 5 | 3 years, 4 months ago | ||
URL from Search Listings
Started by: rajivG in: Toolset Professional Support |
1 | 2 | 3 years, 5 months ago |