Updated Release Testing Instructions WooCommerce 4.7 (markdown)
parent
2e7f09e83d
commit
d92971b745
|
@ -17,7 +17,27 @@ WooCommerce 4.7 includes:
|
||||||
|
|
||||||
### WooCommerce Admin testing instructions:
|
### WooCommerce Admin testing instructions:
|
||||||
|
|
||||||
Please use [the same testing instructions that we used for testing WooCommerce Admin in WooCommerce 4.6](https://github.com/woocommerce/woocommerce/wiki/Release-Testing-Instructions-WooCommerce-4.6#woocommerce-admin-improvements). If possible, please perform more of the exploratory testing around the flows listed there.
|
Please use [the same testing instructions that we used for testing WooCommerce Admin in WooCommerce 4.6](https://github.com/woocommerce/woocommerce/wiki/Release-Testing-Instructions-WooCommerce-4.6#woocommerce-admin-improvements). If possible, please perform more of the exploratory testing around the flows listed there.
|
||||||
|
|
||||||
|
#### WooCommerce Payments setup from Inbox notification
|
||||||
|
|
||||||
|
With the "WooCommerce Payments" plugin not installed, and WooCommerce » Settings » Country set to "United States":
|
||||||
|
|
||||||
|
Install & activate "Code Snippets" plugin, navigate to Snippets » Add New, and click "Activate" after pasting this code:
|
||||||
|
|
||||||
|
```php
|
||||||
|
// Set WC Admin installation time back.
|
||||||
|
add_filter( 'option_woocommerce_admin_install_timestamp', function() {
|
||||||
|
return time() - WEEK_IN_SECONDS;
|
||||||
|
} );
|
||||||
|
|
||||||
|
// Trigger note update job.
|
||||||
|
add_action( 'init', function() {
|
||||||
|
do_action( 'wc_admin_daily' );
|
||||||
|
} );
|
||||||
|
```
|
||||||
|
|
||||||
|
Go to WooCommerce » Home, under Inbox » "Try the new way to get paid", click "Get started", and verify redirect into WooCommerce Payments connection flow.
|
||||||
|
|
||||||
## WooCommerce Product Blocks Updates:
|
## WooCommerce Product Blocks Updates:
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue