WooCommerce Integration
Extensive customization options for WooCommerce through the Combo plugin.
Configuration Options
Configure WooCommerce integration in your config.yml file:
1woocommerce:2theme-support: false # Add theme support3disable-styles: false # Disable WooCommerce styles4disable-resize-images: false # Disable image resizing5disable-payment-gateways: false # Disable payment gateways6disable-setup-widget: false # Disable setup widget7disable-stock: false # Disable stock management8not-purchasable: false # Make products not purchasable9cart-redirect: false # Redirect to cart after add10statistics: 'auto' # Enable statistics11coupons: 'auto' # Enable coupons12per-page: 12 # Products per page13meta-boxes: # Meta boxes to show14postexcerpt: true15woocommerce-product-data: true16woocommerce-product-images: true17woocommerce-coupon-data: true18woocommerce-order-data: true19woocommerce-order-items: true20woocommerce-order-downloads: true21woocommerce-order-actions: true22woocommerce-order-notes: true23product-tabs: # Product tabs to show24general: true25inventory: true26advanced: true27linked_product: true28shipping: true29attribute: true30variations: true
General Options
- theme-support: Add WooCommerce theme support.
- disable-styles: Disable WooCommerce default styles (useful if you have custom styles).
- disable-resize-images: Disable automatic image resizing.
- disable-payment-gateways: Disable payment gateways (useful for development).
- disable-setup-widget: Disable the WooCommerce setup widget in the admin dashboard.
- disable-stock: Disable stock management.
- not-purchasable: Make products not purchasable (useful for catalog-only mode).
- cart-redirect: Redirect to cart page after adding a product.
- statistics: Enable or disable statistics ('auto', true, or false).
- coupons: Enable or disable coupons ('auto', true, or false).
- per-page: Number of products to display per page.
Meta Boxes
Control which meta boxes are displayed in the WooCommerce admin:
1woocommerce:2meta-boxes:3postexcerpt: true # Product excerpt4woocommerce-product-data: true # Product data5woocommerce-product-images: true # Product images6woocommerce-coupon-data: true # Coupon data7woocommerce-order-data: true # Order data8woocommerce-order-items: true # Order items9woocommerce-order-downloads: true # Order downloads10woocommerce-order-actions: true # Order actions11woocommerce-order-notes: true # Order notes
Set any option to false to hide the corresponding meta box.
Product Tabs
Control which product data tabs are displayed in the WooCommerce admin:
1woocommerce:2product-tabs:3general: true # General tab4inventory: true # Inventory tab5advanced: true # Advanced tab6linked_product: true # Linked products tab7shipping: true # Shipping tab8attribute: true # Attributes tab9variations: true # Variations tab
Set any option to false to hide the corresponding product tab.
Example Configuration
Here's an example configuration for a custom WooCommerce setup:
1woocommerce:2theme-support: true # Add theme support3disable-styles: true # Use custom theme styles4per-page: 24 # Show 24 products per page56meta-boxes: # Only show necessary meta boxes7woocommerce-product-data: true8woocommerce-product-images: true910product-tabs: # Only show necessary product tabs11general: true12inventory: true13shipping: true