Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Agree best plugin WP has to offer!

    if people are still having this problem I’ve got a solution for this.

    Go to find the file “survey.xml

    Go to line 229 and find these lines:

    <phtml><![CDATA[<?php
    foreach($this->data as $key=>$value)
    {
    	if(is_array($value))
    	{
    
    		if(!in_array($key,array('usersettings','captcha','extended_info')))
    		{
    
    			echo "\n".urldecode($key).":\n".implode(', ',$value)."\n";
    		}
    	}
    	else
    	{
    		echo "\n".urldecode($key).":\n".$value."\n";
    	}
    }
    ?>]]></phtml>

    And then change it into:

    <phtml><![CDATA[<?php
    foreach($this->data as $key=>$value)
    {
    	if(is_array($value))
    	{
    
    		if(!in_array($key,array('usersettings','captcha','extended_info')))
    		{
    			echo "\n".urldecode($key).":\n";
    			foreach ($value as $val=>$number) {
    				echo "- ".$val."\n";
    			}
    			echo "\n";
    		}
    	}
    	else
    	{
    		echo "\n".urldecode($key).":\n".$value."\n";
    	}
    }
    ?>]]></phtml>

    Hope this helps… It worked perfectly for me!

Viewing 2 replies - 1 through 2 (of 2 total)