Common Display Problems
Issue 1: Blank Page or White Screen
Causes:
- PHP fatal error
- Memory limit exceeded
- Plugin conflict
Solutions:
// Enable WordPress debug mode
define('WP_DEBUG', true);
define('WP_DEBUG_LOG', true);
define('WP_DEBUG_DISPLAY', false);
// Increase memory limit
define('WP_MEMORY_LIMIT', '256M');
Issue 2: Form Not Showing on Page
Check:
- ✅ Shortcode syntax correct:
[attrua_login]
- ✅ Page is published, not in draft
- ✅ No caching issues (clear cache)
- ✅ Theme supports shortcodes in content
Issue 3: Styling Broken or Missing
// Check if CSS files loading
View Page Source → Search for "attrua"
// Clear all caches
- Browser cache
- WordPress cache plugin
- Server cache (if any)
- CDN cache
Issue 4: Form Shows But Submit Doesn’t Work
- Check JavaScript console for errors
- Verify AJAX URL is correct
- Test with different browser
- Disable JavaScript minification temporarily
Quick Fix Checklist
- ☑️ Plugin activated?
- ☑️ WordPress updated?
- ☑️ Theme compatible?
- ☑️ Caching disabled during testing?
- ☑️ Browser console errors checked?
- ☑️ Test with default WordPress theme?