I hadn't changed anything within any smarty file. Not sure where I should have or if I should have...please advise.
No, the change I had made was within the control panel...in the module section, export manager, clicked on edit link of Excel, chose Export Types and then clicked on edit link.
That's where I changed:
to:
Again, I'm using version 2.0.0, so all this should have been unnecessary, right?
No, the change I had made was within the control panel...in the module section, export manager, clicked on edit link of Excel, chose Export Types and then clicked on edit link.
That's where I changed:
Code:
{elseif $field_type == "textarea"}
{$value|nl2br}
{else}
{$value}
{/if}
to:
Code:
{elseif $field_type == "textarea"}
{$value|nl2br_excel}
{else}
{$value}
{/if}
Again, I'm using version 2.0.0, so all this should have been unnecessary, right?