-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix #204 #209
Fix #204 #209
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -403,6 +403,9 @@ public function add_gateways_fees( $the_cart ) { | |
if ( strpos( $current_gateway, $klarna_payment ) !== false ) { | ||
$current_gateway = 'klarna_payments'; | ||
} | ||
if ( strpos( $current_gateway, 'alma_in_page' ) !== false ) { | ||
$current_gateway = 'alma'; | ||
} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🚫 Error: Tabs must be used to indent lines; spaces are not allowed (Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed). There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🚫 Error: Line indented incorrectly; expected 3 tabs, found 1 tabs and 2 spaces (Generic.WhiteSpace.ScopeIndent.IncorrectExact). |
||
if ( strpos( $current_gateway, 'xpay_paypal' ) !== false ) { | ||
$current_gateway = 'xpay'; | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.