Forums

[resolved] Multilingual plugin error tag slug generation (1 post)

  1. cholbi
    Member
    Posted 5 months ago #

    multilingual plugin generate bad url slug tags:

    exemple:

    BAD URL http://www.sergiselvas.com/blog//estag/eidon/
    OK URL http://www.sergiselvas.com/blog/es/tag/eidon/

    resolved with change:

    function RewriteCodes(){
    $GLOBALS['wp_rewrite']->tag_base = '/'.$GLOBALS['language'].$GLOBALS['wp_rewrite']->tag_base;
    }

    for

    function RewriteCodes(){
    $GLOBALS['wp_rewrite']->tag_base = '/'.$GLOBALS['language'].$GLOBALS['wp_rewrite']->tag_base;
    }

    in the wp-multilingual/multilingual.php

Reply

You must log in to post.

About this Topic