rajivG
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 |
|---|---|---|---|---|---|
|
Colour in Ajax filter
Iniciado por: rajivG
en: 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 | 4 years, 9 months ago | |
|
Spacing and alignment
Iniciado por: rajivG en: Toolset Professional Support |
|
2 | 5 | 4 years, 9 months ago | |
|
Search results
Iniciado por: rajivG
en: 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 | 4 years, 9 months ago | |
|
Comma format
Iniciado por: rajivG
en: 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 | 4 years, 9 months ago | |
|
Colour changes
Iniciado por: rajivG
en: 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 | 4 years, 9 months ago | |
|
Shortcode font size, type
Iniciado por: rajivG
en: 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 | 4 years, 9 months ago | |
|
Numerical operations
Iniciado por: rajivG en: Toolset Professional Support |
|
2 | 5 | 4 years, 9 months ago | |
|
URL from Search Listings
Iniciado por: rajivG en: Toolset Professional Support |
1 | 2 | 4 years, 11 months ago |