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.zipReadme
Plugin Starter
Barebones starter plugin with composer autoloading and webpack.
Installation
- Clone plugin to WordPress plugin directory.
- Rename plugin, constants in
bootstrap.php, and update all namespaces to your own.- Don't forget to update the namespace in
composer.json
- Don't forget to update the namespace in
- Run
npm installfrom plugin root directory.- The postinstall npm script runs
composer installfor you.
- The postinstall npm script runs
- Run
npm run watchfrom plugin root directory to watch forscssandjschanges.
Notes
- All class files in the
srcdirectory 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 runcomposer updateas well.