WP Manifestindependent plugin directory
manifest / ecommerce / woocommerce-customizations

Woocommerce Customizations

Custom functionality plugin for WooCommerce. Includes product cat slider shortcode, product filtering, and a live search feature.

by Developing Designs · github.com/joedooley/woocommerce-customizations · website

1stars
0forks

Install

No release zip yet. The repository archive installs, but the folder name will carry the branch suffix and updates will not flow:

wp plugin install https://github.com/joedooley/woocommerce-customizations/archive/refs/heads/master.zip

Readme

Plugin Starter

Barebones starter plugin with composer autoloading and webpack.

Installation

  1. Clone plugin to WordPress plugin directory.
  2. Rename plugin, constants in bootstrap.php, and update all namespaces to your own.
    1. Don't forget to update the namespace in composer.json
  3. Run npm install from plugin root directory.
    1. The postinstall npm script runs composer install for you.
  4. Run npm run watch from plugin root directory to watch for scss and js changes.

Notes

  • All class files in the src directory will be autoloaded by composer.
  • Composer will not autoload PHP files that are not classes unless you add each file to the files array in your composer.json. You will have to run composer update as well.

Read the full README on GitHub →