- Created 14 new page template files for trainer/master trainer pages
- Added page-templates.css for consistent layout across all HVAC pages
- Templates use appropriate shortcodes for each page functionality
- Ensures proper content display without sidebars
- Fixes blank page issues on staging
Templates added:
- Trainer profile, event management, certificates
- Email attendees, communication templates/schedules
- Master dashboard, Google Sheets, certificate diagnostics
- Account status pages (pending, disabled, registration pending)
🤖 Generated with Claude Code
Co-Authored-By: Claude <noreply@anthropic.com>
		
	
			
		
			
				
	
	
		
			19 lines
		
	
	
		
			No EOL
		
	
	
		
			712 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			No EOL
		
	
	
		
			712 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * Template Name: Registration Pending
 | |
|  * Description: Template for the registration pending page
 | |
|  */
 | |
| 
 | |
| get_header();
 | |
| ?>
 | |
| <div class="hvac-registration-pending">
 | |
|     <div class="container">
 | |
|         <h1>Registration Pending</h1>
 | |
|         <p>Thank you for registering! Your registration is currently pending approval.</p>
 | |
|         <p>You will receive an email notification once your account has been approved.</p>
 | |
|         <p>If you have any questions, please contact support at <?php echo esc_html(get_option('hvac_support_email', 'support@upskillevents.com')); ?>.</p>
 | |
|         <p><a href="<?php echo esc_url(home_url('/')); ?>" class="ast-button">Return to Home</a></p>
 | |
|     </div>
 | |
| </div>
 | |
| <?php
 | |
| get_footer();
 |