Support Notes

How to display "sort by" options on mobile?
By default sorting filers (NEWEST POPULAR PRICE (HIGH TO LOW) PRICE (LOW TO HIGH)) are not displayed on the mobile. If you wish to turn it on, please add this CSS to your additional CSS   @media (max-width: 1023px) { .mh-filters { display: block!important; height: auto!important; float: left!important; widt...
Thu, 23 Jun, 2022 at 12:27 PM
Backend "Properties Table" columns - How it works?
By default Properties table displays 2 columns   The 2 columns are 2 first text fields from here  
Thu, 10 Feb, 2022 at 1:24 PM
CSS Customization - How to display 4 Search Fields on the dynamic search form in 1 row?
1. Add this CSS below (In this article you can find information how to add custom CSS to any WordPress Theme: How to add CSS code that is future update compatible)   @media (min-width: 768px) { .mh-search-horizontal .mh-search .mh-search__element { width: 50%!important; } } @media (min-width: 1023px) { .mh-sear...
Thu, 23 Jun, 2022 at 12:28 PM
CSS customization - how to change "Featured Star" on the property card to any image?
This article show how to change favorit star into any image e.g. Please use this CSS Code .mh-thumbnail__featured i { display: none!important; } .mh-thumbnail__featured { background: url(https://via.placeholder.com/50x50)!important; width:50px!important; height:50px!important; background-repeat: no-repeat!imp...
Thu, 23 Jun, 2022 at 12:28 PM
PHP Customization - how to check if property is featured?
You can use function below to check on the single property page if it is featured:   <?php if ( $myhome_estate->is_featured() ) : ?> Is Featured <?php endif; ?>   You can use it e.g. in the /wp-content/themes/myhome/templates/content-single-estate.php file
Thu, 10 Feb, 2022 at 1:26 PM
How to configure "Scroll to top" button via WPFront Scroll Top Plugin
If you wish add scroll to top button, we recommend WPFront Scroll Top plugin https://wordpress.org/plugins/wpfront-scroll-top/    1. Add new plugin 2. Install and activate WPFront Scroll Top plugin 3. Visit plugin page 4. Enable 5. Save changes It will be displayed when you scroll down
Thu, 10 Feb, 2022 at 1:26 PM
How to remove blog post date label on the blog cards?
This article explains how to remove date from the post cards e.g. You can use this CSS:   .mh-post-grid .mh-caption__inner { display: none!important; }   In this article you can find information how to add custom CSS to any WordPress Theme: How to add CSS code that is future update compatible
Sun, 19 Mar, 2023 at 11:02 AM
Paid customization services
Unfortunately our team are not doing any paid customization services because we are fully focused on theme development and official updates. If you need to order customization services, we recommend searching for specialist on https://studio.envato.com/
Tue, 8 Feb, 2022 at 7:42 AM
How to import / export theme settings (Redux Theme Options) ?
A. Export 1. Please visit your /wp-admin/ 2. Please visit MyHome Theme > Import / Export 3. Click Download Data File   B. Import 1. Open this file e.g. via notepad 2. Click CTRL + A to "select everything" and CTRL + C to Copy it 3. Click "Import from File" 4. Paste your code ...
Thu, 10 Feb, 2022 at 1:28 PM
PHP Customization - how to shorten property title on the property cards (e.g. max 15 words)?
1. Find plugins/myhome-core/includes/estates/Estate.php 2. Backup the file 3. Find get_name function public function get_name() { return $this->post->post_title; } 4. Change it (15 is a limit of a words) public function get_name() { $text = $this->post->post_title; $limit = 15; ...
Tue, 8 Feb, 2022 at 7:42 AM