• There’s a problem with the export feature if you created a custom field. Let say you create a custom field called “Address”. Everything is fine if all that the user enters is “5 Kingston Road” but if the user enters “5, Kingston Road” (not the comma after “5”) there will be a problem. This single field will be split into different columns when exported to csv and view in Excel.

    Just to be sure this problem is not associated with WordPress 2.9.2, I upgraded to the latest version of wordpress with no success.

    Any idea how to fix this problem?

    http://wordpress.org/extend/plugins/wp-responder-email-autoresponder-and-newsletter-plugin/

Viewing 1 replies (of 1 total)
  • Hi,

    Yes, I’ve come across this bug myself. I will have to fix it in the code.

    If you’d like to try:

    Replace line 160 of wpresponder.php:

    foreach ($subsarray as $name=>$value )
    {
    	$subsarray[$name] = trim($subsarray[$name]);
    }

    With this:

    foreach ($subsarray as $name=>$value )
    {
    	$value = trim($subsarray[$name]);
    	$subsarray[$name] = '"'.$value.'"';
    }

    Raj

Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: WP Responder Email Newsletter and Autoresponder Plugin] Error with export feature’ is closed to new replies.