Your account expired support, please renew to get your support.

Support Forum Forums Zihom – Real Estate WordPress Theme How to change the 3 default icon features on the property listing preview?

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #3385
    PalawanJoe
    Support 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?

    #3387

    Hi,

    I resolved this issue, please recheck your site.

    #3394
    PalawanJoe
    Support Expired

    Yes 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?

    #3396
    PalawanJoe
    Support Expired

    Can 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 1 year, 9 months ago by PalawanJoe. Reason: Adding additional context
    #3403

    Hi,

    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.

Viewing 5 posts - 1 through 5 (of 5 total)

You must be logged in to reply to this topic.