Toolset Reference Sites are pre-built, fully working websites, which you can use as the starting point for client projects. You can download a reference site, customize it using Toolset, replace the sample content and deliver to your client. In our documentation pages, you can find instructions on how to install a reference site locally and customize it.
When you ask for help or report issues, make sure to tell us which reference site you are using and what you want to achieve.
Problem: I would like to make the home page of the Real Estate Reference Site display Apartment search instead of House search. I would also like to display a Font Awesome icon next to the "bedrooms" field displayed in search results.
Solution: You must go to Toolset > Layouts and change the usage of the Houses Layout to deselect "Blog/Home". Then you would clone the Apartments Archive Layout and replace the WordPress Archive cell with a custom search View, similar to the one in the Houses Archive Layout. The reason you cannot use the Apartments Layout itself here is that it includes a WordPress Archive cell, which is not designed to be used on the main Apartments archive.
To show a Font Awesome icon, add the classes "fa fa-bed" to the "i" tag just before the types field, like this:
<span class="property-detail" title="Number of Bedrooms">
<i class="text-primary fa fa-bed"></i>
[types field="property-bedrooms" format="FIELD_VALUE"][/types]
</span>