3.1 KiB
3.1 KiB
Testing notes and ZIP for release 8.0.0
Zip file for testing: woocommerce-gutenberg-products-block.zip
Feature plugin and package inclusion in WooCommerce
Enhancement: Footer Template Parts use now <footer>
instead of <div>
and Header uses <header>
instead of <div>
. (6596)
- Go to a WooCommerce page and view the source.
- Check the header is wrapped in a
<header>
tag, not in a<div>
tag. - Check the footer is wrapped in a
<footer>
tag, not in a<div>
tag.
Enhancement: Replace the ProductTag tax_query field to be the term_id instead of the id. (6585)
- Create a page and add a
Products by Tag
block. - Check that is rendered correctly in the editor.
- Save the page and check that is rendered correctly in the frontend.
Fix: Ensure WooCommerce templates show correct titles. (6452)
- Install and activate the Extendable theme.
- Go to
Appearance → Editor → Browse all templates
. - Make sure you have
archive-product.html
in your theme's templates directory. - Notice the templates shows the correct title and description and not the file name like e.g.
archive-product.html
.
Feature plugin only
Enhancement: Make form components require onChange and have a default value. (6636)
- Create a new page with
All Products
block,Filter Products By Price
block andFilter Products By Attribute
block. - Go to the
All Products
page, ensure you're able to sort products and filter products by price and attribute. - Add a product to the cart.
- Go to the
Checkout
block page. - Ensure you're able to use radio controls.
Fix: Correctly calculate taxes for local pickups. (6631)
- Set store address to
123 Test Street, 90210 Beverly Hills, CA, USA
. - Enable taxes.
- Add a
"Standard" tax rates
in US, CA and set it to10%
. - Add the following shipping methods:
Flat rate
for $10 andLocal pickup
for free. - Add a payment option (e.g.,
Cash on delivery
). - Add a physical product to the cart.
- Use an outside state address on the front-end. (e.g.,
60 29th Street #343, 35005 Birmingham, AL, USA
). - Go to the
Cart
block and select theLocal pickup
shipping method. Check that we have a tax of 10% applied. - Go to the
Checkout
block and select theLocal pickup
shipping method. Check that we have a tax of 10% applied. - Place your order. Check on the
Order received
page that the displayed tax is actually added to the total. - Go to
Edit Order
. Check that taxes were applied correctly there as well. - On the
Checkout
again, selectFlat rate
, using the same external address, and make sure taxes are not applied.