Support Forum › Forums › Zihom – Real Estate WordPress Theme › How to change the 3 default icon features on the property listing preview?
- This topic has 4 replies, 2 voices, and was last updated 2 years, 2 months ago by Billy Nguyen.
-
AuthorPosts
-
July 28, 2022 at 5:34 pm #3385PalawanJoeSupport Expired
On my home page under the featured properties there is N/A at the bottom of each property preview. Most of my properties are land and do not require Bedrooms and Bathroom counts. So, how to remove or change that feature on the on the property preview?
July 29, 2022 at 2:34 pm #3387Hi,
I resolved this issue, please recheck your site.
July 29, 2022 at 10:29 pm #3394PalawanJoeSupport ExpiredYes it is all done i can see it is clear… Could you recomend some other content to install/list on that now emply place on the property preview? Like for isntance the location of the property?
July 30, 2022 at 10:03 am #3396PalawanJoeSupport ExpiredCan the “type” field from the “Parameters” section be placed into the empty field where the 3 N/A fields where?
That way the viewer can see at a glance what type of property the listing is when viewing the preview.
- This reply was modified 2 years, 2 months ago by PalawanJoe. Reason: Adding additional context
July 30, 2022 at 3:15 pm #3403Hi,
You can display the Listing type in this blank position, but you will have to customize the code: https://prnt.sc/DSS0NVvMUtQ1
You need to overwrite the template files zihom/ulisting/loop/grid-style/grid-style-1.php in the child-theme and edit the following code:’
<div class="zihom-meta-extra"> <?php $element_attribute = $element; $element_attribute['type'] = "attribute"; $element_attribute['params']['style_template'] = "ulisting_style_2"; $element_beds = $element_attribute; $element_beds['params']['attribute'] = "bedrooms"; $element_baths = $element_attribute; $element_baths['params']['attribute'] = "bathrooms"; $element_area = $element_attribute; $element_area['params']['attribute'] = "area"; zihom_ulisting_get_attribute_template($model, $element_beds, 'bedrooms'); zihom_ulisting_get_attribute_template($model, $element_baths, 'bathrooms'); zihom_ulisting_get_attribute_template($model, $element_area, 'area'); ?> </div>
and edit this code.
-
AuthorPosts
You must be logged in to reply to this topic.