Page 1 of 2 12 LastLast
Results 1 to 10 of 19

Hybrid View

  1. #1
    Join Date
    Jul 2005
    Posts
    31
    Plugin Contributions
    0

    Default Product images:" no_picture.gif"

    When I upload products, I have images for some but not all products. Where there is no image zen puts in "no_picture.gif" as default. How do I turn this off. But I don't want this to affect the product with images.

    Is this possible?

    Thanks
    Tom

  2. #2
    Join Date
    Feb 2006
    Location
    Chicago
    Posts
    1,162
    Plugin Contributions
    0

    Default Re: Product images:" no_picture.gif"

    In Admin
    Configuration->Images->

    Product Image - No Image picture

    and

    Product Image - No Image Status

    should do the trick
    Last edited by superprg; 17 Aug 2006 at 10:08 PM.
    Tutorials on Zen Cart
    http://tutorials.zen-cart.com/index.php
    ---------------
    advanced.programmer at gmail dot com
    In love with Zen Cart!!

  3. #3
    Join Date
    Jul 2005
    Posts
    31
    Plugin Contributions
    0

    Default Re: Product images:" no_picture.gif"

    Quote Originally Posted by superprg
    In Admin
    Configuration->Images->

    Product Image - No Image picture

    and

    Product Image - No Image Status

    should do the trick

    Yes I thought it would but the picture is still showing up, I removed the no_picture.gif in Admin/configuration/images Status = 0 Product Image (I remove the no_picture.gif)

    But the picture is still showing..

    Any ideas

    Thanks
    Tom

  4. #4
    Join Date
    Feb 2006
    Location
    Chicago
    Posts
    1,162
    Plugin Contributions
    0

    Default Re: Product images:" no_picture.gif"

    No mate, you are not getting me

    Do this
    In

    Product Image - No Image picture
    Use automatic No Image when none is added to product
    Default = no_picture.gif

    Put Default=none

    And let me know what happens
    Tutorials on Zen Cart
    http://tutorials.zen-cart.com/index.php
    ---------------
    advanced.programmer at gmail dot com
    In love with Zen Cart!!

  5. #5
    Join Date
    Jul 2005
    Posts
    31
    Plugin Contributions
    0

    Default Re: Product images:" no_picture.gif"

    Quote Originally Posted by superprg
    No mate, you are not getting me

    Do this
    In

    Product Image - No Image picture
    Use automatic No Image when none is added to product
    Default = no_picture.gif

    Put Default=none

    And let me know what happens

    Yes, I understand, I changed it from no_picture.gif to none (and I tried leaving it blank). And the picture is still displayed..

    Also I changed the status from 0 to 1, and 1 to 0 for testing. Picture still displayes

    Thanks
    Tom

  6. #6
    Join Date
    Feb 2006
    Location
    Chicago
    Posts
    1,162
    Plugin Contributions
    0

    Default Re: Product images:" no_picture.gif"

    Quote Originally Posted by Tswift42
    Yes, I understand, I changed it from no_picture.gif to none (and I tried leaving it blank). And the picture is still displayed..

    Also I changed the status from 0 to 1, and 1 to 0 for testing. Picture still displayes

    Thanks
    Tom
    Well, It works for me
    You are asking for the products for which image column in the database is empty. Right?
    I tried with three products here and after making it to none( or some string for which image doesnt exists) it just doesnt shows.. anything the way you want
    Can you try going to images folder and renaming this no_picture.gif to something else (though this is not a correct way of doing it but still)
    Tutorials on Zen Cart
    http://tutorials.zen-cart.com/index.php
    ---------------
    advanced.programmer at gmail dot com
    In love with Zen Cart!!

  7. #7
    Join Date
    Jul 2005
    Posts
    31
    Plugin Contributions
    0

    Default Removing the default "no_picture.gif"

    My problem is when I upload my products I did not specify a pic during the up unless there was a picture associated with the product the I would add the file name to my cvs file.

    Everything works great. With the exception that the files that have no picture Zen would by default attach "no_picture.gif" on all images that I did not attach a picture in my products.

    So to solve this problem is to go to the admin\configuration\images, the 22nd to the last option is (Product Image - No Image Picture) you click on this and edit and take out no_picture.gif in the edit field..Right..Perfect..

    Well this function does not work for me. But what it does do is when I upload another cvs file that has no image it does it's job and puts no image in the product list. Great.

    But I have 1200 product that are now associated with no_picture.gif, and to save my life I can't get it removed.

    I have tried reloading the cvs file with again no image association and the no_picture is showing up under that product.

    So to PhPadmin I go, and found the location to the product files. But to remove all this in PhP I would have to do it by hand...

    So question, is this a BUG...

    And can some one assist me creating a query that would remove everything associated with no-picture.gif...

    I would appriciate it very much...


    FYI deleting the no_picture.gif from the images folder does not fix the problem. The file association is still there, and it seems hard coded...

    TOm

  8. #8
    Join Date
    Jan 2004
    Posts
    66,443
    Plugin Contributions
    279

    Default Re: Removing the default "no_picture.gif"

    So ... if there's no picture associated, what do you want Zen Cart to do?
    Keep in mind that product images are used in many places:
    - product listings
    - sideboxes
    - product-detail pages
    - shopping cart
    - etc

    If there's no picture, what do you want instead?
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  9. #9
    Join Date
    Mar 2004
    Posts
    8
    Plugin Contributions
    0

    Default Re: Removing the default "no_picture.gif"

    Why not replace the no-picture.gif file with a blank gif file with the same name that matches with your background color?

  10. #10
    Join Date
    Jan 2004
    Posts
    66,443
    Plugin Contributions
    279

    Default Re: Product images:" no_picture.gif"

    If you're saying that many of your products have "no_picture.gif" IN THE DATABASE as the contents of the products_image field, then you could wipe that out by running the following SQL query via phpMyAdmin:

    Code:
    update products set products_image='' where products_image='no_picture.gif';
    Note: that '' is two single quotes...
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. Change no_picture.gif
    By gamenet in forum General Questions
    Replies: 6
    Last Post: 13 Feb 2014, 07:36 PM
  2. v150 How do I edit Product Listing "Price", "Qty." and Product Info Move "details"?
    By schobook in forum Templates, Stylesheets, Page Layout
    Replies: 9
    Last Post: 18 Jan 2013, 01:02 AM
  3. no no_picture.gif
    By sjk1000 in forum General Questions
    Replies: 9
    Last Post: 30 Oct 2008, 04:05 PM
  4. Remove "Product Image" "Item Name" and "Price"...
    By rebekah in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 22 Sep 2008, 06:08 PM
  5. For images, does "base" = "small"? And a question about alternates.
    By molywerks in forum Templates, Stylesheets, Page Layout
    Replies: 5
    Last Post: 29 Feb 2008, 02:49 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