Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
7 changes: 7 additions & 0 deletions docs/general-concepts/guided-tours/create-whatsnewtour.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,13 @@ DELETE FROM "#__guidedtours"
</TabItem>
</Tabs>

Note that a better approach, to ensure none of the user's Guided Tours is removed by mistake, is to replace the LIKE with an IN, naming each tour specifically.
For instance, in MySQL,

```sql
SELECT `id` FROM `#__guidedtours` WHERE `uid` IN ('joomla-whatsnew-5.2', 'joomla-whatsnew-5.3', 'joomla-whatsnew-5.4')
```

On a minor release (for instance 5.3), set the previous What's New tour to NOT autostart:

<Tabs>
Expand Down
2 changes: 2 additions & 0 deletions docs/general-concepts/guided-tours/creating-tours.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Creating and launching tours

The simplest way to create tours for your organization or extensions is to create those tours with the tools provided in Joomla.

Go to System (Manage section) -> Guided Tours.
Expand Down