Quote from: Letti at Jul 04, 2011, 01:55 PM
Thanks for the help.
Unfortunately it still doesn`t work. For testing I tried this in a snippet, but there was no wayfinder output on the site from which I called the snippet:
<?php
$params['startId'] = '0';
$params['level'] = '3';
$modx->runSnippet('Wayfinder'), $params);
Is this kind of setting parameters still OK in Revolution?
$params[’startId’] = ’0’;
Letti, you have an extra parentheses in the runSnippet line (the middle one). Any syntax error will make a plugin hang. That’s why it’s a good idea to implement as a snippet first.
Thanks a lot. You are completely right. Now it works...