Skip to content

Commit

Permalink
Merge pull request #206 from awesomemotive/release/4.7.11
Browse files Browse the repository at this point in the history
`release/4.7.11`
  • Loading branch information
spencerfinnell authored Dec 7, 2023
2 parents c3bc74a + 7cfdc52 commit 8d9afa0
Show file tree
Hide file tree
Showing 242 changed files with 3,330 additions and 3,833 deletions.
17 changes: 10 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,17 +1,20 @@
.env

.DS_Store
ehthumbs.db
Thumbs.db

*.cache

composer.lock
phpunit.xml

node_modules
/.sass-cache
/logs
/build
/vendor/*/
artifacts
logs
build
vendor
test-results
!/vendor/autoload.php
!/vendor/composer/

# PhpStorm
.idea
/.sass-cache
9 changes: 8 additions & 1 deletion data/templates/apple-pay-google-pay-payment-form.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,14 @@
"title": "Apple Pay / Google Pay Payment Form",
"description": "",
"type": "embedded",
"payment_methods": [ "card" ],
"payment_methods": [
{
"id": "card",
"wallets": {
"enabled": "yes"
}
}
],
"fields": [
{
"type": "payment_request_button"
Expand Down
42 changes: 42 additions & 0 deletions data/templates/bacs-direct-debit-form.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{
"id": "f36e03bc-468a-49fb-8328-d63f8c3148f5",
"created_at": "2023-12-04 00:00:00",
"updated_at": "2023-12-04 00:00:00",
"license": [ "professional", "ultimate", "elite" ],
"categories": [ "features-functionality" ],
"keywords": [ "bacs", "debit", "on-site" ],
"slug": "bacs-direct-debit-form",
"name": "Bacs Direct Debit Form",
"description": "Collect payments through Bacs Direct Debit.",
"url": "",
"data": {
"title": "Bacs Direct Debit Form",
"description": "",
"type": "embedded",
"payment_methods": [ "bacs_debit", "card" ],
"fields": [
{
"type": "email",
"label": "Email Address"
},
{
"type": "plan_select",
"label": ""
},
{
"type": "card",
"label": "",
"icons": "yes"
},
{
"type": "checkout_button"
}
],
"prices": [
{
"unit_amount": 10000,
"currency": "gbp"
}
]
}
}
42 changes: 42 additions & 0 deletions data/templates/grabpay-payment-form.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{
"id": "cd2e5265-8d60-480d-9f6a-290b2158dfbc",
"created_at": "2023-12-04 00:00:00",
"updated_at": "2023-12-04 00:00:00",
"license": [ "personal", "plus", "professional", "ultimate", "elite" ],
"categories": [ "features-functionality" ],
"keywords": [ "on-site", "grabpay", "myr", "sgp" ],
"slug": "grabpay-payment-form",
"name": "GrabPay Payment Form",
"description": "Allow customers to pay with GrabPay, a digital wallet in Malaysia and Singapore.",
"url": "",
"data": {
"title": "GrabPay Payment Form",
"description": "",
"type": "embedded",
"payment_methods": [ "grabpay", "card" ],
"fields": [
{
"type": "email",
"label": "Email Address"
},
{
"type": "plan_select",
"label": ""
},
{
"type": "card",
"label": "",
"icons": "yes"
},
{
"type": "checkout_button"
}
],
"prices": [
{
"unit_amount": 1000,
"currency": "myr"
}
]
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@

@import "./charts.scss";

@include wordpress-admin-schemes();

body.admin-color-fresh {
@include admin-scheme(#2271b1);
}

.simpay-admin-dashboard-widget-report {

* {
Expand Down
4 changes: 4 additions & 0 deletions includes/core/assets/css/admin/form-template-explorer.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@

@include wordpress-admin-schemes();

body.admin-color-fresh {
@include admin-scheme(#2271b1);
}

$branding-bar-height: 79px;

// Page reset.
Expand Down
4 changes: 4 additions & 0 deletions includes/core/assets/css/admin/help.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@

@include wordpress-admin-schemes();

body.admin-color-fresh {
@include admin-scheme(#2271b1);
}

.simpay-help-body-locked {
overflow: hidden;

Expand Down
4 changes: 4 additions & 0 deletions includes/core/assets/css/admin/notifications.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@

@include wordpress-admin-schemes();

body.admin-color-fresh {
@include admin-scheme(#2271b1);
}

.simpay-notifications-body-locked {
overflow: hidden;

Expand Down
4 changes: 4 additions & 0 deletions includes/core/assets/css/admin/page-activity-reports.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@

@include wordpress-admin-schemes();

body.admin-color-fresh {
@include admin-scheme(#2271b1);
}

/**
* Components
*/
Expand Down
4 changes: 4 additions & 0 deletions includes/core/assets/css/admin/page-setup-wizard.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@

@include wordpress-admin-schemes();

body.admin-color-fresh {
@include admin-scheme(#2271b1);
}

.simpay-setup-wizard {

hr {
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Large diffs are not rendered by default.

Loading

0 comments on commit 8d9afa0

Please sign in to comment.