Skip to content
This repository has been archived by the owner on Jan 30, 2025. It is now read-only.

Release 3.14.7 #1276

Merged
merged 38 commits into from
Aug 28, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
2420364
Added my product page
girish-lokapure Jul 3, 2024
942640e
updated module import and small improments
girish-lokapure Jul 5, 2024
2cfea42
moved myproducts in home section
girish-lokapure Jul 23, 2024
b972edd
removed top level nav
girish-lokapure Jul 23, 2024
5a1bf2a
Merge branch 'bluehost:main' into PRESS0-718-v1
girish-lokapure Jul 24, 2024
bac5875
added tests
girish-lokapure Jul 24, 2024
55d28e5
import module instead of package
girish-lokapure Jul 30, 2024
752de1e
required my-products module and bumped data to 2.6.1
girish-lokapure Jul 30, 2024
4875714
Merge branch 'main' into PRESS0-718-v1
girish-lokapure Aug 1, 2024
355db54
on error hide my product section
girish-lokapure Aug 1, 2024
190727e
Merge branch 'bluehost:main' into PRESS0-718-v1
girish-lokapure Aug 5, 2024
8d426b1
NPM(deps): Bump @reduxjs/toolkit from 2.2.6 to 2.2.7
dependabot[bot] Aug 15, 2024
4dbf4fe
NPM(deps): Bump @wordpress/icons from 10.4.0 to 10.5.0
dependabot[bot] Aug 15, 2024
44bd7a8
NPM Dev(deps-dev): Bump cypress from 13.13.2 to 13.13.3
dependabot[bot] Aug 15, 2024
3a6da75
NPM Dev(deps-dev): Bump @wordpress/eslint-plugin from 20.1.0 to 20.2.0
dependabot[bot] Aug 15, 2024
d2102a4
Merge branch 'bluehost:main' into PRESS0-718-v1
girish-lokapure Aug 19, 2024
f65f5aa
bumped module-my-products to 0.2.0
girish-lokapure Aug 19, 2024
957e3d1
removed extra tab
girish-lokapure Aug 19, 2024
0c63975
Merge branch 'bluehost:main' into PRESS0-718-v1
girish-lokapure Aug 21, 2024
9e3f37f
ecommerce version bump to 1.3.41
ramyakrishnai Aug 21, 2024
e834d96
Merge pull request #1170 from girish-lokapure/PRESS0-718-v1
wpalani Aug 21, 2024
90fba8d
Merge pull request #1254 from bluehost/dependabot/npm_and_yarn/develo…
wpalani Aug 21, 2024
b259de9
Merge pull request #1255 from bluehost/dependabot/npm_and_yarn/develo…
wpalani Aug 21, 2024
7004d1c
Merge pull request #1256 from bluehost/dependabot/npm_and_yarn/develo…
wpalani Aug 21, 2024
016c987
Merge pull request #1257 from bluehost/dependabot/npm_and_yarn/develo…
wpalani Aug 21, 2024
ac2da2c
NPM(deps): Bump @wordpress/html-entities from 4.4.0 to 4.6.0
dependabot[bot] Aug 21, 2024
c852370
Merge pull request #1268 from bluehost/dependabot/npm_and_yarn/develo…
wpalani Aug 21, 2024
f56b029
Bump my products module to 1.0.1
wpalani Aug 22, 2024
82080eb
Merge branch 'develop' into update/ecommerce-version-bump-1.3.41
wpalani Aug 22, 2024
b95da89
Resolve conflicts
wpalani Aug 22, 2024
b8b34f3
Merge pull request #1266 from bluehost/update/ecommerce-version-bump-…
wpalani Aug 22, 2024
99e6d80
Prevent plugin icon jumping when admin menu is folding
wpalani Aug 22, 2024
0e4ebab
Bump my products module to 1.0.2
wpalani Aug 22, 2024
2302c94
Update version to 3.15.0
wpalani Aug 22, 2024
bc83ff9
Bump my products module to 1.0.3
wpalani Aug 22, 2024
5287772
Update version to 3.14.7
wpalani Aug 26, 2024
92ec80c
Remove my products module
wpalani Aug 26, 2024
f574a84
Remove MyProductSection
wpalani Aug 26, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
removed top level nav
  • Loading branch information
girish-lokapure committed Jul 23, 2024
commit b972eddc8e112f6905aa88b622a4c398280875f2
5 changes: 1 addition & 4 deletions inc/Admin.php
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,7 @@ public static function subpages() {
? array(
'bluehost#/staging' => __( 'Staging', 'wp-plugin-bluehost' ),
)
: array();
$products = array(
'bluehost#/products' => __( 'My Products', 'wp-plugin-bluehost' ),
);
: array();
$help = array(
'bluehost#/help' => __( 'Help', 'wp-plugin-bluehost' ),
);
Expand Down
10 changes: 0 additions & 10 deletions src/app/data/routes.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import {
AdjustmentsHorizontalIcon,
BuildingStorefrontIcon,
DocumentDuplicateIcon,
Squares2X2Icon,
} from '@heroicons/react/24/outline';
import { NewfoldRuntime } from '@newfold-labs/wp-module-runtime';
import { Route, Routes } from 'react-router-dom';
Expand All @@ -22,7 +21,6 @@ import Admin from '../pages/admin';
import { getMarketplaceSubnavRoutes } from '@modules/wp-module-marketplace/components/marketplaceSubnav';
import { ReactComponent as HelpIcon } from '../components/icons/HelpIcon.svg';
import PagesAndPosts from '../pages/pages-and-posts';
import Products from '../pages/products';

const addPartialMatch = ( prefix, path ) =>
prefix === path ? `${ prefix }/*` : path;
Expand Down Expand Up @@ -75,7 +73,6 @@ const topRoutePaths = [
'/performance',
'/settings',
'/staging',
'/products',
];
const utilityRoutePaths = [ '/help' ];

Expand Down Expand Up @@ -169,13 +166,6 @@ export const routes = [
Component: Admin,
condition: true,
},
{
name: '/products',
title: __( 'My Products', 'wp-plugin-bluehost' ),
Component: Products,
Icon: Squares2X2Icon,
condition: true,
},
];

export const topRoutes = _filter( routes, ( route ) =>
Expand Down
2 changes: 0 additions & 2 deletions src/app/pages/home/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ const abTestShowMyProducts = NewfoldRuntime.hasCapability(
'abTestShowMyProducts'
);

console.log( NewfoldRuntime.hasCapability( 'abTestShowMyProducts' ) );

const Home = () => {
return (
<Page className="wppbh-home">
Expand Down
65 changes: 0 additions & 65 deletions src/app/pages/products/index.js

This file was deleted.