Skip to content

Commit

Permalink
missing dirs
Browse files Browse the repository at this point in the history
  • Loading branch information
carlHandy committed Sep 30, 2024
1 parent b6ed33a commit 9b2317d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
run: composer install --no-dev --optimize-autoloader

- name: Zip project
run: zip -r mmg-checkout-payment.zip main.php LICENSE.txt uninstall.php vendor/* README.txt js/* assets/* includes/*
run: zip -r mmg-checkout-payment.zip main.php LICENSE.txt uninstall.php vendor/* README.txt admin/* public/* includes/*

- name: Setup GitHub CLI
uses: actions/setup-go@v4
Expand Down
2 changes: 1 addition & 1 deletion includes/class-wc-mmg-gateway.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class WC_MMG_Gateway extends WC_Payment_Gateway {
*/
public function __construct() {
$this->id = 'mmg_checkout';
$this->icon = 'public/images/mmg-logo-white.png';
$this->icon = plugins_url( 'public/images/mmg-logo-white.png', __DIR__ );
$this->has_fields = false;
$this->method_title = 'MMG Checkout';
$this->method_description = 'Enables MMG Checkout Payment flow for WooCommerce';
Expand Down

0 comments on commit 9b2317d

Please sign in to comment.