How Do I remove the text “Currently Browsing” on a Category
It’s located in functions.php in the function pinboard_location()
How do I set displayed “category” into german Language “Themen” ?
Thanks
Thomas
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
Hi Daniel, hi Juanfran,
thanks a lot, i found it and now the theme speakt native german :o)
Regards
Thomas