Search:

Type: Posts; User: pjb923

Page 1 of 3 1 2 3

Search: Search took 0.01 seconds.

  1. Replies
    21
    Views
    10,242

    Re: Display Read Only attribute in cart

    includes/modules/attributes.php

    It's actually line 486 in the default file. My attributes module did have other modifications, but reverting back to the default did not solve my problem.
  2. Replies
    21
    Views
    10,242

    Re: Display Read Only attribute in cart

    I tried that and it displays on the product info page, but I am still not seeing this attribute in the shopping cart.

    I think it has something to do with the commented out code on the attributes...
  3. Replies
    21
    Views
    10,242

    Display Read Only attribute in cart

    I have a site where certain items need to have a note saying "Final Sale. This item cannot be returned."

    This text needs to be visible not only on the product info page, but in the shopping...
  4. Replies
    2
    Views
    752

    Re: Remove '

    These things can be tricky to spot. Writing <<h2 instead of <h2 would do it.

    Have you tried searching for << using developers toolkit?

    I think your best bet would be to very carefully look...
  5. Replies
    7
    Views
    1,248

    Re: Logo Overlapping Tagline...

    You are probably viewing your page on a computer with it's resolution set to at least 1280px wide. Anything smaller than that will cause the images to overlap because you are using a fluid width...
  6. Replies
    11
    Views
    1,719

    Re: Featured Products

    Any luck getting this to work?

    tpl_index_categories looks good to me, so there must be a problem somewhere else that is preventing the featured products from displaying properly.
  7. Replies
    11
    Views
    1,719

    Re: Featured Products

    The good news is that the expression match is working correctly because navigating to a sub-directory shows the disabled text string.

    It's hard to say why it's showing up multiple times.
    ...
  8. Replies
    11
    Views
    1,719

    Re: Featured Products

    Try reverting back to the original code and just add the following.



    <?php
    if (preg_match("._.", $cPath)) {
    echo 'disable featured products';
    }
    else {
    echo 'enable featured...
  9. Replies
    11
    Views
    1,719

    Re: Featured Products

    I was determined to figure this out because I am also interested in the answer.

    Since all subcategories contain an underscore in the cPath, I used a simple regular expression to selectively...
  10. Replies
    11
    Views
    1,719

    Re: Featured Products

    I'm sure there is a more elegant way to handle this with php, but if you can't find another solution you can use CSS to hide the featured products from the subcategory pages. This could become very...
  11. Replies
    20
    Views
    2,158

    Re: Messed up layout :(

    Without looking at your code, I can't tell you exactly what you need to change. But I can assure you that the login box is not in your header.

    Make sure you followed the instructions for the...
  12. Re: Can I make it dynamically change from 5 to 4 to 3 columns based on screen resolut

    Very good advice. It never occurred to me that you could use display: none; on the breaks. Much easier than hacking up the tpl_columnar_display.php code. :bigups:
  13. Replies
    20
    Views
    2,158

    Re: Messed up layout :(

    You are trying to place the login box in the left column. I am assuming that you are using the Login Box contribution.

    The column is not wide enough for it to fit. This is the reason for the...
  14. Re: Can I make it dynamically change from 5 to 4 to 3 columns based on screen resolut

    You can exceed 12 items, but after the 12th there will be a line break inserted and the 13th item will be forced into the next row. I can't figure out where the break is being inserted in the code,...
  15. Re: Can I make it dynamically change from 5 to 4 to 3 columns based on screen resolut

    Sorry, I thought you were using the column grid module.

    If you want to accomplish the same thing for the new products box, follow the same instructions but apply the changes to...
  16. Re: Can I make it dynamically change from 5 to 4 to 3 columns based on screen resolut

    There is a quick and dirty way to do this that only requires a simple code change to /modules/YOUR_TEMPLATE/product_listing.php

    First you need to set the column widths to a fixed value.
    Around...
  17. Replies
    7
    Views
    1,023

    Re: Using background-images for centerColumn

    Either method will work.
    The "background" selector allows you to declare all background properties in a single line. This includes background-color, background-image, background-repeat,...
  18. Replies
    5
    Views
    1,000

    Re: Category css name

    The easiest way to handle this is to use the body id of the index page to limit the scope of the css declarations.

    Try adding #indexBody in front of your selectors to only effect the index pages. ...
  19. Replies
    7
    Views
    1,023

    Re: Using background-images for centerColumn

    The css property "background-image" will only accept a single url value and you cannot add the repeat declaration on the same line. This is is not valid CSS syntax and the entire line is ignored.
    ...
  20. Replies
    6
    Views
    2,479

    Re: Developing a blueprint css zen template

    Sorry if I sounded defensive. There is a debate on CSS frameworks in general. Some people think they add a lot of unneeded bloat to sites and other people swear by them.

    I am still in the early...
  21. Replies
    11
    Views
    1,518

    Re: No header image in IE also IE error

    For some reason IE is just completely ignoring your declarations for the navigation class.

    You have this line in your stylesheet
    .navigation {background: url(../images/grafitti.gif)right...
  22. Re: Subcategory pages with the same layout as specials

    It looks like you got rid of most of the space.

    Try adding this to your style sheet if you want to get rid of the last bit.

    h3.itemTitle {
    margin-bottom: 0;
    }
  23. Replies
    1
    Views
    643

    Re: add image to side box

    You can use the "blank sidebox" contribution to add an image or just about anything else you want to the left column.
  24. Re: more info link that shows up when item is sold out

    I'm glad to hear that you got it working. I must have misread your first post and thought you had the entire line bolded. Your code is correct.

    I always struggle with all of the extra linebreaks...
  25. Replies
    6
    Views
    2,479

    Re: Developing a blueprint css zen template

    I'm not really going through a whole lot of trouble. What I have done was just basic manipulation of a few template files and uploading the blueprint files. How is this more work than the normal...
  26. Re: more info link that shows up when item is sold out

    Try changing the following:

    Instead of removing the bolded line completely, try changing it to



    $lc_button = '';


    Then try changing line 240 from:
  27. Re: Subcategory pages with the same layout as specials

    Install "Column Layout Grid for Product Listing", which can be found in the software addons section.

    Set "Product Listing - Layout Style" to columns and
    "Product Listing - Columns Per Row" to 3.
  28. Replies
    6
    Views
    2,479

    Re: Developing a blueprint css zen template

    I have been making progress on my template and put up 2 new articles discussing the overall framework and changes to the product info and product listing pages.
    ...
  29. Replies
    5
    Views
    1,080

    Re: Remove More info link

    Moving the item title above the price can be accomplished by changing the order under "configuration > Product Listings". Set image to 1, name to 2, and price to 3.

    The "... more info" text is...
  30. Re: Can one subcategory have a different template?

    I think the easiest way to handle this would be by creating a category specific stylesheet. Create a new style sheet named c_??.css, where ?? is the category id you want to edit.

    Now just add a...
  31. Replies
    8
    Views
    1,034

    Re: Problems with design of store front

    Use the developers toolkit to search for HEADER_TITLE_CATALOG, or any of the other missing text. It should be defined in:
    includes/languages/english/header.php
    Or if you are using a custom...
  32. Replies
    6
    Views
    2,479

    Developing a blueprint css zen template

    I just started to develop a barebones template that is based on the Blueprint CSS framework.

    The basic structure is in place (currently hard coded with only a left and center column) and I will be...
  33. Replies
    5
    Views
    993

    Re: Sidebar synchronization

    Try using Firefox with Firebug and go through each element top to bottom making small adjustments.

    The first one I would try is making the #sidebar1 h4 margin 0.
    Then add margin-bottom: 8px to...
  34. Replies
    2
    Views
    1,395

    Re: Product page layout change, HELP!

    First, make a copy of tpl_product_info_display.php and place it in your template/templates folder.

    This file is very well commented and you should be able to get most of the way to where you want...
  35. Re: Different body background color for each category page

    This is something very simple that is often overlooked.

    You need to create a new style sheet for each category. The name of the file is the key and will be based on the category id. To change...
  36. Sticky: Re: The CSS Style sheet explained (v1.3.8 classic)

    The firefox web developer addon is great, but I would highly recommend taking a look at the Firebug extension.
    http://getfirebug.com/

    I think this may be what schoolboy was referring to when he...
  37. Replies
    6
    Views
    1,134

    Re: Problem with Logo banner

    Are you sure you added the code to the correct stylesheet?

    includes/templates/silverfish/css/stylesheet.css

    I don't see that line of code in the file.
  38. Replies
    6
    Views
    1,134

    Re: Problem with Logo banner

    I think your issue is the 1.5em padding that is being added to your header image in the first line of your stylesheet.

    a img {border: none;padding: 1.5em; }

    Try adding this somewhere below...
  39. Replies
    1
    Views
    822

    Re: Missing Picture in Firefox but not IE

    I ran your stylesheet through a validator and found 1 error.

    #mainWrapper Value Error : vertical-align center is not a vertical-align value : center

    I think you meant, vertical-align:...
  40. Re: New Products Sidebox: Same Product Listed Twice

    It appears to be some sort of bug created by having your site in 2 different languages. The only duplicate products I am seeing are the same product in both English and Italian, but they link to the...
  41. Replies
    785
    Views
    157,671

    Re: AJAX IMAGE Swapper support thread

    I was just coming here to post the exact same fix. Jay was kind enough to troubleshoot my site and gave me this fix last night. Now everything is sorted correctly again. :clap:
  42. Replies
    785
    Views
    157,671

    Re: AJAX IMAGE Swapper support thread

    Thanks for looking Jay. I think the IE problem is related to my computer at work because it seems to be working on other machines.

    But the images are out of order. The image that shows up in the...
  43. Replies
    785
    Views
    157,671

    Re: AJAX IMAGE Swapper support thread

    I am having trouble with the sort order on some products.

    I am not using attributes, just a product with 3 images.
    Base image name is WCUFDRIVE.jpg and additional images are WCUFDRIVE_1.jpg and...
  44. Replies
    11
    Views
    3,424

    Re: Table Shipping Limit Call for Shipping Costs

    I am trying to do the same thing. Has anyone figured out how to accomplish this?
  45. Replies
    1,124
    Views
    235,914

    Re: Stocks by attributes

    I posted this question a few months back and never got a solution, and have seen other people post similar questions.

    I have a clothing store that has items with size, and an optional monogram...
  46. Re: need help with lay-out of image and text on product page

    This is a problem that I always had with the stock product info page. My solution is to create 2 columns. In the tpl_product_info_display.php file of your template, you will need to wrap the main...
  47. Replies
    1
    Views
    877

    Re: Messed up shopping cart buttons

    Your .buttonRow class set to 75% width which is causing the buttons to wrap to the next line.
  48. Replies
    1
    Views
    593

    Re: Strange Error in Firefox

    It is messed up in firefox on my machine.

    The problem is the #uk-fishing-baits-header div is floated left, but you never clear the float before the table that contains your main content.
    ...
  49. Replies
    1
    Views
    715

    Re: Problem with my subcategories page...

    Without seeing the actual code from the php file that you edited, there is no way to diagnose the problem.

    Your problem is most likely in tpl_modules_category_row.php or...
  50. Replies
    569
    Views
    225,146

    Re: How do EZ-Pages work?

    Thanks kuroi. I'll try building the page using page_2.
    I suppose I could also edit the page from the database using phpMyAdmin, but I like your idea a lot better. :clap:
Results 1 to 50 of 134
Page 1 of 3 1 2 3
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR