What is a good WordPress plugin to create a product catalog?

Discussion in 'HTML & Website Design' started by JackyS, Sep 9, 2014.

  1. #1
    I need a WordPress plugin that allows me to Disable the shopping cart functionality, but still build a product database with options and categories. Have tried 'Ecwid' and 'The WP e-Commerce Plugin', but neither have an option to disable the shopping cart.

    Any help would be greatly appreciated.
     
    JackyS, Sep 9, 2014 IP
  2. aidanriley629

    aidanriley629 Banned

    Messages:
    429
    Likes Received:
    23
    Best Answers:
    3
    Trophy Points:
    175
    #2
    Jacky-

    You can actually disable the shopping card on Ecwid. I'll do my best to give you instructions otherwise I can help you do it.

    First disable all your shipping and payment methods, and get rid of the mini cart widget (if you have it). Now, to hide the Add to Cart and the Quantity (Qty) fields, you need to add this CSS code:

    td.ecwid-productBrowser-productsTable-buy,  div.ecwid-AddToBagButton,  div.ecwid-productBrowser-details-qtyPanel { display:none; }
    Code (markup):
    Then, to hide the sign in link, paste this code:
    
    div.ecwid-productBrowser-auth { display: none; }
    
    
    This code will remove the "sign in" link.
    
    
    
    If you also want to remove all elements, that allows signing into your store, use this code: 
    
    
    
    div.ecwid-productBrowser-auth { display: none; }
    table.ecwid-Checkout-blockTitle button, div.ecwid-Checkout-PasswordBlock {
    
     display:none;
    }
    div.ecwid-Checkout-blockTitle button.gwt-Button{
    display: none;
    }
    Code (markup):
    Lastly you may need to change the text on your store front, such as Shopping Bag, and this site has an in-depth explanation on how to do that. http://kb.ecwid.com/w/page/22978888...HowcanIchangeortranslateanytextinmystorefront If you're not too savvy with these kinds of things, I'd be more than happy to help.

    Aidan
     
    aidanriley629, Sep 9, 2014 IP
    Rado_ch likes this.