How Do I remove the text "Currently Browsing" on a Category

Viewing 5 posts - 1 through 5 (of 5 total)
  • #6546
    cole
    Participant

    How Do I remove the text “Currently Browsing” on a Category

    #6594
    Daniel Tara
    Keymaster

    It’s located in functions.php in the function pinboard_location()

    #13905
    thomas
    Participant

    How do I set displayed “category” into german Language “Themen” ?

    Thanks
    Thomas

    #14168
    juanfran
    Participant

    Hi thomas,

    As Daniel Tara said, it’s inside functions.php

    Locate line 1279, function pinboard_current_location, just a cuple of lines below, where it says:
    if ( ! ( is_home() && ! is_paged() ) && ! is_singular() || isset( $pinboard_page_template ) ) {
    if( is_author() )
    $archive = 'author';
    elseif( is_category() || is_tag() ) {
    $archive = get_queried_object()->taxonomy;
    $archive = str_replace( 'post_', '', $archive );
    } else
    $archive = ''; ?>

    change to:
    if ( ! ( is_home() && ! is_paged() ) && ! is_singular() || isset( $pinboard_page_template ) ) {
    if( is_author() )
    $archive = 'Verfasser';
    elseif( is_category() )
    $archive = 'Themen';
    elseif ( is_tag() )
    $archive = 'Etikett';
    else
    $archive = ''; ?>

    I don’t speak German, so please change Verfasser, Themen, Etikett for whatever you want to, instead of Author, Category and Tag.

    Regards
    Juanfran

    #14171
    thomas
    Participant

    Hi Daniel, hi Juanfran,

    thanks a lot, i found it and now the theme speakt native german :o)

    Regards
    Thomas

Viewing 5 posts - 1 through 5 (of 5 total)

You must be logged in to reply to this topic.