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: Bulk Update of Product Dimensions

  1. #1
    dnbriden is offline Junior Member
    Join Date
    Sep 2009
    Posts
    18

    Default Bulk Update of Product Dimensions

    We have our APDNSF site up and running with about 450-500 products currently. Unfortunately we do not have the correct shipping dimensions on some of our products. I need to update the dimensions on the product variants. Is there a simple way to do a bulk update of just one product variant field? We don't have an Excel import file that we can modify and load and I don't see a way to export anything but a price list. I am not averse to doing this through the database, I just don't want to have to touch every product separately through the admin interface. Any ideas?

  2. #2
    George the Great is offline Senior Member
    Join Date
    Nov 2006
    Location
    Cleveland, OH
    Posts
    1,792

    Default

    Use WSI
    Code:
    <AspDotNetStorefrontImport>
      <Product Action="Update" ID="#">
        <Variants>
          <Variant Action="Update" ID="#">
            <Dimensions>
              <UOM>IN</UOM>
              <Length>#</Length>
              <Width>#</Width>
              <Height>#</Height>
            </Dimensions>
          </Variant>
        </Variants>
      </Product>
      <Product Action="Update" ID="#">
        <Variants>
          <Variant Action="Update" ID="#">
            <Dimensions>
              <UOM>IN</UOM>
              <Length>#</Length>
              <Width>#</Width>
              <Height>#</Height>
            </Dimensions>
          </Variant>
        </Variants>
      </Product>
      <Product Action="Update" ID="#">
        <Variants>
          <Variant Action="Update" ID="#">
            <Dimensions>
              <UOM>IN</UOM>
              <Length>#</Length>
              <Width>#</Width>
              <Height>#</Height>
            </Dimensions>
          </Variant>
        </Variants>
      </Product>
    </AspDotNetStorefrontImport>
    <a href="http://www.aspdotnetstorefront.com">Shopping Cart Software</a>