osCmax v2.5 User Manual
Results 1 to 8 of 8

How to activate CSS suckertree categories menu?

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 ...

      
  1. #1
    Member Luxoria's Avatar
    Join Date
    Sep 2010
    Location
    VA, USA
    Posts
    58
    Rep Power
    26


    Default How to activate CSS suckertree categories menu?

    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

  2. #2
    osCMax Development Team
    pgmarshall's Avatar
    Join Date
    Feb 2009
    Location
    London
    Posts
    2,678
    Rep Power
    49


    Default Re: How to activate CSS suckertree categories menu?

    Look in Configuration -> Templates

    Regards,
    pgmarshall
    _______________________________

  3. #3
    Member Luxoria's Avatar
    Join Date
    Sep 2010
    Location
    VA, USA
    Posts
    58
    Rep Power
    26


    Default Re: How to activate CSS suckertree categories menu?

    Thanks, but I searched three times for anything relating to a menu config in the whole admin section and I can't find it.

  4. #4
    osCMax Developer

    michael_s's Avatar
    Join Date
    Jul 2002
    Location
    Phoenix, AZ
    Posts
    19,907
    Rep Power
    568


    Default Re: How to activate CSS suckertree categories menu?

    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

  5. #5
    osCMax Development Team
    pgmarshall's Avatar
    Join Date
    Feb 2009
    Location
    London
    Posts
    2,678
    Rep Power
    49


    Default Re: How to activate CSS suckertree categories menu?

    Sorry - my mistake ...

    Go to Configuration -> SEO -> SEO Pop Out Menu

    Regards,

    Edit: Beaten to the answer by Michael!
    pgmarshall
    _______________________________

  6. #6
    Member Luxoria's Avatar
    Join Date
    Sep 2010
    Location
    VA, USA
    Posts
    58
    Rep Power
    26


    Default Re: How to activate CSS suckertree categories menu?

    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?

  7. #7
    Member Luxoria's Avatar
    Join Date
    Sep 2010
    Location
    VA, USA
    Posts
    58
    Rep Power
    26


    Default Re: How to activate CSS suckertree categories menu?

    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...

    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_contentstruefalse);
    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 //--> 
    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

    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 //--> 
    Thanks.


    *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.

  8. #8
    osCMax Developer

    michael_s's Avatar
    Join Date
    Jul 2002
    Location
    Phoenix, AZ
    Posts
    19,907
    Rep Power
    568


    Default Re: How to activate CSS suckertree categories menu?

    Also, does the CSS menu popout subcategories? I am not seeing subcategories at all even with a default install.
    You have to clear the menu tree to pick up an changes that you have made.

    Configuration >> SEO >> SEO Popout menu >> Reset categories menu >> True
    Attached Images Attached Images
    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

Similar Threads

  1. Accordion Menu for Categories
    By michael_s in forum New osCommerce Contributions
    Replies: 0
    Last Post: 02-15-2010, 01:12 AM
  2. Accordion Menu for Categories
    By michael_s in forum New osCommerce Contributions
    Replies: 0
    Last Post: 09-26-2009, 01:00 PM
  3. Categories Menu
    By pgmarshall in forum osCmax v2 Customization/Mods
    Replies: 3
    Last Post: 08-23-2009, 02:59 PM
  4. HOw to activate the DHTML Menu
    By Walter in forum osCMax v2 Features Discussion
    Replies: 0
    Last Post: 11-05-2006, 02:47 PM
  5. DHTML Categories Menu
    By damnedpig in forum osCmax v1.7 Discussion
    Replies: 5
    Last Post: 05-14-2004, 09:38 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •