Skip to content

Two WooCommerce Plugin

Notifications You must be signed in to change notification settings

two-inc/woocommerce-plugin

Folders and files

NameName
Last commit message
Last commit date
Dec 7, 2023
Dec 20, 2021
Nov 22, 2023
Dec 8, 2023
Oct 7, 2022
Jan 24, 2023
Oct 10, 2022
Dec 7, 2023
Nov 10, 2022
Dec 20, 2021
Nov 14, 2023
Nov 14, 2023
Nov 14, 2023
Dec 8, 2023
Nov 29, 2021
Dec 8, 2023
Dec 8, 2023
Sep 4, 2023
Sep 4, 2023
Sep 4, 2023
Sep 4, 2023
Sep 4, 2023

Repository files navigation

Tillit WooCommerce Plugin

Installation

git clone [email protected]:two-inc/woocommerce-plugin.git
cd woocommerce-plugin
docker-compose up

End-to-end Test

npx cypress run --browser chrome --config baseUrl=http://localhost

Releasing a new version

Ensure that you have bumpver installed.

$ pip install bumpver

To bump version:

$ bumpver update --major | --minor | --patch

Now, go to Github to create a new release which triggers publication of the new version to Wordpress plugin directory.

Set up Wordpress for local development

For Mac users, follow this guide: https://skillcrush.com/blog/install-wordpress-mac/

Once wordpress has been set up, a recommended plugin theme to install is:

  • Elementor, select an ecommerce template WooCommerce then needs to be installed as a plugin Other recommended WooCommerce plugins are:
  • WooCommerce Cart Abdandonment Recovery
  • WooCommerce Shipping & Tax

To install the two plugin, it can be found in the wp portal for plugins 'Two - BNPL for businesses', or you can manually add the files:

  • create a zip file of this repo, which contains only the required folders and file types: zip -r tillit-payment-gateway.zip 'assets' 'class' 'views' 'readme.txt' *.php *.pot *.mo *.po
  • Unzip the folder into Sites/wp-content/plugins

In the wordpress portal, update the WooCommerce plugin settings to suit, and add api credentials.

To enable logging, update Sites/wp-config(.php?) with:

@ini_set( 'display_errors', 1 );
define('WP_DEBUG_LOG', true);
define( 'WP_DEBUG', true );

Deploying Locally using Docker Compose

If you are developing on a Mac with M1 chip, you may want the following:

echo REPO=docker.io/arm64v8/ >> .env

Also, if you wish to use Checkout API backend running on a Kubernetes cluster deployed using [Skaffold][https://github.com/tillit-dot-ai/local-deploy-skaffold], you may need to create this entry:

echo WOOCOM_PLUGIN_CONFIG_JSON=config-local.json >> .env

Now you can bring up your Wordpress instance:

docker-compose up -d

Navigate to http://localhost:5000/ on your brower to access the Wordpress site.

Missing Functionality

  • webhooks (merchant dashboard -> woocommerce)
  • orders are stored in wp_posts and wp_postmeta (also some stuff in wp_woocommerce_order_* (update_post_* function in PHP)