Support Notes

How to recreate panel page? Frontend panel not working fix
If you deleted default Panel page from your /wp-admin/ > Pages you can recreate it with this article   1. Add new empty page 2. Add name, set template "Frontend Panel" and click Publish   3. Go to your MyHome Theme >> Users >> General and scroll down 4. Select Panel Page 5. Sav...
Mon, 14 Feb, 2022 at 5:43 PM
How to fix: Redux colors not working
Edit wp-content/plugins/redux-framework/ReduxCore/inc/fields/color_rgba/field_color_rgba.php Find this part: if ( ! wp_script_is( 'redux-field-color-rgba-js' ) ) { wp_enqueue_script( 'redux-field-color-rgba-js', ReduxFramework::...
Tue, 8 Feb, 2022 at 7:43 AM
Server requirements: Memory limit
We strongly recommended to firstly contact your hosting provider to ask if they can assist you in changing memory limit, because every server has little different configuration.   If you wish to change this setting by yourself please try this way: 1. Open the wp-config.php file located in the root of your W...
Tue, 8 Feb, 2022 at 7:43 AM
How to update all premium plugins?
How to update all premium plugins? 1. Visit MyHome Updater 2. Add your purchase code e.g. c84814cd-c79d-4fe4-8f21-5f4ef4c592f9 Here you can find article where to find your Purchase Code https://help.market.envato.com/hc/en-us/articles/202822600-Where-Is-My-Purchase-Code- 3. Click "Checked for Updat...
Mon, 17 Apr, 2023 at 1:46 PM
How to update MyHome?
1. Visit MyHome Updater 2. Add your purchase code e.g. c84814cd-c79d-4fe4-8f21-5f4ef4c592f9 Here you can find article where to find your Purchase Code https://help.market.envato.com/hc/en-us/articles/202822600-Where-Is-My-Purchase-Code- 3. Click "Check for Updates" 4. Important Information When ...
Mon, 17 Apr, 2023 at 1:18 PM
PHP Customization: How to hide property field?
Sample PHP code that hide some of the fields for not logged in users. You can add it to the Child Theme functions.php file   /** * Hiding field when user is not registered */ add_filter( 'myhome_search_form_fields', function ( $attributes ) { // display all fields if logged in if ( is_user_logged_in...
Mon, 14 Feb, 2022 at 5:42 PM
PHP Customization: How to change filtering "AND" condition to "OR" condition (Features example)
1. Please check Field internal ID e.g. Features:     as you can see here it is 12.   Add code you see below this paragraph to your Child Theme. If you do not have child theme installed yet, please check this article: https://tangiblewp.freshdesk.com/support/solutions/articles/101000373821-how-to-use-chil...
Mon, 26 Jun, 2023 at 1:34 PM
How to add user field into registration form
You can add user fields into registration form. You can do it this way:
Mon, 14 Feb, 2022 at 5:41 PM
Customization - How to add phone icon link next to mobile hamburger menu?
This articicle explains how to add phone icon link on your mobile like this:     Add following code at the end /wp-content/themes/myhome-child/functions.php  add_filter('myhome/menu/mobile/logo', function() { $logo = ''; $estate_slider = My_Home_Theme()->set...
Wed, 5 Apr, 2023 at 11:57 AM
CSS Customization: How can i change the font size of information on the top bar ?
    Try this code: .mh-top-header.mh-top-header--default, .mh-top-bar-user-panel__user-info { font-size: 16px!important; line-height: 44px!important; height: auto!important; } .mh-top-header .mh-top-bar-user-panel__main-link:before { top: 12px!important; }   In this arti...
Fri, 24 Jun, 2022 at 8:08 AM