Important Notice from AspDotNetStorefront
It is with dismay that we report that we have been forced, through the action of hackers, to shut off write-access to this forum. We are keen to leave the wealth of material available to you for research. We have opened a new forum from which our community of users can seek help, support and advice from us and from each other. To post a new question to our community, please visit: http://forums.vortx.com
Results 1 to 2 of 2

Thread: any way to add existing products to category

  1. #1
    mc9000 is offline Member
    Join Date
    Aug 2007
    Posts
    83

    Default any way to add existing products to category

    Is there any functionality from a category that allows you to add an existing product to it (from the category and not the product mapping)?
    I noticed that you can view the category and see already mapped products (and edit them) or add a new product (that does not exist), but there seems to be no way of adding an existing product to a category via the category tree.

    If not, that would be a great new feature (it's on every cart I've worked on except ASPDNSF!)

  2. #2
    ASPAlfred is offline Senior Member
    Join Date
    Nov 2007
    Posts
    2,244

    Default

    That would be a great feature, yes. I'll add that into our to-do list for evaluation.

    For the meantime, if you really want to move products from one category to another just run an sql update directly to your DB.

    e.g.

    Code:
    update productcategory set categoryid = 54 where productid =169
    where: 54 is the category id you want to move the product 169.