2eb750881a
* Add missing escape * Revise product structure and introduce woocommerce_blocks_product_grid_item_html filter * Add missing block-button/price styles * Add a themename body class to allow per-theme styling * Add WC style dependencies so block styles are loaded last * Styles with greater specificicity, for 2019 * Default theme styling * SF styles * Ensure dependencies exist * Split sale badge HTML to allow it to be moved more easily * Load stylesheet via WooCommerce filters to ensure they load later than core styles * Make structure in the editor match the product lists on frontend so styles are inherited * Remove quotes around single fontnames (linting rules) * Ensure there is spacing between blocks * Use parent theme name in body class * Fix column alignment in editor by removing inline max width * Put back block styles * Started adding shared styles * Update default styles/add missing shared styles * lint errors * fix indent * No longer a need for shared since we're loading style.css in the editor too * Update tests |
||
---|---|---|
.. | ||
.github | ||
assets | ||
bin | ||
languages | ||
tests | ||
.editorconfig | ||
.eslintignore | ||
.eslintrc.js | ||
.gitattributes | ||
.gitignore | ||
.nvmrc | ||
.stylelintrc.json | ||
.travis.yml | ||
CONTRIBUTING.md | ||
README.md | ||
babel.config.js | ||
composer.json | ||
composer.lock | ||
license.txt | ||
package-lock.json | ||
package.json | ||
phpcs.xml | ||
phpunit.xml.dist | ||
postcss.config.js | ||
readme.txt | ||
renovate.json | ||
webpack.config.js | ||
woocommerce-gutenberg-products-block.php |
README.md
WooCommerce Product Blocks
Feature plugin for WooCoomerce + Gutenberg. Now that the product blocks have been merged into WooCommerce 3.6, this plugin serves as a space to iterate and explore how else WooCommerce might work with the block editor.
If you're just looking to use these blocks, update to WooCommerce 3.6! The blocks are bundled into WooCommerce, and can be added from the "WooCommerce" section in the block inserter.
If you want to see what we're working on for future versions, or want to help out, read on.
Table of Contents
- Installing the stable version
- Installing the development version
- Getting started with block development
- Contributing
- Code Documentation
Installing the stable version
We release a new version of WooCommerce Blocks onto WordPress.org every few weeks, which can be used as an easier way to preview the features.
- Make sure you have WordPress 5.0+ and WooCommerce 3.6+
- The stable version is available on WordPress.org. Download the stable version here.
- Activate the plugin.
Installing the development version
- Make sure you have WordPress 5.0+ and WooCommerce 3.6+
- Get a copy of this plugin using the green "Clone or download" button on the right.
npm install
to install the dependencies.npm run build
(build once) ornpm start
(keep watching for changes) to compile the code.- Activate the plugin.
The source code is in the assets/
folder and the compiled code is built into build/
.
Getting started with block development
Run through the "Writing Your First Block Type" tutorial for a quick course in block-building.
For deeper dive, try looking at the core blocks code, or see what components are available.
Other useful docs to explore:
Vision for the Feature
Users should be able to insert a variety of products from their store (specific products, products in a category, with assorted layouts and visual styles, etc.) into their post content using a simple and powerful visual editor.