Search:

Type: Posts; User: lismith

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    0
    Views
    630

    image problem in ssl admin

    I have admin running in SSL. There are a some images that are http:// instead of https://... (includes/languages/english/images/icon.gif, and call_for_prices.jpg in the template image directory) This...
  2. Replies
    1
    Views
    881

    Display price along with "call to order"

    There are a few products I want to display the price but not have them available to order online. I'd like a "call to order" button on these. I think the "call to price" option would work except that...
  3. Replies
    1
    Views
    948

    Inventory control for only one category?

    I need to have inventory control (check stock, subtract stock, mark out of stock) turned on for only ONE category. Everything else, the majority of the store, doesn't need inventory control. Can this...
  4. Replies
    82
    Views
    27,549

    Re: SSL secure and non-secure items

    I'm getting this error because of a hardcoded link to Comodo's trust logo image. I guess changing the "http" to "https" would fix it, but is there a way to make it a relative link instead? The image...
  5. Re: Email confirmation descriptions are duplicating

    I have 1.3.7 and I've installed Image Handler, admin permission control, bulk edit, but nothing that would affect order emails. I have done a lot of customization and I'm sure the problem is related...
  6. Email confirmation descriptions are duplicating

    Email order confirmations show the description below the product, but the descriptions are "accumulating" and duplicate the ones above it, like this...

    1 X 123 = $1.00
    This is description...
  7. Replies
    0
    Views
    1,112

    Surcharge for oversized items?

    Is there a way to add a surcharge for oversized products? UPS doesn't take into account box dimensions so I either need to add a surcharge for a few products or make the weight more to cover the...
  8. Replies
    0
    Views
    1,102

    Offer USPS for APO/FPO only

    We want to offer only UPS shipping for everyone except APO/FPO addresses. Is it possible to offer USPS shipping only for APO and FPO addresses? I'm not sure I understand exactly how zones work.
  9. Replies
    3,562
    Views
    729,369

    Re: Google Base Feeder Support Thread

    I don't have access to php.ini unless I install my own php. I think it would be easier to just create the file offline. :unsure:
  10. Replies
    3,562
    Views
    729,369

    Re: Google Base Feeder Support Thread

    I thought mine was working correctly when I ran it early in the morning (less server load?) but I found that it only output 1,295 products. I have over 4,000 products. :(
  11. Replies
    3,562
    Views
    729,369

    Re: Google Base Feeder Support Thread

    All of a sudden it works. :clap:

    Maybe the server was under heavy load yesterday. Anyway, it's all good now. :yes: Thanks!
  12. Replies
    3,562
    Views
    729,369

    Re: Google Base Feeder Support Thread

    OK, I changed max execution time to 300 and I still get the same error saying that it exceeded max execution time of 30....? :huh:

    If it helps, bmz_image_handler.class.php line 443 is...


    ...
  13. Replies
    3,562
    Views
    729,369

    Re: Google Base Feeder Support Thread

    I just installed 1.5.3 plus the new patch posted here. I have 2 problems...

    1) The link from Admin -> Tools -> Google Base Feeder points to the file "Google Base Feeder.php" (which doesn't exist.)...
  14. Replies
    2
    Views
    980

    Re: Align subcategories on bottom?

    I already have Image Handler 2 and had no idea it had that functionality. Thanks! :clap:
  15. Replies
    2
    Views
    980

    Align subcategories on bottom?

    I'm having trouble figuring out how to get the subcategories aligned on the bottom. As it is they look jumbled because the different image heights determine the vertical alignment of the text. If the...
  16. Replies
    9
    Views
    3,245

    Re: Cross Sell Advanced

    I have some products with the same model number. Cross Sell Advanced doesn't seem to do anything when I enter cross sells for those products. Is this normal, or should it add them for the first...
  17. Replies
    5
    Views
    1,836

    Re: There is no add new category button

    I've heard that many times, but no one has ever said exactly what problems it causes. Do you know what would actually happen when categories and products are mixed?
  18. Re: Suppressing duplicate model numbers in the product list?

    You get the same product regardless of the "manufacturer" chosen. The manufacturer in this case isn't the 'maker' of the product, but the manufacturer that the product 'fits'. Hope that makes sense!...
  19. Re: Suppressing duplicate model numbers in the product list?

    They're actually the same product, so if the duplicates never get sold that's OK. The only reason the 2nd and 3rd ones exist is so they can have a 2nd and 3rd manufacturer. Each one actually lists...
  20. Re: Suppressing duplicate model numbers in the product list?

    That's exactly why I'm not using attributes. they need to be able to be searched and browsed by manufacturer. Products need to be able to be found in 2 ways... (1) by choosing a manufacturer and...
  21. Re: Suppressing duplicate model numbers in the product list?

    The only reason I need to have 3 is because that product works for 3 manufacturers and I need it to show up in the list when filtered by manufacturer A, B or C. Everything is identical except for...
  22. Re: Suppressing duplicate model numbers in the product list?

    Any help with this, or with a way to have multiple manufacturers for a single product? Even just to point me to the right file and maybe I can stumble through it?

    Zen-Cart doesn't allow for...
  23. Re: Add manufacturer to the product listing in admin

    i got zen_get_products_manufacturers_name to work by copying the function from functions_lookups.php and pasting into a new file in /admin/includes/functions/extra-functions/. I guess catalog & admin...
  24. Re: Add manufacturer to the product listing in admin

    For now i went back to the original query and only added p.manufacturers_id. I've got it displaying the ID number from the products table and "none' if it's zero. It's better than nothing.

    Is...
  25. Re: Add manufacturer to the product listing in admin

    I tried inserting a LEFT JOIN on manufacturers and it gave me an error. I'm afraid I'm just not familiar enough with writing queries. There are so many criteria in this query I don't know how to...
  26. Re: Add manufacturer to the product listing in admin

    Well it's not quite right yet. It's not showing any products without a manufacturer set. Is it a problem with the query? Can anyone help me fix this?


    $products_query_raw = ("select...
  27. Replies
    271
    Views
    137,509

    Re: How-To: Add new Properties to your Products

    I need mine as a text area too. Any help?
  28. Re: Add manufacturer to the product listing in admin

    I figured out how to get the name from manufacturers by looking at how it was pulled from products_descriptions and products_to_categories. Then I just replaced the "quantity" column with the...
  29. Re: Add manufacturer to the product listing in admin

    I think I'm on the right track. I added p.manufacturers_id to the queries in admin/includes/modules/category_product_listing.php. I have it displaying the manufacturer's id in the list. But I'm not...
  30. Add manufacturer to the product listing in admin

    It would save me a lot of time if the list of products in the admin listing showed manufacturer. It currently has ID, name, model, price/special/sale, quantity, status, sort, and the buttons. I don't...
  31. Replies
    2
    Views
    967

    Re: Help! Can't copy products

    You are a genius! Thank you!!! :clap:
  32. Replies
    2
    Views
    967

    Help! Can't copy products

    In the admin catalog/products listing, I click the "C" to copy and then select "duplicate", I get the following error:



    It gives me the same error when trying to copy to the same category or...
  33. Replies
    1
    Views
    926

    Re: Product listing - combine 2 columns?

    I found a solution here: http://www.zen-cart.com/forum/showthread.php?t=58441
  34. Replies
    1
    Views
    926

    Product listing - combine 2 columns?

    On the product listing I'd like to move manufacturer name into the same column with product name, listed underneath. What needs to be edited? TIA.
  35. Replies
    2
    Views
    1,000

    Re: editing out category quantities

    No need to edit any files.

    In admin, go to Configuration -> My Store -> Show Category Counts. Set to false.
  36. Suppressing duplicate model numbers in the product list?

    I have a few products that need to be listed under more than one manufacturer. The only way I've found to make them show up under Manufacturers "A", "B", and "C" is to duplicate the record, making...
  37. Replies
    0
    Views
    842

    Best way to handle zero weight products?

    We have some new products that have no weights entered in the database yet. What we'd like to do is have a notice displayed for any product with zero weight saying that shipping will have to be...
  38. Replies
    8
    Views
    1,291

    Re: Add description to shopping cart

    Apparently I didn't search well enough before posting this! You answered the same question a few months ago (http://www.zen-cart.com/forum/showthread.php?t=63857) and while the zen_products_lookup...
  39. Replies
    8
    Views
    1,291

    Re: Add description to shopping cart

    I tried changing from products_description to other fields, like products_price, and so far every field works correctly except products_description. I know descriptions are stored in a separate...
  40. Replies
    8
    Views
    1,291

    Re: Add description to shopping cart

    Thanks, I tried that and it's still returning the same description for everything in the shopping cart. For some reason it's stuck on product_id 1 and returns that description for everything.
  41. Replies
    8
    Views
    1,291

    Re: Add description to shopping cart

    I have to admit I'm clueless here. :huh: I'm not sure what to use - I've tried $product and $product['id'] with same results each time.

    I do want to pull products_description because all the...
  42. Replies
    8
    Views
    1,291

    Add description to shopping cart

    My store uses short descriptions and I'd like to include them in the shopping cart. I added this:

    <?php echo zen_products_lookup($product, 'products_description'); ?>to...
  43. Replies
    4
    Views
    1,383

    Re: Where to edit search results listing

    That did it. Thank you!!! :D
  44. Replies
    4
    Views
    1,383

    Re: Where to edit search results listing

    Thank you. I restored the original from the template default and thought that would fix it but I'm still getting double price columns.
  45. Replies
    4
    Views
    1,383

    Where to edit search results listing

    Which file is used for search results listing? I've somehow ended up with 2 price columns that do not show up when browsing products in a list, only in the search results list.
  46. Re: shopping_cart.php error when changing quantity

    I cleared cache and cookies, tried in both IE and Firefox. It still works! I don't understand it, but I'm happy! :D
  47. Re: shopping_cart.php error when changing quantity

    OK, this is weird. I changed "recreate sessions" back to true, and now changing the quantity still works. I don't understand this at all. Nothing I tried fixed it until I changed that setting, and...
  48. Re: shopping_cart.php error when changing quantity

    I think it's fixed. I changed "recreate session" to false (it was true) and now changing quantity works. I have no idea what that means but it seems to have fixed it.:blush:
  49. Re: shopping_cart.php error when changing quantity

    If I still get the same error when I swtich to the default template, then that rules out it being caused by any customization I've done to the template, right?
  50. Re: shopping_cart.php error when changing quantity

    Thanks for the advice Dr. Byte. I restored the original files you mentioned and still have the error. Is there anything in the mysql database that would cause this problem? I'd thought it probably...
Results 1 to 50 of 77
Page 1 of 2 1 2
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR