Recent content by G00r

  1. G

    XF 2.2 How to add template content by plugin/addon to the main forum page(es)?

    Thaks! Got a working code now. It is kinda hard to understand how it works, because there are lots of small but very important steps to do. My working example looks like this: <?php namespace TestProjects\Test\XF\Pub\Controller; use XF\Mvc\ParameterBag; use XF\Pub\Controller\Forum; class...
  2. G

    XF 2.2 How to add template content by plugin/addon to the main forum page(es)?

    Thank you for your help but some how i don't get it to work. <?php namespace TestProjects\Test; use XF\Mvc\ParameterBag; use XF\Pub\Controller\Forum; class Test extends Forum { // XF\Pub\Controller\Forum :: actionList · forum_list public function actionList(ParameterBag $params)...
  3. G

    XF 2.2 How to add template content by plugin/addon to the main forum page(es)?

    The examples and tutorials only are for new pages, new addons. But how can i add aditional content to the template forum_list aka the forum index page? I know, as Brogan wrote, i can use template modifications and that is easy and quick for static content. But how can i add dynamic content (SQL...
  4. G

    XF 2.2 How to add template content by plugin/addon to the main forum page(es)?

    Thank you, that was easy! The hard part seems to be to get some SQL data involved. Did try a callback, but only was able to get a string return working. I don't even know if it is possible that way. There is not much information or example code to find on that. Before i waste more on try and...
  5. G

    XF 2.2 How to add template content by plugin/addon to the main forum page(es)?

    Hey guys! From vbulletin 4 comin, i did my first steps in xenforo by checking out the portal addon demo and watching the YT videos done by kier. I came very far on my first addon, but i hit a wall on the question on how to add template content to the existing forums main pages without altering...
Top Bottom