Skip to content
Merged
Show file tree
Hide file tree
Changes from 21 commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
6d79778
Move tracking opt-in to general settings and onboarding wizard
superdav42 Jan 25, 2026
c101dc4
better error logging and handling of user accounts unable to connect …
superdav42 Jan 25, 2026
0f94b89
add recommended html attr
superdav42 Jan 25, 2026
a1df46f
allow kses to be extended
superdav42 Jan 25, 2026
d0bc595
add settings api
superdav42 Jan 25, 2026
58d27e5
Fix problems with choosing country and state
superdav42 Jan 25, 2026
9998c00
Fix login redirect
superdav42 Jan 25, 2026
a5b944d
Add support for pay what you want prices
superdav42 Jan 29, 2026
ab41443
Add support for pay what you want prices
superdav42 Jan 29, 2026
e2bc76d
Add support for pay what you want prices
superdav42 Jan 29, 2026
a808f21
set duration for manually created memberships
superdav42 Jan 29, 2026
30f1ac2
add duration restrictions for discount codes
superdav42 Jan 29, 2026
af6276c
make yoursite translatable
superdav42 Jan 29, 2026
a8b1edb
let users change their email
superdav42 Jan 29, 2026
28692a2
let networks login
superdav42 Jan 29, 2026
d905829
fix error in multinetwork
superdav42 Jan 29, 2026
76e4874
fix extra chars
superdav42 Jan 29, 2026
f4ca4ec
Apply suggestion from @superdav42
superdav42 Jan 30, 2026
93dd859
Fix product tabs
superdav42 Feb 2, 2026
eb12793
Skip billing requirements for free trials, fix null product handling,…
superdav42 Feb 3, 2026
a3b1bfd
Skip billing validation when payment not required, code style fixes
superdav42 Feb 3, 2026
d181e94
Apply suggestion from @coderabbitai[bot]
superdav42 Feb 3, 2026
1d66ab8
Address CodeRabbit review feedback and refactor Settings API
superdav42 Feb 3, 2026
e4537be
Merge branch 'main' into tweask-again
superdav42 Feb 3, 2026
c65339c
Enforce a strong password
superdav42 Feb 3, 2026
a76cee6
Merge branch 'tweask-again' of github.com:Multisite-Ultimate/ultimate…
superdav42 Feb 3, 2026
e95460b
Restructure E2E tests with programmatic setup and working checkout flows
superdav42 Feb 3, 2026
4655401
Fix PHPCS violations in E2E PHP fixtures
superdav42 Feb 3, 2026
08f14d0
Fix e2e workflow: correct spec names, remove invalid CLI flags, fix e…
superdav42 Feb 4, 2026
0ba2b71
fix searches
superdav42 Feb 4, 2026
01cbcb6
Add the doc
superdav42 Feb 4, 2026
3a09c64
fix legacy
superdav42 Feb 4, 2026
7dda86b
Use correct logic
superdav42 Feb 4, 2026
98ef974
Update test matrix to require PHP 8.2 minimum
superdav42 Feb 4, 2026
b50502b
Merge branch 'main' into tweask-again
superdav42 Feb 4, 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
15 changes: 10 additions & 5 deletions .wp-env.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,32 +7,37 @@
"."
],
"mappings": {
"wp-content/mu-plugins/email-smtp-dev.php": "./mu-plugins/email-smtp-dev/email-smtp-dev.php"
"wp-content/mu-plugins/email-smtp-dev.php": "./mu-plugins/email-smtp-dev/email-smtp-dev.php",
"wp-content/sunrise.php": "./sunrise.php"
},
"config": {
"WP_DEBUG": true,
"WP_DEBUG_DISPLAY": true,
"WP_DEBUG_LOG": true,
"SCRIPT_DEBUG": true,
"WP_MEMORY_LIMIT": "256M",
"WP_MAX_MEMORY_LIMIT": "512M"
"WP_MAX_MEMORY_LIMIT": "512M",
"SUNRISE": true
}
},
"tests": {
"multisite": true,
"plugins": [
"."
".",
"../addons/ultimate-multisite-woocommerce"
],
"mappings": {
"wp-content/mu-plugins/email-smtp-test.php": "./mu-plugins/email-smtp-test/email-smtp-test.php"
"wp-content/mu-plugins/email-smtp-test.php": "./mu-plugins/email-smtp-test/email-smtp-test.php",
"wp-content/sunrise.php": "./sunrise.php"
},
"config": {
"WP_DEBUG": true,
"WP_DEBUG_DISPLAY": false,
"WP_DEBUG_LOG": true,
"SCRIPT_DEBUG": true,
"WP_MEMORY_LIMIT": "256M",
"WP_MAX_MEMORY_LIMIT": "512M"
"WP_MAX_MEMORY_LIMIT": "512M",
"SUNRISE": true
}
}
}
Expand Down
Loading