Updated Release Testing Instructions WooCommerce 4.7 (markdown)
parent
2e7f09e83d
commit
d92971b745
|
@ -19,6 +19,26 @@ WooCommerce 4.7 includes:
|
|||
|
||||
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 Blocks testing instructions:
|
||||
|
|
Loading…
Reference in New Issue