Skip to content

adrianmomorales/sage-woocommerce

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Sage WooCommerce

Add WooCommerce support to Sage 10.

Installation

Install the composer package.

composer require generoi/sage-woocommerce

Add the package to the cached package manifest.

wp acorn package:discover

Publish the required single-product.blade.php and archive-product.blade.php views.

wp acorn vendor:publish --tag="woocommerce-template-views"

Optionally publish a commented out app/wc-template-hooks.php file for customizing the WC template hooks.

wp acorn vendor:publish --tag="woocommerce-template-hooks"

By default your theme has now declared WooCommerce support. To add support for specific features, add them to your app/setup.php

add_theme_support('wc-product-gallery-zoom');
add_theme_support('wc-product-gallery-lightbox');
add_theme_support('wc-product-gallery-slider');

Filters

/**
 * Add support for WooCommerce Subscription templates.
 */
add_filter('sage-woocommerce/templates', function ($paths) {
    $paths[] = WP_PLUGIN_DIR . '/woocommerce-subscriptions/templates/';
    return $paths;
});

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 86.6%
  • Blade 13.4%