Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi, not sure if the problem has been resolved yet. But if you’re looking to change the “Home” link on the navigation to say something different, it’s in the functions.php (I’m using the twentyten theme so it might be different for you if ur using a different theme)
    look for this:
    function twentyten_page_menu_args( $args ) {
    $args[‘show_home’] = true;
    return $args;
    }

    and change where it says true to what to whatever you want it to say e.g.:
    function twentyten_page_menu_args( $args ) {
    $args[‘show_home’] = ‘Start’;
    return $args;
    }

    Don;t know if this helps, but hope it does!

    that does sound like a nightmare! Suppose you’ll have to type up a small user documentation for them to use.
    I’m currently doing something for a client too and i’m stuck. I’m using the twentyten theme and using qtranslate to make the blog multi-lingual but my problem is that the “Home” link on the navigation wont change language when i chnage the language for the site.. got everything else working except for that and it’s wrecking my head ??

    I spent hours looking for an ansewer to this and just stumbled across the answer ??
    In the Title box og the Widgets.. just put in this:
    [:de]Jüngste Kommentare[:en]Recent Comments[:fr]Commentaires Récents

    hope this helps!

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