Support Notes

How to create unique term page and redirect old link to it?
1. Add new page 2. Edit via builder 3. Name a page, publish and edit via Front-end editor   4. Add "Search Form - Property Listings" 4. Configure own way in the "General" tab and then set default value 5. Since now the page will display only Chicago listings 6. You can further...
Mon, 14 Feb, 2022 at 5:40 PM
How to hide location tab on the single property backend edition page.
 Please add this kind to your MyHome Child Theme functions.php file. If you are not familiar with Child Themes please check this article - How to use Child Theme? How to change files (php / css / js) and keep theme future update compatibility?   add_action('admin_head', 'myhome_hide_location_tab...
Fri, 24 Jun, 2022 at 8:09 AM
Customization: How to change header logo link
1. This article explains how to change logo link 2. Make sure MH Position is set - How to set Menu "MH Position" to make all MyHome Theme > Header options works correctly? 3. Find \wp-content\themes\myhome\includes\menu\class-myhome-menu.php file 4. Backup file 5. Edit this part: ...
Fri, 24 Jun, 2022 at 8:10 AM
CSS Customization: How to hide post date on the post card and single post page?
To hide post date on the property card:   Please add this CSS code   .mh-post-grid .mh-caption { 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 If you wish also to hid...
Fri, 24 Jun, 2022 at 8:10 AM
How to add SEO H1 on any page
You can modify any heading tag or add new heading somewhere and select H1:
Mon, 14 Feb, 2022 at 5:39 PM
How to decrease menu padding space via CSS?
This CSS will reduce all paddings to 0. You can change 0 to any number to make your unique spacing: @media (min-width: 1023px) { .logo_link { padding-right: 0px!important; margin-right: 0px!important; } html body #mega_main_menu.mh-primary > .menu_holder > .menu_inner > ul > li[class*="...
Fri, 24 Jun, 2022 at 8:11 AM
CSS Customization - How to customize map pin icon?
Would you like to change default map icon (pin)?   1. This code below will change default icon to any image (sample 25x25px purple box ) and width / height of your image  .mh-map-pin .flaticon-pin:before { content: url(https://dummyimage.com/25x25/ff00ff/fff.jpg)!important; } .mh-map-pin, .mh-map-p...
Wed, 16 Feb, 2022 at 11:06 AM
CSS Customization - Top Bar sticky
By default it is not possible to have sticky top bar, hovewer you can overwalk it via custom CSS code   @media (min-width:1023px) { body:not(.admin-bar) .mh-fixed-menu { position: fixed!important; width: 100%!important; z-index: 999!important; top: 36px!important; } body:not(.adm...
Fri, 24 Jun, 2022 at 8:11 AM
CSS Customization - how to change color of post text link and add "link icon" to all links
This article explains how to change all post links into design like this:     You can use CSS code below:  .post-content a:after { font-family: FontAwesome; content: "\f08e"; display: inline-block; padding: 0 3px; vertical-align: middle; } .post-content a:hover { color:#29aae3!imp...
Fri, 24 Jun, 2022 at 8:12 AM
How to add custom link to user menu with jQuery
We will add "Link Name" to Google.com at the end of menu   2. Open /wp-content/themes/myhome/footer.php file 3. Backup this file for security reason 4. Add this code before </body> <script> jQuery(window).on("load", function () { $(".mh-a...
Mon, 14 Feb, 2022 at 5:37 PM