cancel
Showing results for 
Search instead for 
Did you mean: 

xtento export profile xsl output format question

SOLVED

xtento export profile xsl output format question

We export the orders from our website and people use "quotes" in their messages and when I try to import those the messages are cut off after the first quote.  I am not familiar with xsl and wondering if there is a way to wrap the exported value in quotation marks?  Thanks for any help.

 

 <xsl:value-of select="$sepstart" /><xsl:value-of select="normalize-space(gift_message)"/><xsl:value-of select="$sepend" />

 

 

1 ACCEPTED SOLUTION

Accepted Solutions

Re: xtento export profile xsl output format question

Found the solution on the Xtento wiki page.

 

  • quotes: [New feature added in module version 1.6.1] Using the "quotes" parameter, you can configure what should happen to quotes (") in field values. Possible values are "remove" (remove quotes from field values) or "double" (replace a single quote with double quotes). Example:

<file filename="MyFileName.csv" quotes="remove">

View solution in original post

2 REPLIES 2

Re: xtento export profile xsl output format question

Hello @greg28818

 

Hope below link will help you

 

https://www.w3schools.com/xml/ref_xsl_el_text.asp

 

 

If work then marks as a solution or give kudos.


Problem solved? Click Kudos & Accept as Solution!
Sunil Patel
Magento 2 Certified Professional Developer & Frontend Developer

Re: xtento export profile xsl output format question

Found the solution on the Xtento wiki page.

 

  • quotes: [New feature added in module version 1.6.1] Using the "quotes" parameter, you can configure what should happen to quotes (") in field values. Possible values are "remove" (remove quotes from field values) or "double" (replace a single quote with double quotes). Example:

<file filename="MyFileName.csv" quotes="remove">