Performance FAQ

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:

  1. Install caching plugin – WP Rocket or W3 Total Cache
  2. Optimize images – Use WebP, compress before upload
  3. Use CDN – Cloudflare (free tier available)
  4. Reduce plugins – Deactivate unused ones
  5. Upgrade hosting – Managed WordPress hosting

What caching plugin do you recommend?

PluginBest For
WP RocketEasiest setup, best results (paid)
LiteSpeed CacheLiteSpeed servers (free)
W3 Total CacheAdvanced 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 TypeRecommended
Blog only128MB
+ WooCommerce256MB
+ BuddyPress256MB
Large community512MB

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 TypeRecommended Size
Logo200x60px (400x120px for retina)
Blog featured1200x800px
Cover image1300x200px
Product image1200x1200px

Admin/Customizer Slow

Customizer takes forever to load

  1. Increase PHP memory (see above)
  2. Temporarily disable heavy plugins
  3. Reduce Google Fonts loaded
  4. 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?

CountStatus
10-20Normal
20-30Review 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

Last updated: January 31, 2026