There seems to be only two variations of simple_category_tree that will work, even with all_subcats_products installed, and both are as listed in the readme and sample files:
PHP Code:
<?php
$content = '';
$content .= $_SESSION['category_tree']->build_category_string('ul', 'li', '', 0, 2);
?>
(unordered list version)
PHP Code:
<?php
$content .= $_SESSION['category_tree']->build_category_string($parent_tag = 'div', $child_tag = 'span', $divider = '', $categories_id = 0, $max_level = 9, $include_root =
false, $strict = false)
?>
(flat line version)
neither gives a fully expanded tree, and the additional variables (help file) do not seem to change anything.
Personally, I'm a little puzzled..
Bookmarks