Skip to main content
View Categories

Customizing Property Details Pages

1 min read

How Property Pages Work #

HomeRunner automatically creates property details pages when installed. Here’s the technical setup:

  1. Custom Post Type: HomeRunner registers a custom post type called “Properties” in WordPress
  2. Automated Data Sync: The system populates and updates property fields with data from your property management system
  3. Template System: All property pages use the same layout template, with each property’s specific content (name, amenities, descriptions, photos, etc.) inserted as variables

This is standard WordPress custom post template architecture.

Your Customization Options #

Option 1: Out-of-the-Box Template (Easiest) #

HomeRunner includes a default property details template that works immediately after installation. No setup required.

This template is not configurable through a visual interface. What you see is what you get. For many users, this is perfectly fine and gets the job done.

Option 2: Shortcodes for Custom Layouts (Middle Ground) #

Here’s where things get more interesting. If you’re comfortable building custom WordPress templates but don’t want to construct everything from scratch, HomeRunner provides a library of shortcodes.

What this means: You can create a custom property template and use ready-made shortcodes to drop in each component:

This approach gives you layout control without having to build dynamic content queries from the ground up. You’re essentially assembling pre-built blocks in whatever order and structure makes sense for your site.

Requirements:

  • Comfort with WordPress template creation
  • Understanding of shortcode implementation
  • Basic PHP knowledge helpful but not always necessary

Option 3: Fully Custom Template (Maximum Control) #

If you have WordPress development experience, you can build a completely custom property details template using native dynamic content queries. This gives you absolute control over every aspect of the page.

Requirements:

  • Strong WordPress development skills
  • Experience with custom post types and template hierarchy
  • Comfort with PHP and WordPress functions

Option 4: CSS Modifications (Surface Level) #

You can add custom CSS to modify the appearance of the default template. This lets you hide elements, adjust colors, change spacing, or tweak typography.

This is the most limited option. You’re working within the existing structure, not changing it.

What’s Coming #

HomeRunner is developing a user-friendly customization interface for property details pages. This will let you configure your property pages directly through the admin panel, without needing development skills or workarounds.

Timeline: Coming soon (specific date to be announced).

Which Option Is Right for You? #

  • Stick with the default if it meets your needs and you want zero hassle
  • Use shortcodes if you want custom layouts but don’t want to build everything from scratch
  • Go fully custom if you have the skills and need complete control
  • Apply CSS if you just need minor visual adjustments

The shortcode approach is probably the sweet spot for most users who want customization but aren’t WordPress developers. You get flexibility without the complexity.


References: