Forum Moderators: phranque
I just received a XML datafeed that only has a couple fields (or nodes) that I need to display. I need to remove or filter out some nodes so I can display the stuff I want. I have succeeded in displaying the stuff I want, but I still see the unwanted content (under the unwanted nodes). How do I tackle this problem?
Here's the layout of the XML file...
<dsp>
<result>
...
</result>
<phrase>
...
</phrase>
<domain>
<title>...</title>
<url>...</url>
<offer>
<store>
... {some more nodes here}
</store>
<store>
... {some more nodes here}
</store>
<store>
... {some more nodes here}
</store>
</offer>
</domain>
</dsp>
The 'store' nodes are the only ones that I would like to list on my page.
Could anyone offer help?
Thanks much!