ecb0f7741b
* Add catalog_visibility param to products api This adds a catalog_visibility=visible option to the product api which will filter out any products that are excluded from the catalog. * Add product_visibility phpunit test * Add catalog_visibility for catalog, search, hidden * Fix util js test The util js test checks for query parameters, so this adds the category_visibility = 'visible' param. * Updated for comments 1. Added collection params 2. moved catalog_visibility default with others |
||
---|---|---|
.. | ||
.github | ||
assets | ||
includes | ||
languages | ||
tests | ||
.editorconfig | ||
.eslintignore | ||
.eslintrc.js | ||
.gitattributes | ||
.gitignore | ||
.nvmrc | ||
.stylelintrc.json | ||
.travis.yml | ||
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 the Gutenberg Products block.
Getting started with the stable version:
- The stable version is available on WordPress.org. Download the stable version here.
- Activate the plugin.
- On Gutenberg posts you should now have a Products block available.
Getting started with the development version:
- Make sure you have:
- the latest version of the Gutenberg plugin and WooCommerce 3.3.1+ installed and active
- OR WordPress 5.0 (beta) and WooCommerce 3.5.1+
- 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.
- On Gutenberg posts & pages you should now have a "Products" block available.
The source code is in the assets/js/products-block.jsx
file and the compiled code is in build/products-block.js
.
Gutenberg Tutorial and Docs: https://wordpress.org/gutenberg/handbook/designers-developers/developers/tutorials/block-tutorial/introducing-attributes-and-editable-fields/
Using API in Gutenberg: https://github.com/WordPress/gutenberg/tree/master/packages/api-fetch
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.