Thank you choosing Property Hive to power your next property website. Below you'll find useful links, tips on getting started, and more.

Getting Started

Now that you've installed Property Hive you'll notice a new 'Property Hive' item in the left hand menu of WordPress.

Property Hive menu in WordPress

Configure Property Hive: We recommend that you start by navigating to the 'Settings' area of Property Hive and configuring the options available.

Add Your First Property: See for yourself how easy it is to use Property Hive by adding your first property.

Extending Property Hive

We have a wide range of add ons available to add extra functionality to your website.

Property Hive Free Add Ons

Free Add Ons
From our template assistant add on to a variety of calculators, these free add ons are great additions to any property website.

Website Enhancements
Map View, Radial Search, Property Shortlist, Infinite Scroll, and lots more. Wow your users with the functionality provided with these add ons.

Internal Tools
Add ons aimed to make your life easier and to save you time. Includes Digital Window Displays, Address Lookup and more.

Import and Export
Send your properties to portals like Rightmove, Zoopla and more or import properties from thid party software. These add ons automate the import and export of property data.

Support

We pride ourselves on great support at Property Hive and will always do what we can to help you make create the best site possible. Please find below some useful links relating to our support:

Documentation
We have documentation available on our website covering setup advice, help with theming, and more.

Priority One-To-One Support
If you require help quickly, or wish to discuss a bespoke requirement, then priority support might be best for you. With a license key priced at just £49.99 per year you'll not only get priority support but also updates to any add ons you've purchased.

Our Support Policy
Our Support Policy is available to view here and outlines how you can get in touch, how we will (and won't) help, and how to report bugs.

Additional Information

Need a Theme?
Property Hive does integrate with any new or existing theme. If however you need to get up and running quickly, or just want to have a play before committing, then our free Honeycomb theme might be right for you.

Property Hive Free Honeycomb Theme

Leave a Review
If you've found Property Hive useful we'd love it if you could spare a moment to tell others just how great we are by leaving a review.

Contribute
Property Hive is completely open-source meaning anyone can access and contribute to the code. Fixing bugs and adding functionality can be done by anyone with coding knowledge. Visit us on GitHub to get started.

Our Feature Roadmap
View our feature roadmap to see what's coming up, vote on feature, or submit your own ideas.

id ) { case 'dashboard' : include( 'class-ph-admin-dashboard.php' ); break; case 'plugins' : include( 'class-ph-admin-plugin-updates.php' ); break; case 'users': case 'user': case 'profile': case 'user-edit': include( 'class-ph-admin-profile.php' ); break; } } /** * Include admin files conditionally */ public function disable_propertyhive_meta_box_dragging() { $screen = get_current_screen(); if ( in_array( $screen->id, ph_get_screen_ids() ) ) { //wp_deregister_script('postbox'); } } /** * Remove PropertyHive meta boxes */ public function remove_propertyhive_meta_boxes_from_screen_options() { global $wp_meta_boxes; $screen = get_current_screen(); if ( in_array( $screen->id, array( 'property' ) ) ) { //wp_deregister_script('postbox'); } } public function review_admin_notices() { if ( current_user_can( 'manage_options' ) ) { $propertyhive_review_prompt_due_timestamp = get_option( 'propertyhive_review_prompt_due_timestamp', 0 ); if ( $propertyhive_review_prompt_due_timestamp != '' && $propertyhive_review_prompt_due_timestamp != 0 ) { if ( $propertyhive_review_prompt_due_timestamp < time() ) { echo "

" . __( 'Finding Property Hive useful? Please take a minute to leave us a ★★★★★ review', 'propertyhive' ) . "

Leave a Review No Thanks

"; } } if ( get_option('propertyhive_search_results_page_id', '') == '' && ( !isset($_GET['page']) || ( isset($_GET['page']) && sanitize_title($_GET['page']) != 'ph-installed' && sanitize_title($_GET['page']) != 'ph-settings' ) ) && get_option( 'missing_search_results_notice_dismissed', '' ) != 'yes' ) { echo "

" . __( 'We noticed that you haven\'t assigned a page to be your \'Search Results\' page yet. We recommend that you do this in order to display properties on your site.', 'propertyhive' ) . "

Go To Property Hive Settings Dismiss

"; } if ( get_option('propertyhive_google_maps_api_key', '') == '' && !isset($_POST['propertyhive_google_maps_api_key']) && ( !isset($_GET['page']) || ( isset($_GET['page']) && sanitize_title($_GET['page']) != 'ph-installed' ) ) && get_option( 'missing_google_maps_api_key_notice_dismissed', '' ) != 'yes' ) { echo "

" . __( 'We noticed that you haven\'t entered a Google Maps API key yet. If wishing to display a map on your website it\'s recommended that you create one and enter it.', 'propertyhive' ) . "

Enter Google Maps API Key Dismiss

"; } if ( get_option('propertyhive_license_key', '') != '' && get_option( 'missing_invalid_expired_license_key_notice_dismissed', '' ) != 'yes' && ( !isset($_GET['page']) || ( isset($_GET['page']) && sanitize_title($_GET['page']) != 'ph-installed' && sanitize_title($_GET['page']) != 'ph-settings' ) ) ) { $license = PH()->license->get_current_license(); $output = ''; if ( isset($license['active']) && $license['active'] != '1' ) { $output = __( 'You\'re Property Hive license key is inactive.', 'propertyhive' ); } else { if ( isset($license['expires_at']) && $license['expires_at'] != '' ) { if ( strtotime($license['expires_at']) <= time() ) { // Expired $output = __( 'Your Property Hive license key expired on ' . date("jS F Y", strtotime($license['expires_at'])), 'propertyhive' ) . '. It\'s recommended that you renew it to ensure you continue to receive future updates to add ons you\'ve purchased.'; } elseif ( strtotime($license['expires_at']) > time() && strtotime($license['expires_at']) < (time() + 30 * 24 * 60 * 60) ) { // Expires in less than 30 days $output = __( 'Your Property Hive license key expires on ' . date("jS F Y", strtotime($license['expires_at'])), 'propertyhive' ) . '. It\'s recommended that you renew it to ensure you continue to receive future updates to add ons you\'ve purchased.'; } elseif (strtotime($license['expires_at']) > time()) { // Valid } } } if ( $output != '' ) { echo "

" . $output . "

Go To License Key Settings Dismiss

"; } } } } /** * Handle redirects to welcome page after install. */ public function admin_redirects() { // Setup wizard redirect if ( get_transient( '_ph_activation_redirect' ) ) { delete_transient( '_ph_activation_redirect' ); // Don't do redirect if part of multisite, doing batch-activate, or if no permission if ( is_network_admin() || isset( $_GET['activate-multi'] ) || ! current_user_can( 'manage_propertyhive' ) ) { return; } wp_safe_redirect( admin_url( 'index.php?page=ph-installed' ) ); exit; } } public function prevent_access_to_admin() { global $current_user; $user_roles = $current_user->roles; $user_role = array_shift($user_roles); // Check role, but also AJAX as request to admin-ajax.php will still need to be made if ( !defined( 'DOING_AJAX' ) && $user_role === 'property_hive_contact' ) { exit( wp_redirect( home_url( '/' ) ) ); } } /** * View previously sent email * * @return string */ public function view_email() { global $wpdb; if ( isset( $_GET['view_propertyhive_email'] ) ) { if ( ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'view-email' ) ) { die( 'Security check' ); } if ( isset( $_GET['email_id'] ) ) { $email_log = $wpdb->get_row( "SELECT * FROM " . $wpdb->prefix . "ph_email_log WHERE email_id = '" . esc_sql( (int)$_GET['email_id'] ) . "'" ); if ( null !== $email_log ) { echo apply_filters( 'propertyhive_mail_content', PH()->email->style_inline( PH()->email->wrap_message( $email_log->body ) ) ); } else { die("Email not found"); } } exit; } } /** * Preview email template. * * @return string */ public function preview_emails() { if ( isset( $_GET['preview_propertyhive_email'] ) ) { if ( ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'propertyhive-matching-properties' ) && ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'propertyhive-matching-applicants' ) ) { die( 'Security check' ); } // get the preview email content if ( isset($_GET['property_id']) ) { $email_property_ids = array((int)$_GET['property_id']); } elseif ( isset($_POST['email_property_id']) ) { $email_property_ids = explode(",", sanitize_text_field($_POST['email_property_id'])); } $body = stripslashes(sanitize_textarea_field($_POST['body'])); $body = str_replace("[contact_name]", get_the_title((int)$_GET['contact_id']), $body); $body = str_replace("[property_count]", count($email_property_ids) . ' propert' . ( ( count($email_property_ids) != 1 ) ? 'ies' : 'y' ), $body); if ( strpos($body, '[properties]') !== FALSE ) { ob_start(); if ( !empty($email_property_ids) ) { foreach ( $email_property_ids as $email_property_id ) { $property = new PH_Property((int)$email_property_id); ph_get_template( 'emails/applicant-match-property.php', array( 'property' => $property ) ); } } $body = str_replace("[properties]", ob_get_clean(), $body); } // wrap the content with the email template and then add styles $message = apply_filters( 'propertyhive_mail_content', PH()->email->style_inline( PH()->email->wrap_message( $body ) ) ); // print the preview email echo $message; exit; } } } return new PH_Admin();