Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
21c93db
PHPCS
mntzrr Nov 23, 2025
edec60d
Fix undefined $settlement_prefix
mntzrr Nov 23, 2025
4668aaa
Process order on thankyou-page
mntzrr Nov 23, 2025
e499214
PHPCS formatting
mntzrr Nov 24, 2025
30756d3
Adds Singleton trait
mntzrr Nov 25, 2025
d8c9321
Add helper methods for gateway and client
mntzrr Nov 25, 2025
ac1d49c
Displays Paytail order status in Metabox
mntzrr Nov 25, 2025
17cdcdd
Merge pull request #1 from krokedil/master-issue-218
MichaelBengtsson Nov 27, 2025
7c66b87
Reflect namespace naming elsewhere
mntzrr Nov 28, 2025
4ab9df9
Retrieve and cache the payment status
mntzrr Nov 28, 2025
1ccd95f
Merge branch 'master' into master-manual-invoice-activation
mntzrr Nov 29, 2025
76fef54
PHPCS
mntzrr Nov 29, 2025
da23cc3
Add manual_invoice_activation setting
mntzrr Nov 29, 2025
1a7c93e
PHPCS
mntzrr Nov 29, 2025
638b363
Add optional arguments to Singleton trait
mntzrr Nov 30, 2025
2beb3bb
Implement Singleton trait in Gateway class
mntzrr Nov 30, 2025
7d644dc
PHPCS and string interpolation
mntzrr Dec 1, 2025
6369bdb
Fix typo
mntzrr Dec 4, 2025
151a6c9
Remove initialization check
mntzrr Dec 4, 2025
3bdf600
Instantiate Gateway immediately
mntzrr Dec 4, 2025
67b6df6
Use wp_rand instead of rand
mntzrr Dec 4, 2025
f5f3ad1
Allow setting callback mode from public space
mntzrr Dec 4, 2025
d8f9cb9
Use snake_case
mntzrr Dec 4, 2025
6a82608
Remove Gateway instance params
mntzrr Dec 4, 2025
07c8bc1
Use wc_string_to_bool
mntzrr Dec 4, 2025
3bf6ba9
Retrieve order using wc_get_orders instead
mntzrr Dec 4, 2025
c0ef180
Check if date paid to determine order is processed
mntzrr Dec 4, 2025
ce6448d
Revert "Check if date paid to determine order is processed"
mntzrr Dec 4, 2025
dfc8457
Change Gateway::render_saved_payment_methods to not make new class in…
MichaelBengtsson Dec 12, 2025
3fc1b6d
Fix issues with gateway initialization in different places
MichaelBengtsson Dec 12, 2025
f7b06db
Bumped WP version after test.
Louise-Krokedil Dec 22, 2025
8314f17
Add support for activating manual invoice when order is set to completed
MichaelBengtsson Jan 14, 2026
b29e004
Fix check for both Walley and Klarna manual invoice providers
MichaelBengtsson Jan 16, 2026
4d9c6b6
Trigger Gateway::check_paytrail_response() in the callback handler
MichaelBengtsson Jan 21, 2026
162b025
Check if order has been paid when preventing a transaction from being…
MichaelBengtsson Jan 21, 2026
e1de665
Update description for setting manual_invoice_activation
anyakro Jan 27, 2026
18e8c28
Remove double new line
anyakro Jan 27, 2026
8af0295
Grammar fix
anyakro Jan 27, 2026
95c6afe
Merge pull request #4 from krokedil/manual-invoice-activation-setting…
anyakro Jan 27, 2026
dcfe571
Merge pull request #3 from krokedil/master-manual-invoice-activation
anyakro Jan 27, 2026
7dde89e
Version 2.6.0
anyakro Jan 27, 2026
64d062b
Update changelog date
anyakro Jan 28, 2026
fae5809
Fix CHANGELOG version
anyakro Jan 28, 2026
13155eb
Escape needed output
anyakro Jan 28, 2026
f3d3a21
Fix translators placement
anyakro Jan 28, 2026
d853780
Move translator
anyakro Jan 28, 2026
52e0334
Use wp_kses for card detail link
anyakro Jan 28, 2026
32e9115
Remove unused singleton trait
MichaelBengtsson Feb 2, 2026
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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.6.0] - 2026-01-28
### Added
- Added support for manual activation of invoices for payments made with Walley and Klarna invoice methods.
### Fixed
- Fixed compatibility issue with Visma Pay.

## [2.5.3] - 2025-07-02
### Added
- Added missing accessibility features
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "paytrail-for-woocommerce",
"version": "2.5.3",
"version": "2.6.0",
"description": "Paytrail is a payment gateway that offers 20+ payment methods for Finnish customers.",
"private": true,
"dependencies": {
Expand Down
Loading