Results 1 to 10 of 2247

Hybrid View

  1. #1
    Join Date
    Aug 2006
    Posts
    15
    Plugin Contributions
    0

    Idea or Suggestion Re: MultiSite Module Support Thread

    Quote Originally Posted by KThompson View Post
    what was your cure I have the same problem


    In multisite module you can configure the site root category by defining var CATEGORIES_ROOT in the config_site files

    Changes to file categories_ul_generator.php from the css menu mod:

    About line 25
    find

    Code:
    class zen_categories_ul_generator {
    var $root_category_id = 0,
    replace with

    Code:
    class zen_categories_ul_generator {
    var $root_category_id = CATEGORIES_ROOT,
    about line 56:

    multisit mod has a cat_filter function for compatiblity with other mods

    find

    Code:
    $categories = $db->Execute($categories_query);
    replace with

    Code:
    $categories = $db->Execute(cat_filter($categories_query));
    and about line 63:
    find

    Code:
    function buildBranch($parent_id, $level = 1, $submenu=false) {
    if ($parent_id != 0) {
    replace with

    Code:
    function buildBranch($parent_id, $level = 1, $submenu=false) {
    if ($parent_id != CATEGORIES_ROOT) {
    Have fun!

    Grtz Lenny

  2. #2
    Join Date
    May 2007
    Posts
    136
    Plugin Contributions
    0

    Default Re: MultiSite Module Support Thread

    Ok one more question, it does not seem to be loading in the templates right for some reason it's going out a folder my cart is in a folder called store in my main root folder the site should be looking for templates in:
    http://www.mystore.com/store/includes/templates/

    But it's looking for the templates in:
    http://www.mystore.com/includes/templates/

    Anyone know why it's going out a directory and how to fix this?

    Thanks for the help guys.

  3. #3
    Join Date
    Jul 2007
    Location
    Minneapolis, MN, United States
    Posts
    71
    Plugin Contributions
    0

    Default Re: MultiSite Module Support Thread

    Thanks Lenny!

 

 

Similar Threads

  1. v154 WorldPay Module version 3.0 - Support thread
    By countrycharm in forum Addon Payment Modules
    Replies: 116
    Last Post: 31 Dec 2025, 11:36 AM
  2. Bambora/Beanstream Payment Module Support Thread
    By swguy in forum Addon Payment Modules
    Replies: 127
    Last Post: 26 Mar 2021, 04:13 PM
  3. WorldPay Module version 2.0 - Support thread
    By philip_clarke in forum Addon Payment Modules
    Replies: 729
    Last Post: 4 Nov 2017, 08:23 AM
  4. PC Configurator Module [Support Thread]
    By lebrand2006 in forum All Other Contributions/Addons
    Replies: 254
    Last Post: 22 Aug 2012, 03:52 PM

Posting Permissions

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