Originally created by @sininen-blue on GitHub (Dec 3, 2025).
Would it be possible to add explicit separate pages for each transaction action like expense and income
This is mostly for phone shortcuts use. It would be nice to make a phone shortcut that directly goes to the "add expense" page
I did find the standalone add transaction page, but it's not shown anywhere on the UI
Originally created by @sininen-blue on GitHub (Dec 3, 2025).
Would it be possible to add explicit separate pages for each transaction action like expense and income
This is mostly for phone shortcuts use. It would be nice to make a phone shortcut that directly goes to the "add expense" page
I did find the standalone add transaction page, but it's not shown anywhere on the UI
Hey there.
The Standalone page is used for the PWA app, if you install it you should get a shortcut called "New transaction" that redirects you to it.
I'm guessing you want a standalone page where "Expense" or "Income" is prefilled, since the current page always starts with Income selected (there's no difference between the income and expense pages besides what's selected at the top)
Maybe we could add support for query params on this page so you could create as many shortcuts as you need, e.g. /?type=EX for expenses, /?type=EX&is_paid=1 for a paid expense and so on.
@eitchtee commented on GitHub (Dec 3, 2025):
Hey there.
The Standalone page is used for the PWA app, if you install it you should get a shortcut called "New transaction" that redirects you to it.
I'm guessing you want a standalone page where "Expense" or "Income" is prefilled, since the current page always starts with Income selected (there's no difference between the income and expense pages besides what's selected at the top)
Maybe we could add support for query params on this page so you could create as many shortcuts as you need, e.g. <URL>/?type=EX for expenses, <URL>/?type=EX&is_paid=1 for a paid expense and so on.
That would be great!, though I realized now that the reason I never found this out was because I don't run wygiwyh as https so I never had the option of getting the full PWA
@sininen-blue commented on GitHub (Dec 4, 2025):
That would be great!, though I realized now that the reason I never found this out was because I don't run wygiwyh as https so I never had the option of getting the full PWA
That's a good reason, but you can still use the page. If somebody stumbles on this issue in the future, the url is <YOUR INSTANCE URL>/add/
So, I did a quick check and it seems we already support the type query param (and only it for now). This means you can already add your shortcuts like this:
Income: /add/ or /add/?type=IN
Expense: /add/?type=EX
This weekend I will take a look into supporting the remaining fields, shouldn't be too hard.
@eitchtee commented on GitHub (Dec 4, 2025):
That's a good reason, but you can still use the page. If somebody stumbles on this issue in the future, the url is `<YOUR INSTANCE URL>/add/`
So, I did a quick check and it seems we already support the type query param (and only it for now). This means you can already add your shortcuts like this:
- Income: `/add/` or `/add/?type=IN`
- Expense: `/add/?type=EX`
This weekend I will take a look into supporting the remaining fields, shouldn't be too hard.
@eitchtee commented on GitHub (Dec 6, 2025):
This will be available in the next release.
Ex.: `/add/?type=EX&date=2025-12-06&account=Test%20Account&category=Groceries&description=Test&amount=50.00&is_paid=true&tags=Food,Essential`
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Originally created by @sininen-blue on GitHub (Dec 3, 2025).
Would it be possible to add explicit separate pages for each transaction action like expense and income
This is mostly for phone shortcuts use. It would be nice to make a phone shortcut that directly goes to the "add expense" page
I did find the standalone add transaction page, but it's not shown anywhere on the UI
@eitchtee commented on GitHub (Dec 3, 2025):
Hey there.
The Standalone page is used for the PWA app, if you install it you should get a shortcut called "New transaction" that redirects you to it.
I'm guessing you want a standalone page where "Expense" or "Income" is prefilled, since the current page always starts with Income selected (there's no difference between the income and expense pages besides what's selected at the top)
Maybe we could add support for query params on this page so you could create as many shortcuts as you need, e.g. /?type=EX for expenses, /?type=EX&is_paid=1 for a paid expense and so on.
@sininen-blue commented on GitHub (Dec 4, 2025):
That would be great!, though I realized now that the reason I never found this out was because I don't run wygiwyh as https so I never had the option of getting the full PWA
@eitchtee commented on GitHub (Dec 4, 2025):
That's a good reason, but you can still use the page. If somebody stumbles on this issue in the future, the url is
<YOUR INSTANCE URL>/add/So, I did a quick check and it seems we already support the type query param (and only it for now). This means you can already add your shortcuts like this:
/add/or/add/?type=IN/add/?type=EXThis weekend I will take a look into supporting the remaining fields, shouldn't be too hard.
@eitchtee commented on GitHub (Dec 6, 2025):
This will be available in the next release.
Ex.:
/add/?type=EX&date=2025-12-06&account=Test%20Account&category=Groceries&description=Test&amount=50.00&is_paid=true&tags=Food,Essential