Via the url can I render a view in a different MasterView (or is this just for Custom Pages)
I have 2 questions:
In Custom Pages I can use: mysuperforumurl.com/index.php?p=/plugin/page/mycustompage/mycustommasterview to render (correct term?) mycustom html in my custom master view.
Is it possible to do something similar for other views and plugins? I would like to have a link to my landing page which would be identical to my mysuperforumurl.com/index.php?p=/discussions but with a different master view file. I would still like to keep the discussions view with the current masterview file however.
If this isn't possible I apologise in advance but I'll be asking a question on how to show the discussions view in the content area of my Custom Page, after my own images and text html.
Thanks again, I'm trying hard but don't really understand much more than the html or css for Vanilla/Garden.
Comments
first master template and view are different concept.
You would have to do what you want with a themehooks or plugin (you would have to read the docs and wiki).
you could do something like
if you put the master template in your themes views naming it
my.master.php
you can refer to it like soyou can also use
.tpl
files with smarty.grep is your friend.
Thanks again!