Page 111 of 227 FirstFirst ... 1161101109110111112113121161211 ... LastLast
Results 1,101 to 1,110 of 2267
  1. #1101
    Join Date
    Dec 2009
    Posts
    3
    Plugin Contributions
    0

    Default Re: Categories Dressing

    Alright, I went back and reset all of the pages and then started fresh from the instructions. The images are still not linking and there are error text links showing up below them. What am I doing wrong?

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

    Default Re: Categories Dressing

    It looks like there are two problems. First, you are defining headings when you want category links. Do not use any of those defines - comment them all out.

    Second, you are somehow getting the classname generated incorrectly. You should be getting output similar to this
    Code:
    <li class="cat-top"><a class="cat-not-selected catBg25" href="
    Note the space; this is two classnames, cat-not-selected and catBg25.

    You are getting this
    Code:
    <li class="cat-top"><a class="cat-not-selectedcatBg69" href="http://shoptekne.com/zencart/index.php?main_page=index&amp;cPath=69"><img src="includes/templates/tekne_default/images/pixel_trans.gif" alt="" width="100%" height="100%" title="Necklaces" /></a></li>
    This is one classname, cat-not-selectedcatBg69, and .catBg69 in the stylesheet will have nothing to do with this name.

    The space is created in categories_dressing_functions.php; did you do any editing of that file at all?

    PHP Code:
    function cat_name_display($cat_name_display$current_path) {
    //...
      //display background image if exists for category name in current language - with title tag
      
    } elseif (file_exists(DIR_WS_TEMPLATE 'buttons/' $_SESSION['language'] . '/catbg' $current_path CAT_NAME_IMG_EXT)) {
        
    $cat_name_display zen_image(DIR_WS_TEMPLATE_IMAGES 'pixel_trans.gif''''100%''100%''title="' $cat_name_display '"');
        
    $cat_img_bg ' catBg' $current_path
    ' catBg' has a space before cat, which is necessary for the function to work.
    What does that line in your copy of categories_dressing_functions.php look like?

  3. #1103
    Join Date
    Dec 2009
    Posts
    3
    Plugin Contributions
    0

    Default Re: Categories Dressing

    Weirdly enough when I deleted and replaced the functions page it started working fine. I guess it was a dreamweaver issue. Thanks for all of your help!

  4. #1104
    Join Date
    Mar 2009
    Location
    Crockett, Texas
    Posts
    139
    Plugin Contributions
    0

    Default Re: Categories Dressing

    Can someone tell me how to remove this thing from my zen cart? I wanted banner images for my sideboxes and I ended up with a mess of stuff I don't understand or have time to figure out. I do not need images in my category box, just images to add in place of the text for my sideboxes. If someone could explain how to implement this or tell me how to remove without crashing my site, I would greatly appreciate it.

    http://www.allclipart.info/store

    Thank You...amandavz

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

    Default Re: Categories Dressing

    Categories Dressing will let you have images in place of text in your categories sidebox, but it does not affect other sideboxes.
    The readme.html has complete instructions for substituting images, as well as bold notes for turning off the features you don't need.

    If you want to uninstall it, just delete the files in the mod (the readme has a complete file list).

  6. #1106
    Join Date
    Mar 2009
    Location
    Crockett, Texas
    Posts
    139
    Plugin Contributions
    0

    Default Re: Categories Dressing

    Hi Glen,

    Thanks for the quick response. Maybe I am a total moron, but I would have to be college degreed to understand your instructions. I was looking for zen cart for dummies instructions. I did try to delete the files in the mod once already and I lost all side boxes and content for my site, I was left with only a background, header and "HOME / LOGIN" buttons at the top.

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

    Default Re: Categories Dressing

    None of the mod files overwrites any existing file, so deleting them would have no effect on the rest of the site. First try deleting /includes/templates/your_template/sideboxes/tpl_categories.php. Without that one, the rest just sit there and do nothing.

    There are many options in this mod, so the readme needs to have a lot of text. The basic information for replacing category names with images is just this:

    To display images in place of selected category names:

    Make your images with names like catimg#.gif (or catbg#.gif and catbg#hover.gif), and save in /includes/templates/your_template/buttons/english/. ...
    Replace the # with the category cPath.

  8. #1108
    Join Date
    Dec 2009
    Location
    Sarajevo
    Posts
    80
    Plugin Contributions
    0

    Default Re: Categories Dressing

    Quote Originally Posted by gjh42 View Post
    For help with Cat Dressing, please post in its support thread so the info stays in one place.
    This kind of customization will require a good grasp of CSS, so the more you know about that the easier it will be to help you.
    @Glenn

    regarding my problem described in this thread I am switching to support thread

    I have followed installation instructions for Categories Dressing and installed it successfully. Problem for me is where to start and what is the first step, so I could achieve my subcategories listing looks like this:

    http://img138.imageshack.us/img138/6494/28265514.jpg

    instead of this

    http://img138.imageshack.us/img138/5663/41595109.jpg

    also, in last post you have mentioned that I must have good knowledge of CSS, no problem I think I will be able to handle it

  9. #1109
    Join Date
    Nov 2005
    Posts
    157
    Plugin Contributions
    0

    Default Re: Categories Dressing

    find a hard time playing with the parameter. can you suggest any combination?

    for example, i want all the tree when any cate or sub cate or sub sub cate is select

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

    Default Re: Categories Dressing

    adi2009 -
    If all your client wants is to have the current category's subcategories listed as you show, you can do it with one rule change in your regular stylesheet - something like this.
    Code:
    .categoryListBoxContents {
        width: 100% !important;
        float: none;
        border: 2px solid #224466;
        background: #aabbcc;
        text-align: left;
        }
    But I had the impression that they wanted a bunch more customization. If you want the "Parts" sidebox on the right at the last subcat level, you would use the #chcategories sidebox for the main (left) menu and the #categories sidebox on the right with code to let it show only at the right level.

 

 

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