Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Deepak Khokhar

    (@deepakkite)

    @sergiosandoval Unfortunately, there isn’t a direct option to do that. But you can use the below JavaScript code:

    <script>
    		jQuery(document).ready(function() {
    			let bed_filter = jQuery('select[name="filters[bedrooms]"]').html();
    			if(bed_filter){
    				bed_filter = bed_filter.replace("Bed", "Bedroom");
    				jQuery('select[name="filters[bedrooms]"]').html(bed_filter);
    			}
    			let bed_txt = jQuery('.listing-item span.beds').html();
    			if(bed_txt){
    				bed_txt = bed_txt.replace("Bed", "Bedroom");
    				jQuery('.listing-item span.beds').html(bed_txt);
    			}
    			let single_lstng_bed = jQuery('.bed-bath-std span:nth-child(2)').html();
    			if(single_lstng_bed){
    				single_lstng_bed = single_lstng_bed.replace("Bed", "Bedroom");
    				jQuery('.bed-bath-std span:nth-child(2)').html(single_lstng_bed);
    			}
    		});
    	</script>
    Thread Starter sergiosandoval

    (@sergiosandoval)

    Thank you!

    Plugin Author Deepak Khokhar

    (@deepakkite)

    @sergiosandoval Your welcome. Also, we have updated the features on the PRO plugin like gallery lightbox, and video support. You should be able to get it from here

    Thanks for using the plugin ??

    Thread Starter sergiosandoval

    (@sergiosandoval)

    Yup! I’m using the Pro Version

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Changing Bed to Bedrooms’ is closed to new replies.