2026.2. Cant disable Tips & Tricks popup Topic is solved
Moderators: leecollings, remb0
Forum rules
Before posting here, make sure you are on the latest Beta or Stable version.
If you have problems related to the web gui, clear your browser cache + appcache first.
Use the following template when posting here:
Version: xxxx
Platform: xxxx
Plugin/Hardware: xxxx
Description:
.....
If you are having problems with scripts/blockly, always post the script (in a spoiler or code tag) or screenshots of your blockly
If you are replying, please do not quote images/code from the first post
Please mark your topic as Solved when the problem is solved.
Before posting here, make sure you are on the latest Beta or Stable version.
If you have problems related to the web gui, clear your browser cache + appcache first.
Use the following template when posting here:
Version: xxxx
Platform: xxxx
Plugin/Hardware: xxxx
Description:
.....
If you are having problems with scripts/blockly, always post the script (in a spoiler or code tag) or screenshots of your blockly
If you are replying, please do not quote images/code from the first post
Please mark your topic as Solved when the problem is solved.
-
Omega
- Posts: 4
- Joined: Friday 05 June 2026 21:50
- Target OS: Raspberry Pi / ODroid
- Domoticz version:
- Contact:
2026.2. Cant disable Tips & Tricks popup
Hi
Update went well, but how to disable Tips & Tricks popup? Disabling "Show tips on startup" on popup does not work. Disabling Tips & Tricks "Show on startup" in My Profile does not work. After browser reopening, popup is back. Chrome, Firefox both act same way.
Update went well, but how to disable Tips & Tricks popup? Disabling "Show tips on startup" on popup does not work. Disabling Tips & Tricks "Show on startup" in My Profile does not work. After browser reopening, popup is back. Chrome, Firefox both act same way.
- Marathon2010
- Posts: 48
- Joined: Tuesday 02 February 2021 23:02
- Target OS: NAS (Synology & others)
- Domoticz version: 2026.2
- Location: Netherlands
- Contact:
Re: 2026.2. Cant disable Tips & Tricks popup
Noticing same behaviour. In my browsers used (also Firefox and Chrome) browserdata is cleared after closing the browser. The moment browserdata is not cleared tips and tricks are not shown on next login when they were previously disabled.
Synology DS920+ DSM7 (Docker) | Integrations: Audio, Heating, Gas, Electricity, Water, Alarm, Car, Camera, Doorbell, Garage, Garbage, Washer | SW: Tasmota, DzVents, Pushbullet, Telegram | Plugins: UPS, GPSLogger, BatteryLevel, Hyundai KIA, Rhasspy
-
Omega
- Posts: 4
- Joined: Friday 05 June 2026 21:50
- Target OS: Raspberry Pi / ODroid
- Domoticz version:
- Contact:
Re: 2026.2. Cant disable Tips & Tricks popup
At least, I am not alone. My browsers are set to clear browsing data too on close. So, this information is hold in user browser and not in server. That makes kiosk mode usage annoying and this leads to loosening security to keep popup away. That's not a good move...
-
zicht
- Posts: 308
- Joined: Sunday 11 May 2014 11:09
- Target OS: Windows
- Domoticz version: 2023.1+
- Location: NL
- Contact:
Re: 2026.2. Cant disable Tips & Tricks popup
EDIT : corrected my assumption, the where wrong...
There is indeed a switch in the user profile.
But if your pc in is the settings in a trusted network (you do not login) would that work ?
The switch in the userprofile does not work as intended some how.
Maybe a global switch to disable tips would help.
There is indeed a switch in the user profile.
But if your pc in is the settings in a trusted network (you do not login) would that work ?
The switch in the userprofile does not work as intended some how.
Maybe a global switch to disable tips would help.
Rpi & Win x64. Using : cam's,RFXCom, LaCrosse, RFY, HuE, google, standard Lua, Tasker, Waze traveltime, NLAlert&grip2+,curtains, vacuum, audioreceiver, smart-heating&cooling + many more (= automate all repetitive simple tasks)
-
Omega
- Posts: 4
- Joined: Friday 05 June 2026 21:50
- Target OS: Raspberry Pi / ODroid
- Domoticz version:
- Contact:
Re: 2026.2. Cant disable Tips & Tricks popup
I haven't investigated this in detail, but if this information is stored in cookies and the website doesn't configure it automatically during the initial visit, then it makes no difference whether you are on a trusted network network or not. It will always start with Tips & Tricks popup after cookies are cleared.
-
ophenix
- Posts: 5
- Joined: Wednesday 07 February 2024 10:59
- Target OS: Raspberry Pi / ODroid
- Domoticz version:
- Contact:
Re: 2026.2. Cant disable Tips & Tricks popup
If you want a quick fix to disable Tips & Tricks popup you can edit the file www/app/app.js
Find this code:
Add a return; so the popup never opens:
If you want to see Tips & Tricks you still can open it in the about menu.
Find this code:
Code: Select all
$rootScope.$on('$routeChangeSuccess', function() {
if (_tipsShown) return;
Code: Select all
$rootScope.$on('$routeChangeSuccess', function() {
return; // tips startup popup disabled
if (_tipsShown) return;
-
Omega
- Posts: 4
- Joined: Friday 05 June 2026 21:50
- Target OS: Raspberry Pi / ODroid
- Domoticz version:
- Contact:
Re: 2026.2. Cant disable Tips & Tricks popup
Ty ophenix. That fix works.
-
BarryT
- Posts: 411
- Joined: Tuesday 31 March 2015 22:06
- Target OS: Linux
- Domoticz version: 2024.3
- Location: east netherlands
- Contact:
Re: 2026.2. Cant disable Tips & Tricks popup
Ah, i was here for another thing on the forum and read this.
If you use docker, you can use this.
I fixed the annoying popup (since we not using the domoticz cache function) some time ago by adding this to the startup script (customstart.sh)
Works perfect.
If you use docker, you can use this.
I fixed the annoying popup (since we not using the domoticz cache function) some time ago by adding this to the startup script (customstart.sh)
Works perfect.
Code: Select all
#!/bin/bash
F=/opt/domoticz/FIRSTRUN
A=/opt/domoticz/www/app/app.js
M="Startup popup disabled"
T="\$rootScope.\$on('\$routeChangeSuccess', function() {"
[ -f "$F" ] || { python3 -m pip install YOURPACKAGES && touch "$F"; }
[ ! -f "$A" ] && echo "[customstart] ERROR: app.js not found" && exit 0
grep -qF "$M" "$A" && { echo "[customstart] Popup already disabled"; exit 0; }
grep -qF "$T" "$A" || { echo "[customstart] ERROR: target not found"; exit 0; }
cp -n "$A" "$A.original"; sed -i "/\\\$rootScope\\.\\\$on('\\\$routeChangeSuccess', function() {/a\\ return; // $M" "$A"
grep -qF "$M" "$A" && echo "[customstart] Popup disabled" || echo "[customstart] ERROR: patch failed"
-
raibisch
- Posts: 2
- Joined: Sunday 18 February 2024 17:39
- Target OS: Raspberry Pi / ODroid
- Domoticz version:
- Location: Germany
- Contact:
Re: 2026.2. Cant disable Tips & Tricks popup
ophenix wrote: Saturday 27 June 2026 7:55 If you want a quick fix to disable Tips & Tricks popup you can edit the file www/app/app.js
...
thank you very much for this fix, it worked fine for me.
...but this is an other place we have to patch at every new Version (the other place is the log interval in 1Minute steps)![]()
A question to the forum: who needs this popup
remember 2 rules for home automation:
- KISS
- keep always the WAF in mind (see: Wikipedia 'Woman_acceptance_factor')
- KISS
- keep always the WAF in mind (see: Wikipedia 'Woman_acceptance_factor')
- gizmocuz
- Posts: 3020
- Joined: Thursday 11 July 2013 18:59
- Target OS: Raspberry Pi / ODroid
- Domoticz version: beta
- Location: Top of the world
- Contact:
Re: 2026.2. Cant disable Tips & Tricks popup
This is likely caused by your browser. Do you run in private mode?
A lot of settings (and not just this one) is set in the browsers local storage.
Also on each device you can have separate settings this way
And if you decide to clear browser data each time, that is your own issue, not ours.
Why on earth would you do this for Domoticz? At least at a rule to not doing so.
Are we all getting this paranoid ?
A lot of settings (and not just this one) is set in the browsers local storage.
Also on each device you can have separate settings this way
And if you decide to clear browser data each time, that is your own issue, not ours.
Why on earth would you do this for Domoticz? At least at a rule to not doing so.
Are we all getting this paranoid ?
Quality outlives Quantity!
-
lost
- Posts: 715
- Joined: Thursday 10 November 2016 9:30
- Target OS: Raspberry Pi / ODroid
- Domoticz version:
- Contact:
Re: 2026.2. Cant disable Tips & Tricks popup
Well, I would not call this being paranoid to have an automatic setting that clears all browser data at close: I'm in this mode since nearly 2 decades, when the web started to become a user profiling nightmare for advertisement purpose.gizmocuz wrote: Wednesday 02 September 2026 16:08 if you decide to clear browser data each time, that is your own issue, not ours.
Why on earth would you do this for Domoticz? At least at a rule to not doing so.
Are we all getting this paranoid ?
Understand this is per user/device setting that may have no other choice for storage, but looking FF settings, you may setup URLs for which not to store data locally (a painstaking work, as all blacklists) but that's much easier to clean all on close as the opposite (whitelist URLs allowed to keep local data) looks unimplemented, unfortunately.
IMO, all "paranoïd" users will have settings like do-not-track (that was not taken with good care by many sites, unfortunately) or privacy-control (this one looks more promising, as several US states have setup legal constraints on this and Europe was asked to follow, taking the opportunity of current privacy regulations rework): Maybe this could be used as a user/browser side switch to disable tips?
- gizmocuz
- Posts: 3020
- Joined: Thursday 11 July 2013 18:59
- Target OS: Raspberry Pi / ODroid
- Domoticz version: beta
- Location: Top of the world
- Contact:
Re: 2026.2. Cant disable Tips & Tricks popup
This has nothing to do with 'tracking'.
A lot more is stored, like your session cookie, and also table / log chart settings
So it is very advisable to leave everything normal for Domoticz and probably other local web services as well.
A lot more is stored, like your session cookie, and also table / log chart settings
So it is very advisable to leave everything normal for Domoticz and probably other local web services as well.
Quality outlives Quantity!
-
lost
- Posts: 715
- Joined: Thursday 10 November 2016 9:30
- Target OS: Raspberry Pi / ODroid
- Domoticz version:
- Contact:
Re: 2026.2. Cant disable Tips & Tricks popup
This may be better from a performance POV but as many sites don't work on purpose without setting local data cleaning the bin at the end of web sessions at browser close is IMO for now the best compromise.
This does not block all tracking methods but at least makes it more difficult and possibly not legal. On the opposite, any think you aggree can't fall under legal constraints...
This does not block all tracking methods but at least makes it more difficult and possibly not legal. On the opposite, any think you aggree can't fall under legal constraints...