Would someone be so kind to point to where one can activate the CSS menu for the categories infobox. I am using the 2.5 beta.
thanks
This is a discussion on How to activate CSS suckertree categories menu? within the osCMax v2 Features Discussion forums, part of the osCmax v2.0 Forums category; Would someone be so kind to point to where one can activate the CSS menu for the categories infobox. I ...
Would someone be so kind to point to where one can activate the CSS menu for the categories infobox. I am using the 2.5 beta.
thanks
Look in Configuration -> Templates
Regards,
pgmarshall
_______________________________
Thanks, but I searched three times for anything relating to a menu config in the whole admin section and I can't find it.
Configuration >> SEO >> SEO Pop-out menu >> Enable FWR Menu >> True
Michael Sasek
osCMax Developer
osCmax Installation Service - Have our professionals install osCmax on your server - same day service!
osCmax 2.5 User Manual - the must have beginners guide to osCmax v2.5
Stay Up To Date with everything osCMax:
Free osCmax Newsletters - Security notices, New Releases, osCMax News
osCmax on Twitter - Up to the minute info as it happens. Know it first.
osCmax Documentation
Sorry - my mistake ...
Go to Configuration -> SEO -> SEO Pop Out Menu
Regards,
Edit: Beaten to the answer by Michael!
pgmarshall
_______________________________
Thanks, it is working for me now, kindof.
I modified my box.tpl.php with a custom graphics wrap which now is not showing around the categories box.
The box that is created does not go through the template's box.tpl.php file. Is there a easy way to modify fwr.catagories.php to create a templated infobox other than a default one currently showing up?
I was able to figure out how to have fwr_categories passthrough the BTS so my box.tpl.php template would take effect.
Here is the code I changed at the bottom of fwr_categories.php.
Please let me know if my changes could possibly create a problem. So far it works just fine. *edit* well, the sitemap link in the Information infobox does not generate after my modification. I am not going to use the sitemap feature but still I wanted to note it.
From...
To this...PHP Code:$menuid_string = $categories['menuid_string'];
// Print the javascript for the suckertree var menuids
echo $categories['menuid_js'] . PHP_EOL;
unset($categories['menuid_string'], $categories['menuid_js']); // Housekeeping
$info_box_contents = array();
$info_box_contents[] = array('text' => BOX_HEADING_CATEGORIES); // Standard infobox heading
new infoBoxHeading($info_box_contents, true, false);
ob_start(); // Start output buffering
displayCategories($categories); // Read categories into buffer
$info_box_categories = ob_get_contents(); // Pass buffer contents to $info_box_categories
ob_end_clean(); // Clear the buffer
$info_box_contents = array();
$info_box_contents[] = array('text' => $info_box_categories);
new infoBox($info_box_contents);
?>
</td>
</tr>
<!-- categories_eof //-->
Thanks.PHP Code:$menuid_string = $categories['menuid_string'];
// Print the javascript for the suckertree var menuids
echo $categories['menuid_js'] . PHP_EOL;
unset($categories['menuid_string'], $categories['menuid_js']); // Housekeeping
ob_start(); // Start output buffering
displayCategories($categories); // Read categories into buffer
$boxContent = ob_get_contents(); // Pass buffer contents to $boxContent
ob_end_clean(); // Clear the buffer
$boxHeading = BOX_HEADING_CATEGORIES;
include (bts_select('boxes', $box_base_name)); // BTS 1.5
?>
</td>
</tr>
<!-- categories_eof //-->
*edit*
Also, does the CSS menu popout subcategories? I am not seeing subcategories at all even with a default install.
Last edited by Luxoria; 11-21-2010 at 06:17 AM.
You have to clear the menu tree to pick up an changes that you have made.Also, does the CSS menu popout subcategories? I am not seeing subcategories at all even with a default install.
Configuration >> SEO >> SEO Popout menu >> Reset categories menu >> True
Michael Sasek
osCMax Developer
osCmax Installation Service - Have our professionals install osCmax on your server - same day service!
osCmax 2.5 User Manual - the must have beginners guide to osCmax v2.5
Stay Up To Date with everything osCMax:
Free osCmax Newsletters - Security notices, New Releases, osCMax News
osCmax on Twitter - Up to the minute info as it happens. Know it first.
osCmax Documentation
Bookmarks