Re-Displaying first-time login tutorial?

Permalink
Hi,

Is there a way to re-display the tutorial popup that occurs the first time you login to C5? I have a new user coming in (of which I used "Sign In As") and I would like them to view the contents of it on their first login without recreating her account.

thanks

 
MrKDilkington replied on at Permalink Reply
MrKDilkington
Hi bayleafmedia,

I didn't find exactly where to reset the Welcome tour, but I think it is connected with newsflow.js.
concrete\js\build\core\app\newsflow.js
bayleafmedia replied on at Permalink Reply
Thanks.

I'll take a look to see what I can find. Otherwise I'll just recreate her account. I was hoping for a checkbox somewhere :) but I guess it can't be that simple :)

thanks again
mnakalay replied on at Permalink Best Answer Reply
mnakalay
you can do it manually. Go to your database, look for the table configstore.

In tha table look for rows which have the value MAIN_HELP_LAST_VIEWED in the column cfKey

Look for the row that has that value and also with the column uID containing the user ID of that particular user. Delete that line and the popup will show again when she connects.

To find the user's uID, simply go to the user's profile in your dashboard and look in the address bar, you'll see the uID there. It's an integer.
MrKDilkington replied on at Permalink Reply
MrKDilkington
@mnakalay

Nice find, that works.
bayleafmedia replied on at Permalink Reply
Excellent. Thanks!