Forums

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

  1. cholbi
    Member
    Posted 2 years 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

Topic Closed

This topic has been closed to new replies.

About this Topic