Performance FAQ
Quick answers about site speed and optimization.
Speed Basics
Does BuddyX Pro slow down my site?
No. BuddyX Pro is optimized with:
- Minimal CSS/JS files
- Conditional asset loading
- Lazy loading images
- No jQuery where possible
Site speed depends more on hosting, plugins, and images than the theme.
How can I speed up my site?
Top 5 quick wins:
- Install caching plugin – WP Rocket or W3 Total Cache
- Optimize images – Use WebP, compress before upload
- Use CDN – Cloudflare (free tier available)
- Reduce plugins – Deactivate unused ones
- Upgrade hosting – Managed WordPress hosting
What caching plugin do you recommend?
| Plugin | Best For |
|---|---|
| WP Rocket | Easiest setup, best results (paid) |
| LiteSpeed Cache | LiteSpeed servers (free) |
| W3 Total Cache | Advanced users (free) |
Memory Issues
Getting “memory exhausted” errors?
Add to wp-config.php:
define( 'WP_MEMORY_LIMIT', '256M' );
define( 'WP_MAX_MEMORY_LIMIT', '512M' );
How much memory do I need?
| Site Type | Recommended |
|---|---|
| Blog only | 128MB |
| + WooCommerce | 256MB |
| + BuddyPress | 256MB |
| Large community | 512MB |
Image Optimization
Should I use lazy loading?
Yes, it’s enabled by default in WordPress 5.5+. BuddyX Pro enhances it for:
- Post thumbnails
- Avatar images
- Cover images
- Gallery images
What image format is best?
WebP – 30% smaller than JPEG with same quality.
Use plugins like ShortPixel or Imagify to auto-convert.
What size should images be?
| Image Type | Recommended Size |
|---|---|
| Logo | 200x60px (400x120px for retina) |
| Blog featured | 1200x800px |
| Cover image | 1300x200px |
| Product image | 1200x1200px |
Admin/Customizer Slow
Customizer takes forever to load
- Increase PHP memory (see above)
- Temporarily disable heavy plugins
- Reduce Google Fonts loaded
- Consider better hosting
Admin dashboard is slow
Add to wp-config.php to reduce Heartbeat API frequency:
define( 'WP_HEARTBEAT_INTERVAL', 60 );
Or disable in admin:
add_action( 'init', function() {
if ( is_admin() ) {
wp_deregister_script( 'heartbeat' );
}
});
Plugin Impact
How many plugins is too many?
| Count | Status |
|---|---|
| 10-20 | Normal |
| 20-30 | Review each one |
| 30+ | Consolidate |
Quality matters more than quantity. Use Query Monitor plugin to identify slow plugins.
Which plugins use most resources?
Common resource-heavy plugins:
- Page builders (Elementor, Beaver Builder)
- SEO plugins (Yoast, Rank Math)
- Backup plugins (during backup)
- Social sharing plugins
Hosting
What hosting do you recommend?
For community sites (BuddyPress):
- Cloudways
- Kinsta
- WP Engine
Minimum specs:
- 2GB RAM
- SSD storage
- PHP 8.1+
- Object caching (Redis/Memcached)
Related
Need Help? Email support@wbcomdesigns.com
