Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
30b8547
Add Gated content form action
truongwp Apr 16, 2026
56ccb14
Create gated_tokens db table
truongwp Apr 16, 2026
347fa2d
Add gated token helper
truongwp Apr 16, 2026
b84c0b4
Add code to trigger the gated content action
truongwp Apr 16, 2026
709c312
Add code to obtain gated content token
truongwp Apr 16, 2026
60852cd
Add gated content shortcode
truongwp Apr 16, 2026
e0e06c1
Handle password protected posts
truongwp Apr 16, 2026
b0a3830
Fix open access for password protected pages not working
truongwp Apr 17, 2026
69ebb2f
Add show=url to shortcode
truongwp Apr 19, 2026
f12e90c
Support private pages
truongwp Apr 19, 2026
3d338a6
Use frm_clone_icon
truongwp Apr 21, 2026
9b550ac
Necessary code to add more gated content type
truongwp Apr 24, 2026
32eeae2
Add unit tests
truongwp Apr 25, 2026
5b5b5b8
Add support for running gated content in payment success
truongwp Apr 25, 2026
334d5f9
Update unit tests
truongwp Apr 25, 2026
6f0f023
Merge master into branch, keeping db_version 106 and built JS
truongwp Apr 27, 2026
20314c4
Fix JS error when sorting fields and PHP error when duplicating form
truongwp Apr 27, 2026
b95e703
Use transient to temporarily store the gated content token
truongwp Apr 27, 2026
27dab71
Fix PHPStan
truongwp Apr 27, 2026
e7b8988
Fix PHPStan
truongwp Apr 27, 2026
2c012f7
Remove md5()
truongwp Apr 27, 2026
d4c35aa
Fix deepsource error
truongwp Apr 27, 2026
ccc67e3
Fix Psalm
truongwp Apr 27, 2026
2a8d369
Fix PHPStan
truongwp Apr 27, 2026
877e9e6
Revert deepsource config file
truongwp Apr 27, 2026
872adcc
Change apply_filters() params
truongwp Apr 28, 2026
ae4744a
Fix empty redirect URL
truongwp Apr 28, 2026
cf17c3b
Revoke old token before updating
truongwp Apr 28, 2026
0d917fc
Update unit tests
truongwp Apr 28, 2026
18c8086
Schedule delete expired gated content tokens
truongwp Apr 28, 2026
0bb1615
Update obtain_token() method
truongwp Apr 28, 2026
d8e35dc
Reduce extra DB query
truongwp Apr 28, 2026
a559c55
Update data-item-count
truongwp Apr 28, 2026
d9910b0
Remove deprecated function
truongwp Apr 28, 2026
91d6480
Improve code
truongwp Apr 28, 2026
1e6b04a
Improve code
truongwp Apr 28, 2026
dcdc4ab
Move some features to Pro
truongwp Apr 28, 2026
29a1e45
Remove unnecessary since
truongwp Apr 28, 2026
b9603d7
Improve code
truongwp Apr 28, 2026
432fb4f
Add back the static variable for tokens
truongwp Apr 28, 2026
ede69c0
Add cache
truongwp Apr 28, 2026
418bc99
Improve code
truongwp Apr 28, 2026
010c8b0
Remove unused code
truongwp Apr 28, 2026
bb0487d
Show extra settings in Gated content action
truongwp Apr 28, 2026
6a7eb60
Improve code
truongwp Apr 29, 2026
2848b6f
Change icon and color of gated content action
truongwp May 7, 2026
753612e
Change gated content item column layout
truongwp May 7, 2026
21242ec
Improve styling of gated content action
truongwp May 7, 2026
bbe8e5b
Fix the file dropdown in Gated content not live updated
truongwp May 11, 2026
6cd6c74
Gated content: Remove unnecessary code
truongwp May 11, 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
1 change: 1 addition & 0 deletions classes/controllers/FrmFormActionsController.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ public static function register_actions() {
$action_classes = array(
'on_submit' => 'FrmOnSubmitAction',
'email' => 'FrmEmailAction',
'gated_content' => 'FrmGatedContentAction',
'wppost' => 'FrmDefPostAction',
'register' => 'FrmDefRegAction',
'paypal' => 'FrmDefPayPalAction',
Expand Down
Loading
Loading