Forums

Problem with Ultimate Tag Warrior importer (4 posts)

  1. Schwarzenegger
    Member
    Posted 4 years ago #

    Hello all!

    I have a serious problem with the UTW importer,

    When I import all the tags to the WP tags, all the spaces are converter to " - ". I've tried to replace the - with spaces in the_tags() using eregi_replace(), but it doesn't work.

    Anyone can help me?? Thanks!!

  2. Schwarzenegger
    Member
    Posted 4 years ago #

    help!!

  3. juanpehar
    Member
    Posted 4 years ago #

    I have the same problem, please could someone help us?!

  4. juanpehar
    Member
    Posted 4 years ago #

    Después de andar dando vueltas encontré algo que funcionó.
    Antes de usar el importador (si ya lo usaste vuelve con el backup) edité el archivo wp_includes/taxonomy.php por la línea 924, justo antes de donde dice:
    $args['name'] = $term;
    puse:
    $term = str_replace ("-"," ", $term);

    Funciono, pero no se que pueda pasar al futuro con eso asi que recomiendo volver a como estaba después de la importación.

    -------------------------------------------------------

    In the file wp_includes/taxonomy.php I add this:
    $term = str_replace ("-"," ", $term);
    in the line 924, before this:
    $args['name'] = $term;

    and it works!

Topic Closed

This topic has been closed to new replies.

About this Topic