Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter rpwk

    (@rpwk)

    LOL, thanks Erik for the speedy reply. If I could find someway to pass simple variables to the reviews array I could just include it once in the header and then enter the variables on a per page basis but that is a totally different thing. Thanks again!

    Thread Starter rpwk

    (@rpwk)

    OK, I found the issue — looks like these lines in wp_ultimate_csv_importer.php are the culprit:

    174-186:

    // Scandinavian characters
    function smack_marks_scandiConverter($text){
        $returnvalue="";
        for($i=0;$i<strlen($text);$i++){
            $smacker=hexdec(rawurlencode(substr($text, $i, 1)));
            if($smacker<32||$smacker>1114111){
                $returnvalue.=substr($text, $i, 1);
            }else{
                $returnvalue.="&#".$smacker.";";
            }
        }
        return $returnvalue;
    }

    and:

    394 $data_array['post_title'] = smack_marks_scandiConverter($data_array['post_title']);
    395 $data_array['post_content'] = smack_marks_scandiConverter($data_array['post_content']);
    Thread Starter rpwk

    (@rpwk)

    Just FYI, I re-imported a post from a previous import and the post slugs are missing the dashes, whereas the first time the post slug was properly formatted. It looks like this is an issue related to the recent upgrade.

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