Results 1 to 5 of 5
  1. #1
    Join Date
    Apr 2011
    Posts
    5
    Plugin Contributions
    0

    red flag Invisible Product

    The product that I posted with a link below is not in my admin area of ZenCart...I deleted all of the products and this one did not go away. Help?

    http://www.sportyclaus.com/index.php...414ec7d8f98abe

  2. #2
    Join Date
    Apr 2006
    Location
    London, UK
    Posts
    10,569
    Plugin Contributions
    25

    Default Re: Invisible Product

    Could it be that you've deleted the category it was in but not the product, so that there's nowhere to display it in your admin, even though it's still in your database?

    What do you see if you look into your product table using (say) phpMyAdmin?
    Kuroi Web Design and Development | Twitter

    (Questions answered in the forum only - so that any forum member can benefit - not by personal message)

  3. #3
    Join Date
    Apr 2011
    Posts
    5
    Plugin Contributions
    0

    Default Re: Invisible Product

    Perfect! Thanks...found it there.

  4. #4
    Join Date
    Apr 2006
    Location
    London, UK
    Posts
    10,569
    Plugin Contributions
    25

    Default Re: Invisible Product

    Great. But now what are you going to do about it? If the plan is to delete it, there are a number of linked tables to deal with too.
    Kuroi Web Design and Development | Twitter

    (Questions answered in the forum only - so that any forum member can benefit - not by personal message)

  5. #5
    Join Date
    Apr 2006
    Location
    London, UK
    Posts
    10,569
    Plugin Contributions
    25

    Default Re: Invisible Product

    Just in case, this is the SQL you'd need to run
    SET @pid = 49;
    DELETE FROM products WHERE products_id = @pid;
    DELETE FROM products_attributes WHERE products_id = @pid;
    DELETE FROM products_description WHERE products_id = @pid;
    DELETE FROM products_discount_quantity WHERE products_id = @pid;
    DELETE FROM products_notifications WHERE products_id = @pid;
    DELETE FROM products_to_categories WHERE products_id = @pid;
    DELETE FROM media_to_products WHERE product_id = @pid;
    DELETE FROM customers_basket WHERE products_id = @pid;
    DELETE FROM customers_basket_attributes WHERE products_id = @pid;
    DELETE FROM coupon_restrict WHERE product_id = @pid;
    DELETE FROM featured WHERE products_id = @pid;
    DELETE FROM meta_tags_products_description WHERE products_id = @pid;
    DELETE r.*, rd.* FROM reviews r, reviews_description rd WHERE products_id = @pid AND r.reviews_id = rd.reviews_id;
    DELETE FROM specials WHERE products_id = @pid;
    Kuroi Web Design and Development | Twitter

    (Questions answered in the forum only - so that any forum member can benefit - not by personal message)

 

 

Similar Threads

  1. invisible attributes
    By Lackew in forum Templates, Stylesheets, Page Layout
    Replies: 4
    Last Post: 18 Sep 2009, 06:20 PM
  2. Invisible products?
    By aesthetics in forum Setting Up Categories, Products, Attributes
    Replies: 2
    Last Post: 26 Mar 2009, 11:21 PM
  3. WorldPay Invisible
    By gushy in forum Addon Payment Modules
    Replies: 0
    Last Post: 18 May 2006, 09:44 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