Page 157 of 227 FirstFirst ... 57107147155156157158159167207 ... LastLast
Results 1,561 to 1,570 of 2267
  1. #1561
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: Categories Dressing

    I found the current demo for the dropdown select mod, and it shows up to seven levels of subcats. Therefore, it ought to be able to work for you.
    It would probably not be practical to apply it to CD, as there is significantly different coding involved, not just styling.

  2. #1562
    Join Date
    Sep 2010
    Posts
    612
    Plugin Contributions
    0

    Default Re: Categories Dressing

    Hmm, where did you see this? On the add on even with sub-cat enabled it only shows the first level.

    Anywho, here is the thread for this mod:
    http://www.zen-cart.com/forum/showthread.php?t=62197

    Thank you so much for taking the time to answer me. I appreciate it.

  3. #1563
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

  4. #1564
    Join Date
    Dec 2009
    Location
    Sarajevo
    Posts
    80
    Plugin Contributions
    0

    Default Re: Categories Dressing

    Quote Originally Posted by gjh42 View Post
    adi - Here is a new case 7 that should give the fourth level subcats only when at the fourth level.
    PHP Code:
          case 7:// active subtree, active branches only, only 1st & 4th level - treat first subcat like top - customized 20100205 for madijelovi
            
    if($cPath_top != $path_top){//only 1 top cat's subs
              
    $skip_cat 1;
              break;
            }
            if(
    $cat_depth == 1){//show all first level  subs
              
    break;
            }
            if(
    $cat_depth == and substr_count($_GET['cPath'],'_') == 4){//check 4th level for active parent, only for $cPath depth 4
              
    $path_ids explode('_',$path);
              
    $path_parent $path_ids[count($path_ids)-2];
              if (
    in_array($path_parent,explode('_',$_GET['cPath']))) break;//show only subcats w parent in $cPath
            
    }
            
    $skip_cat 1;//skip all others
            
    break; 
    Hello Glen,

    After inserting many new items in my shop, solution with showing fourth level subcats only when at the fourth level at my website is now giving me some troubles Here's the problem:

    a) If user wants to see spare parts for car brand MITSUBISHI, categories sidebox on right side of website is visible
    Example link 1

    b) If user user wants to see spare parts for car brand KIA, categories sidebox on right side of website is not visible
    Example link 2

    I thought I could reveal the problem by comparing these two links but I didn't found anything which could cause this issue. I am not sure but I think it has something with linked and non-linked products, not sure...

    Any help is appreciated.

    Greetings,
    Adi
    Last edited by adi2009; 2 Dec 2010 at 10:46 AM.
    MY Website
    The best of the best: Zen Cart

  5. #1565
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: Categories Dressing

    I'll have to look at this tomorrow - I'm too tired tonight to get into another project.

  6. #1566
    Join Date
    Jul 2010
    Location
    Boston
    Posts
    139
    Plugin Contributions
    0

    Default Re: Categories Dressing

    Quote Originally Posted by gjh42 View Post
    I don't know what subcategory you have added that does not appear, but when you go to the top category Canvases, the page output cuts off just where the category description should be starting:

    <div id="navBreadCrumb"> <a href="http://www.stitchboutiqueboston.com/">Home</a>&nbsp;::&nbsp;
    Canvases

    </div>
    <!-- eof breadcrumb -->


    <!-- bof upload alerts -->
    <!-- eof upload alerts -->

    The Yarn cat shows its subcat listing just fine. I suggest you check the Canvases cat description.

    Thank you for your reply. I am not sure what you are referring to. I did ad a sub category under yarn called kits and it does not appear on the menu.

  7. #1567
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: Categories Dressing

    Yarn already has products in it; you cannot have subcategories and products in the same category without causing problems. This is the first time I have seen it affect the sidebox, but you will notice that the subcat does not appear in the center, which is a common effect of this practice.

    You need to reorganize your categories so there are no products and subcats in the same category.

  8. #1568
    Join Date
    Sep 2010
    Posts
    612
    Plugin Contributions
    0

    Default Re: Categories Dressing

    Hi Glen,

    The other night you tried to help me with that drop down menu? It's a few posts back. Anyway, that demo is exactly what I need this mod to do...but it doesn't. It only shows the first 2 category levels...sorry to bother you again...but just wanted to see if you had any ideas?

    You can respond to me in the proper thread if you have a chance. Might be easier. Thank you!

    http://www.zen-cart.com/forum/showthread.php?t=62197

  9. #1569
    Join Date
    Dec 2009
    Location
    Sarajevo
    Posts
    80
    Plugin Contributions
    0

    Default Re: Categories Dressing

    Quote Originally Posted by adi2009 View Post
    Hello Glen,

    After inserting many new items in my shop, solution with showing fourth level subcats only when at the fourth level at my website is now giving me some troubles Here's the problem:

    a) If user wants to see spare parts for car brand MITSUBISHI, categories sidebox on right side of website is visible
    Example link 1

    b) If user user wants to see spare parts for car brand KIA, categories sidebox on right side of website is not visible
    Example link 2

    I thought I could reveal the problem by comparing these two links but I didn't found anything which could cause this issue. I am not sure but I think it has something with linked and non-linked products, not sure...

    Any help is appreciated.

    Greetings,
    Adi
    Hi Glenn,

    I am still trying to figure out what could be the problem and only difference between pages with visible and not visible sidebox on the right side is difference in links:

    Pages with visible sidebox on the right side have this type of URL

    cPath=xxx_xxx_xxxx_xxxx_xxxx

    and pages with not visible sidebox on the right side have this type of URL

    cPath=xxx_xxxx_xxxx_xxxx

    Perhaps this is good start for solving my issue.
    Also I made two screenshot which it explains it better:

    http://img809.imageshack.us/img809/9...reenshot1p.gif
    http://img8.imageshack.us/img8/4781/screenshot2o.gif

    Thank you and hope you can help with this.

    Cheers
    MY Website
    The best of the best: Zen Cart

  10. #1570
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: Categories Dressing

    I don't remember all the details of previous setup, but if the sidebox is set to not show except at the fourth subcat level, that would explain why it is not showing for pages with cPath xxx_xxx_xxxx_xxxx which is the third level. That setup depends on all the products being at the same level. If Kia and Mitsubishi have different structures, there will be more complicated coding required - maybe too complicated to deal with here.
    You have KIA : CEED : 1. Dijelovi...
    and MITSUBISHI : PAJERO : 2.5 TD... : 3. Dijelovi...

    You need to have an engine size/year or whatever subcat level for Kia, even if there is only one choice in it.
    KIA : CEED : 2000-2010 : 1. Dijelovi...

 

 

Similar Threads

  1. categories dressing
    By fw541c in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 19 Nov 2010, 09:29 PM
  2. Categories Dressing
    By wotnow in forum Addon Sideboxes
    Replies: 10
    Last Post: 7 Apr 2010, 03:06 AM
  3. Categories Dressing issue
    By Maynards in forum Addon Sideboxes
    Replies: 0
    Last Post: 13 Mar 2010, 10:51 PM
  4. Categories Dressing
    By Maynards in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 12 Mar 2010, 11:05 PM
  5. Categories Dressing
    By PGlad in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 7 Aug 2007, 07:05 PM

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
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR