diff --git a/e2e-tests/specs/customizer/layout/blog-archive-settings.spec.ts b/e2e-tests/specs/customizer/layout/blog-archive-settings.spec.ts index cd2cb4dd59..207c9526dc 100755 --- a/e2e-tests/specs/customizer/layout/blog-archive-settings.spec.ts +++ b/e2e-tests/specs/customizer/layout/blog-archive-settings.spec.ts @@ -23,7 +23,13 @@ test.describe('Blog/Archive 1 / Default Layout', () => { } }); - test('Post Content Order', async ({ page }) => { + test('Post Content Order', async ({ page, request, baseURL }) => { + // Make sure the default layout is set. + await setCustomizeSettings('defaultLayout', data.archive1, { + request, + baseURL, + }); + await page.goto('/?test_name=defaultLayout'); const posts = await page.locator('article.post'); diff --git a/inc/customizer/options/upsells.php b/inc/customizer/options/upsells.php index 2b5aaa31c5..0da4d9ad3b 100644 --- a/inc/customizer/options/upsells.php +++ b/inc/customizer/options/upsells.php @@ -499,22 +499,22 @@ private function control_upsells() { if ( class_exists( 'WooCommerce', false ) ) { $upsells['product_catalog'] = [ - 'text' => __( 'More product catalog options available in PRO', 'neve' ), + 'text' => __( 'More product catalog options available in PRO', 'neve' ) . ' (Business & Agency)', 'button_text' => __( 'Learn More', 'neve' ), 'section' => 'woocommerce_product_catalog', ]; $upsells['woocommerce_checkout'] = [ - 'text' => __( 'More checkout options available in PRO', 'neve' ), + 'text' => __( 'More checkout options available in PRO', 'neve' ) . ' (Business & Agency)', 'button_text' => __( 'Learn More', 'neve' ), 'section' => 'woocommerce_checkout', ]; $upsells['single_product_layout'] = [ - 'text' => __( 'More single product options available in PRO', 'neve' ), + 'text' => __( 'More single product options available in PRO', 'neve' ) . ' (Business & Agency)', 'button_text' => __( 'Learn More', 'neve' ), 'section' => 'neve_single_product_layout', ]; $upsells['typography'] = [ - 'text' => __( 'WooCommerce typography options available in PRO', 'neve' ), + 'text' => __( 'WooCommerce typography options available in PRO', 'neve' ) . ' (Business & Agency)', 'button_text' => __( 'Learn More', 'neve' ), 'panel' => 'neve_typography', 'type' => 'section',