Add the css in theme options – design – custom colors – custom css or in child theme style.css
Technical how to
Show portrait images in property slider without crop
The code for carousel vertical is in templates\listingslider.php file. Images are resized using resize rule: listing_full_slider. To remove the resize rule for images must edit templates\listingslider.php and replace above resize rules with full. Next must add below css in Theme options – Design – Custom CSS : #carousel-listing { height: 500px!important; } .slick-track { width: 825px!important; height: 500px!important; } .slick-list { […]
How to limit the number of results on advanced search results page
In order to achieve this change number of posts_per_page in wpestate\advanced_search_results.php
How to make child theme changes to work with theme Minifiy option enabled
In order to make child theme changes to work when Minifiy option is enabled, check the following steps: Create style.min.css file by copying css from style.css file and convert it. We created style.min.css using this site: https://cssminifier.com/ Upload style.min.css file in child theme folder. 2. Replace get_template_directory_uri from child theme with get_stylesheet_directory_uri 3. Replace style.css with style.min.css
Technical: Change price value step in price slider
To change the step size in slider you need to open wpestate/js/control.js There you have the function wpestate_enable_slider(); TWICE!! Add the “step code ” in both places after the value data in the slider creation code. Should have something like jQuery(“#” + slider_name).slider({ range: true, min: parseFloat(slider_min), max: parseFloat(slider_max), values: [price_low_val, price_max_val ], step: 1000, […]