Update design docs with RHR competitor structural changes

DESIGN-DOCUMENT.md v1.1:
- Expanded site architecture with Communities and Resources sections
- Updated navigation: Properties | Communities | About | Resources | Contact
- Hero now includes location search dropdown
- Added Service Cards section (Buy/Rent/Sell)
- Separated Residential and Commercial listings on homepage
- Property archive now includes map view (split layout)
- Added Community page template specs
- Added Resources page template specs
- Enhanced footer with office hours, pro logos, license numbers

IMPLEMENTATION-PLAN.md v1.6:
- Added Phase 8: RHR Structural Enhancements
- New templates: page-communities.php, page-resources.php, template-community.php, template-resource.php
- ACF field specs for community and resource pages
- Linked beads issues for tracking
This commit is contained in:
Hanson.xyz Dev
2025-11-30 02:29:02 -06:00
parent 562a0bd5b0
commit 5b629bdbab
4 changed files with 299 additions and 33 deletions
@@ -125,6 +125,8 @@ themes/homeproz/
├── page.php
├── page-about.php
├── page-contact.php
├── page-communities.php # Communities landing page (NEW)
├── page-resources.php # Resources landing page (NEW)
├── search.php
├── single.php
├── single-property.php
@@ -132,6 +134,8 @@ themes/homeproz/
├── template-full-width.php
├── template-landing.php
├── template-blank.php
├── template-community.php # Individual community page (NEW)
├── template-resource.php # Individual resource page (NEW)
├── screenshot.png
├── style.css
└── theme.json # Block editor config
@@ -861,8 +865,70 @@ This implementation plan is a draft for review. Please confirm:
### Phase 7: Testing & Launch - PENDING
### Phase 8: RHR Structural Enhancements - NEW
**Based on Robert Hoffman Realty competitor analysis (November 30, 2025)**
This phase adds structural elements to match competitor site conventions:
#### 8.1 Homepage Enhancements
- [ ] Add location search dropdown to hero section
- [ ] Add service cards section (Buy/Rent/Sell) below hero
- [ ] Separate residential and commercial listings into distinct homepage sections
#### 8.2 Navigation & New Pages
- [ ] Update navigation: Properties | Communities | About | Resources | Contact
- [ ] Create Communities landing page (page-communities.php)
- [ ] Create individual community template (template-community.php)
- [ ] Create community pages: Albert Lea, Austin, Glenville, Emmons, etc.
- [ ] Create Resources landing page (page-resources.php)
- [ ] Create individual resource template (template-resource.php)
- [ ] Create resource pages: Buyer's Guide, Seller's Guide
#### 8.3 Property Archive Enhancements
- [ ] Add map view to property listings page (split layout: map + grid)
- [ ] Add map toggle for mobile view
- [ ] Add property markers to map based on location
#### 8.4 Footer Enhancements
- [ ] Add office hours display
- [ ] Add professional association logos (REALTOR, Equal Housing, MLS)
- [ ] Add license numbers
#### 8.5 ACF Fields for New Features
```
Community Page Fields
├── community_description (wysiwyg)
├── community_hero_image (image)
├── community_population (text)
├── community_zip_codes (text)
├── community_school_district (text)
└── community_attractions (repeater)
Resource Page Fields
├── resource_intro (wysiwyg)
├── resource_sections (repeater)
│ ├── section_title (text)
│ └── section_content (wysiwyg)
└── resource_cta_text (text)
Theme Options (ACF Options Page)
├── office_hours (textarea)
├── license_numbers (textarea)
└── professional_logos (gallery)
```
**Beads Issue Tracking:**
- html-98b: Add location search dropdown to homepage hero
- html-5bw: Add service cards section (Buy/Rent/Sell) to homepage
- html-2fp: Separate Residential and Commercial listings on homepage
- html-7jz: Add Communities section to navigation and create community pages structure
- html-cpd: Add map view to property listings archive page
- html-t8u: Add Resources section to navigation and create resource pages
- html-3nq: Enhance footer with office hours, professional logos, license numbers
---
*Document Version: 1.5*
*Last Updated: November 28, 2025*
*Document Version: 1.6*
*Last Updated: November 30, 2025*
*Prepared by: Hanson.xyz Development Team*
*Changes: Added Phase 8 (RHR Structural Enhancements) based on competitor analysis*