Skip to content
This repository has been archived by the owner on Sep 14, 2024. It is now read-only.

Fix some typos #154

Merged
merged 1 commit into from
Nov 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,8 @@ https://github.com/conedevelopment/simplepay-gateway/releases
## v2.2.2 (2020-05-21)

- Added custom error messages when IPN/IRN should fail
- Added red labels for sanbox inputs
- Determine if `$order` is instnace of `WC_Order`
- Added red labels for sandbox inputs
- Determine if `$order` is instance of `WC_Order`

## v2.2.1 (2020-05-18)

Expand Down
6 changes: 3 additions & 3 deletions README.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ This plugin provides a payment gateway for OTP SimplePay.

[Download the plugin](https://github.com/conedevelopment/simplepay-gateway/archive/master.zip) and install it as any other WordPress plugin.

### Verisons
### Versions

| Plugin | SimplePay API |
|:---------:|:-------------:|
Expand All @@ -30,7 +30,7 @@ This plugin provides a payment gateway for OTP SimplePay.

### Updates

The plugin will recieve updates from the GitHub repository that you can install as any other plugin update.
The plugin will receive updates from the GitHub repository that you can install as any other plugin update.

## Configuration

Expand Down Expand Up @@ -74,7 +74,7 @@ To prevent price conflicts, prices will be passed as gross values and VAT will b
### Discount handling

WooCommerce handles discounts differently than SimplePay.
Woo reduces the discount from the prodocut prices direcly.
Woo reduces the discount from the product prices directly.
Because of this, SimplePay will get the reduced prices.
To prevent double price reduction, the discounted amount will be `0`.

Expand Down
2 changes: 1 addition & 1 deletion includes/fields.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
),
],

'sanbox_settings' => [
'sandbox_settings' => [
'title' => __('Sandbox Settings', 'cone-simplepay'),
'type' => 'title',
'description' => __('If this option is on this gateway is in test (sandbox) mode.', 'cone-simplepay'),
Expand Down
2 changes: 1 addition & 1 deletion src/Support/Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ abstract class Config
protected static $settings = [];

/**
* Set the confing manager.
* Set the config manager.
*
* @param array $settings
* @return void
Expand Down