I have found in the
latest XML Provide file: http://www.mivamerchant.com/assets/master_provide.zip
example of deleting images and attributes and categories and lots of other things.
I did not find an example of deleting a product.
is it similar to the update or add xml tags?
<Product_Update code="existing_code">
or something more like
<Product_Add>
<code></code>
</Product_Add>
where I would replace the update or add with the word delete?
I need to delete a bunch of products and also the associated physical image files from my site.
so a 2nd set of related questions regarding product images is how do these function exactly?
Does this delete a physical file off the server even if it isn't in the store databases?
<Image_Delete filepath="graphics/00000001/s2k_red_front.jpg" />
Does this do more than just delete the physical image, does it remove references in the database too?
<ProductImage_Delete product_code="test" filepath="graphics/00000001/s2k_silver_front.jpg" />
Or does this just remove only the physical file same as image_delete does? how is this different than image_delete
<ProductImage_Delete_File product_code="test" filepath="graphics/00000001/s2k_silver_front.gif" />
I"m guess this one just removes all images from a product. Does it also remove the files?
<ProductImage_Delete_All_Product product_code="p1" />
if it doesn't remove files is there a xml tag which you have to run before that to also remove the physical files first?
latest XML Provide file: http://www.mivamerchant.com/assets/master_provide.zip
example of deleting images and attributes and categories and lots of other things.
I did not find an example of deleting a product.
is it similar to the update or add xml tags?
<Product_Update code="existing_code">
or something more like
<Product_Add>
<code></code>
</Product_Add>
where I would replace the update or add with the word delete?
I need to delete a bunch of products and also the associated physical image files from my site.
so a 2nd set of related questions regarding product images is how do these function exactly?
Does this delete a physical file off the server even if it isn't in the store databases?
<Image_Delete filepath="graphics/00000001/s2k_red_front.jpg" />
Does this do more than just delete the physical image, does it remove references in the database too?
<ProductImage_Delete product_code="test" filepath="graphics/00000001/s2k_silver_front.jpg" />
Or does this just remove only the physical file same as image_delete does? how is this different than image_delete
<ProductImage_Delete_File product_code="test" filepath="graphics/00000001/s2k_silver_front.gif" />
I"m guess this one just removes all images from a product. Does it also remove the files?
<ProductImage_Delete_All_Product product_code="p1" />
if it doesn't remove files is there a xml tag which you have to run before that to also remove the physical files first?
Comment