sergiosp
Hi Sergio,
You can try this tweak:
1- Add new value for 'Rent or Sale' custom field
Go to Backend > Content > Fields > edit field 'Rent or Sale' and 2 new value 'Rented' + 'Sold': https://prnt.sc/p104rk
2- Now in the 'Property Fields' of an article, you will see 2 new value added and select your desired value
3- Navigate to Backend > Component > JA Megafilter > Index the current filter so the new values will be updated in filter page
4- Add style for new values
Open the css file: /templates/ja_property/css/custom.css (create this file if it doesn't exist) and add this code:
.com_jamegafilter .product-item .product-item-details .r-type > div.rented,
.com_jamegafilter .product-item .product-item-details .r-type > div.sold {
background: #ff4444;
}
.com_jamegafilter .product-item .product-item-details .r-type > div.rented:after,
.com_jamegafilter .product-item .product-item-details .r-type > div.sold:after {
border-left: 13px solid #ff4444;
}
you can change to the background color as you wish.
Hope this helps.