XF 2.2 About plugin design

bytrislasis

Member
Licensed customer
Hello, first of all apologies for my bad english.
I'm developing a plugin
I want this plugin to work with another theme entirely.
So I don't want to include the xenforo css and js libraries at all.
When users click the plugin link in the menu, I want them to see a different page than xenforo.

What should I do for it
I will be glad if you help.
 
Depending on what you are already doing. For example, you can do this
$view->setPageParam('template', 'CUSTOM_PAGE_CONTAINER')
or
<xf:page option="template">CUSTOM_PAGE_CONTAINER</xf:page>
 
Depending on what you are already doing. For example, you can do this
$view->setPageParam('template', 'CUSTOM_PAGE_CONTAINER')
or
<xf:page option="template">CUSTOM_PAGE_CONTAINER</xf:page>
Yes, that's exactly what I want to do.
Could you please give a simple example?
 
Back
Top Bottom