Skip to content

Backgrounds

How-to Guides

Technical References

WooCommerce /

Customizing WooCommerce

Customizing WooCommerce requires careful planning to ensure that the customizations are secure, lightweight, and performant. Customizations can vary widely, from structural changes to template layouts to changing functionality completely such as the checkout flow.

A collection of guides are available for developers building extensions as well as a reference for best practices for customizing WooCommerce.

General best practices

  • When customizing WooCommerce on VIP Go, leverage page caching and object caching as much as possible. VIP Go provides page caching through Varnish and object caching through Memcached. Effective use of these caching layers enables a WooCommerce store to serve more visitors and process more orders while remaining stable, responsive, and performant.
  • Ensure that product imagery is web optimized. Refer to the guidance on image optimization written by WordPress.com and useful for WordPress sites hosted on VIP as well. Optimizing images for the web includes saving the images in the most appropriate file type, in an appropriate size, and with the right amount of compression. VIP Go’s platform also provides a built-in service for image transformation, resizing and compression.
  • If specific content, such as stock-levels, price data, etc., must be loaded dynamically, identify if it is possible to request and store it client-side. If the request for dynamically loaded content requires authentication then the request is best made server-side. In this case, the page would need to always bypass the VIP Go Page Cache.
  • If your WooCommerce customizations include making database queries, seek to optimize those database queries. Slow queries are a major cause of performance issues and degraded user experience.

Last updated: June 04, 2021