Announcement

Collapse
No announcement yet.

Update Product Footer Content via XML Provisioning

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Update Product Footer Content via XML Provisioning

    I am trying to delete the footer content for every product. I don't trust product import to overwrite fields when empty because it has created issues in the past when doing that.

    Is there a way to update the product footer via XML provisioning? I tried using <product_update code="XXXX"> and every variation of a footer tag that I could think of, but I keep getting an error that the product already exists, which doesn't make any sense. I am not trying to add a product, just update.

    #2
    The way product header and footers are structured, its actually a completely separate component module which controls them. So you need to use the following XML format to import them:

    Code:
    <Module code="cmp-cssui-pchdft" feature="provision_store">
        <product_footer product_code="test">
            <template>Hello World!</template>
            <notes>Import via XML</notes>
        </product_footer>
    </Module>
    Brennan Heyde
    VP Product
    Miva, Inc.
    [email protected]
    https://www.miva.com

    Comment


      #3
      Brennan,

      Perfect and thank you.

      Comment

      Working...
      X