2026.2. Cant disable Tips & Tricks popup Topic is solved

Please use template to report bugs and problems. Post here your questions when not sure where else to post
Only for bugs in the Domoticz application! other problems go in different subforums!

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.
Post Reply
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

Post by Omega »

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.
User avatar
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

Post by Marathon2010 »

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

Post by Omega »

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

Post by zicht »

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.
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

Post by Omega »

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

Post by ophenix »

If you want a quick fix to disable Tips & Tricks popup you can edit the file www/app/app.js

Find this code:

Code: Select all

$rootScope.$on('$routeChangeSuccess', function() {
      if (_tipsShown) return;
Add a return; so the popup never opens:

Code: Select all

$rootScope.$on('$routeChangeSuccess', function() {
      return; // tips startup popup disabled
      if (_tipsShown) return;
If you want to see Tips & Tricks you still can open it in the about menu.
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

Post by Omega »

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

Post by BarryT »

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.

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

Post by raibisch »

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')
User avatar
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

Post by gizmocuz »

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 ?
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

Post by lost »

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 ?
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.

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?
User avatar
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

Post by gizmocuz »

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.
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

Post by lost »

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...
Post Reply