Umbraco Tour views
n
While creating a new tour, in each step you can add the view to show to the user. But where should the views be placed? in the static assets they are place in /views/common/tours/[touralias]/[viewname]/[viewname].html But i want to have my custom views,
d
Hi there! you should be able to place it anywhere you like. Most common place is in App_Plugins, but you can also dump it in wwwroot. You just need to provide the path to your view in the 'view' property of the 'step' object. So if I place my view in
App_Plugins/MyPlugin/MyCustomTourView.html
, then I can reference it in the step object as
"~/App_Plugins/MyPlugin/MyCustomTourView.html"
n
Ha this is doing the trick, i was really overthinking it. i was looking at their examples in their tours, where they just put a name, and they assume a certain path. but that didn't work :-). now it is working for the view