Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.5k views
in Technique[技术] by (71.8m points)

woocommerce - WP ALL IMPORT with foreach

I am trying to import products with WP ALL IMPORT to my shop. I am importing from XML where tree is like

<SHOPITEM>
  <ITEMNAME>
    ITEMNAME
  </ITEMNAME>
  ...
  <PARAMS>
    <PARAM>
       <PARAM_NAME>
       Name of parameter
      </PARAM_NAME>
      <VAL>
        Value of parameter
      </VAL>
    </PARAM>
  </PARAMS>
<PARAMS>
    <PARAM>
       <PARAM_NAME>
       Name of parameter
      </PARAM_NAME>
      <VAL>
        Value of parameter
      </VAL>
    </PARAM>
  </PARAMS>
<PARAMS>
    <PARAM>
       <PARAM_NAME>
       Name of parameter
      </PARAM_NAME>
      <VAL>
        Value of parameter
      </VAL>
    </PARAM>
  </PARAMS>
</SHOPITEM>

I need to create Attributes foreach of param_name and val How should looks like code in these inputs? Right now I have this but it doesn't import them.

[FOREACH({PARAMS/PARAM})] {PARAM_NAME[1]} [ENDFOREACH]

[FOREACH({PARAMS/PARAM})] {VAL[1]} [ENDFOREACH]

enter image description here

question from:https://stackoverflow.com/questions/65843063/wp-all-import-with-foreach

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...