Next-generation WordPress eCommerce Experience for WordPress sites at Newfold Digital.
- Ecommerce module displays
Home or Dashboard
page for Brand plugin, with below options:- Live site preview for both, live and coming soon mode for WordPress site with view & edit site options
- Next steps to setup your site helps customers to complete below tasks:
- To add store info
- Setup online payment options like PayPal, Stripe, RazorPay. Also choose offline payment options like, check payments, bank transfers & C.O.D
- Setup shipping options like Shippo.
- Configure tax settings
- Add/import products
- Customers who have selected
novice
as WordPress experience level will have access to Signup to BlueHost WP academy / Yoast academy for learning purpose. - There is also link for Customers to view list of
Completed tasks
- Ecommerce module also displays
Store
option which gives snapshot of recent customer activity with details like total sales, net sales, recent orders, products sold, visitors, views and also a link to detailedAnalytics
page of Woocommerce plugin. Store
page also, allows customers to Purchase/Enable/Manage and learn more about YITH extended plugins like:- YITH Booking and Appointment for WooCommerce
- YITH WooCommerce AJAX Search
- YITH WooCommerce Gift Cards
- YITH WooCommerce Wishlist
- YITH WooCommerce Customize My Account Page
- YITH WooCommerce Ajax Product Filter.
- Under Store we have a
Products & Services
submenu option which provides following options:- Easy access to Add new product/Import CSV of products into your store.
- Option to setup bookings & appointments or offer gift cards on purchases via YITH extended plugins.
- Next submenu under Store is
Sales & Promotions
where customer can setup different promotional offers on products in their store.- Here we display 13 different campaign setup options offered by
WonderCart
plugin underAll Campaigns
tab. - There is also a
Settings
tab where users can customize look & feel of how sales campaigns are displayed on their Store page.
- Here we display 13 different campaign setup options offered by
- Next submenu under Store is
Payments
where we store owner can setup payments option accepted on purchases at Store.- There 3 online payment options via payments gateways like PayPal, Stripe & RazorPay(only for India location).
- We also offer offline payments option via cheque, bank transfer or cash on delivery.
- Final submenu under Store is
Store details
with following options:- Store location and complete address, email address of store owner and currency in which products/services are displayed on the store.
- Under
shipping option
tab on the store details page you can connect to Shipping partner like, Shippo (based on your store location). - Under
tax settings
tab, store owner can choose to enable/disable sales tax.
Store
page should give a brief overview ofrecent customer activity
on Ecommerce website.Store
page displays section to setupEcommerce features
where users can purchase/enable/manage YITH extended plugins.- It is required to install & activate
WooCommerce
plugin for below plugins to work,YITH PayPal Payment
plugin for - facilitating payments via PayPal,WonderCart
plugin for - creating sales & promotional campaigns,YITH Stripe Payments
plugin for - facilitating payments via StripeEcomdash
plugin for - managing marketplace and ecommerce website sales.
Home
page should display warningsenabled but not effective, requires WooCommerce in order to work.
for above YITH plugins, incase WooCommerce isn't setup.- If
WooCommerce
plugin isn't setup,Store
tab should ask users to first install & activateWooCommerce
till then all the sub-menu options underStore
menu should be disabled. Products & Services
tab should provide customers access to purchase services offered by YITH extended plugins like: YITH Booking and Appointment for WooCommerce and YITH WooCommerce Gift Cards.Sales & Promotions
submenu allows customers to installWonderCart
plugin if it is not already installed & activated. OnceWonderCart
is activated it offers option to setup different promotional campaigns.Payments
tab facilitates Customers to connect their accounts to receive payments via popular online payment options like PayPal, Stripe and RazorPay. Customers can also choose to accept offline payment via options like: check payments, bank transfers & C.O.D.Store details
tab facilitates setup ofShippo
third party shipping software for e-commerce businesses.
composer config repositories.newfold composer https://newfold-labs.github.io/satis
composer require newfold-labs/wp-module-ecommerce
Previously, this module's package was hosted at github and these instructions were required GH Packages Setup. Now the package is hosted at npmjs and this referenced setup is no longer relevant. Find the npmjs package at https://www.npmjs.com/package/@newfold/wp-module-ecommerce and install just as any other public package. Note the newfold
org namespace for npmjs and the newfold-labs
org namespace for github and satis.
npm install @newfold/wp-module-ecommerce
In your React component you can import the eCommerce module as so,
import { NewfoldECommerce } from "@newfold/wp-module-ecommerce";
function EcommercePage(props) {
return <NewfoldECommerce {...props} />;
}
More on Newfold WordPress Modules
Run the Newfold Prepare Release
github action to automatically bump the version (either patch, minor or major version), and update build and language files all at once. It will create a PR with changed files for review. Using this workflow, we can skip all the manual steps below (steps 1-6).
-
Merge approved PRs into main branch.
-
Update version numbers (in both package.json and bootstrap.php files).
-
Create a fresh build:
npm run build
. -
Update language/translation/i18n files:
composer run i18n
. -
Commit above change in new branch
release/x.y.z
matching the version number. -
Create release PR.
-
Get approval on releaes PR. Merge.
-
Issue a release via github.
- By default, you'll always create a release from target: main branch. In case we are making changes to crazydomains then we must switch to the legacy branch do the fixes there and create a release from target: legacy branch as it currently runs older version.
- Click Generate release notes button it will basically collect all the pull requests that came in from the previous release to now and then just create a summary.
- The Satis workflow will trigger an alert to Satis that newer version of ecommerce module is released and rebuild Satis (https://github.com/newfold-labs/satis/)
- The release workflow will publish the latest js package on npmjs (https://www.npmjs.com/package/@newfold/wp-module-ecommerce)
Note: if no plugin changes are required we can let dependabot create a PR for the php module and the js package. If any plugin changs are required, please do the following in a branch on the respective plugin repo:
-
In composer.json file, update version of
newfold-labs/wp-module-ecommerce
to latest -
In package.json file,
@newfold/wp-module-ecommerce
version number to latest -
Run command,
npm i --legacy-peer-deps
-
Package-lock.json should auto update.
-
Once Satis starts showing updated version run below command for composer update,
$ composer update newfold-labs/wp-module-ecommerce -W
-
We need to create a branch (naming convention: dependencies/newfold-labs/wp-module-ecommerce-version_number).
-
Currently we don't have the permission to publish directly to the BlueHost plugin so, we need to create a fork basically of the repo then push it to that fork and then create a pull request against the develop branch.
-
The new release process is thus completed.