Updated Release Testing Instructions WooCommerce 7.6 (markdown)

Alejandro López Ariza 2023-03-21 10:31:46 +01:00
parent 4d359a8883
commit fca2517aae
1 changed files with 64 additions and 0 deletions

@ -232,4 +232,68 @@ Note: ignore point `1` for release testing.
### [Add/Remove order coupon actions logged in notes](https://href.li/?https://github.com/woocommerce/woocommerce/pull/30642) #30642
**_Slack Workflow: WooCommerce Core_**
### [fix: added skydropx slug back to shipping partners list](https://href.li/?https://github.com/woocommerce/woocommerce/pull/37286) #37286
**_Slack Workflow: WooCommerce Core_**
1. Set up a new site, go through OBW without installing any plugins. Set your location to Mexico
2. Go to shipping task on the home screen and set up skydropx via the shipping task
3. Should succeed without any errors.
### [Remove cart2cart option from product task](https://href.li/?https://github.com/woocommerce/woocommerce/pull/37285) #37285
**_Slack Workflow: WooCommerce Core_**
### [Convert “Allow backorders?” into radio buttons](https://href.li/?https://github.com/woocommerce/woocommerce/pull/37282) #37282
**_Slack Workflow: WooCommerce Admin Start Manage_**
### [Show Stock status options as radio buttons](https://href.li/?https://github.com/woocommerce/woocommerce/pull/37278) #37278
**_Slack Workflow: WooCommerce Admin Start Manage_**
### [Make sure expression before && is always boolean in React rendering in marketing page](https://href.li/?https://github.com/woocommerce/woocommerce/pull/37227) #37227
**_Slack Workflow: WooCommerce Core_**
1. Enable WooCommerce Multichannel Marketing experience in WooCommerce Settings > Advanced > Features page: /wp-admin/admin.php?page=wc-settings&tab=advanced&section=features
2. Go to WooCommerce Marketing page: `/wp-admin/admin.php?page=wc-admin&path=%2Fmarketing`
3. Make sure you don't see a '0' in the `Campaigns` section when you don't have any campaign:
![image](https://user-images.githubusercontent.com/45979455/226564284-d7fc7c30-3833-4113-a26a-f990442916fc.png)
### [Filter Variations report variation attributes correctly](https://href.li/?https://github.com/woocommerce/woocommerce/pull/37223) #37223
**_Slack Workflow: WooCommerce Admin Start Manage_**
### [Add product pricing block](https://href.li/?https://github.com/woocommerce/woocommerce/pull/37211) #37211
**_Slack Workflow: WooCommerce Admin Start Manage_**
1. Install the WooCommerce Beta Tester plugin
2. Head to `Tools > WCA Test Helper > Features` and enable the `block-editor-feature-enabled` feature flag
3. Go to Products > Add new and check if the pricing and sales field show up
4. Now create a product using the classic editor and add a price and sale price, load this product in the new product block form, the price and sale price should be displayed correctly.
5. Go to WooCommerce > Settings and change the currency
6. Reload the product block editor and make sure the icons in the price field match the new currency.
### [Add a product header component to the blocks interface](https://href.li/?https://github.com/woocommerce/woocommerce/pull/37152) #37152
**_Slack Workflow: WooCommerce Admin Start Manage_**
### [Add introduction banner card into multichannel marketing page](https://href.li/?https://github.com/woocommerce/woocommerce/pull/37110) #37110
**_Slack Workflow: WooCommerce Core_**
### [Load same stylesheets in the Site Editor as in the frontend](https://href.li/?https://github.com/woocommerce/woocommerce/pull/36911) #36911
**_Slack Workflow: WooCommerce Core_**
### [Fix incorrect VAT exempt behaviour on shop page when prices are exclusive of tax.](https://href.li/?https://github.com/woocommerce/woocommerce/pull/33991) #33991
**_Slack Workflow: WooCommerce Core_**
1. Set VAT exempt on the current user using one of the below ways.
1. Install [EU VAT Number](https://woocommerce.com/products/eu-vat-number/) and save the correct VAT number from My Account - OR
2. Set vat exempt programmatically using a plugin like [Code Snippets](https://wordpress.org/plugins/code-snippets/):
```add_action('init', function(){
if (isset(WC()->customer)){
WC()->customer->set_is_vat_exempt(true);
}
});```
2. Set tax options like this in Woo settings
![image](https://user-images.githubusercontent.com/45979455/226566065-4e023a3f-85ee-48e9-9cc3-a1af8694e779.png)
3. Create a product with a price of 100 and a tax rate of 15% for testing purposes.
4. Visit the Shop page and make sure the price for the created product showing 100.
--