Good day. I purchased the theme from Envato years ago, but fortunately it is still supported and maintained. It is not a free theme that comes from www.remarpro.com.
No, that code didn’t do anything. I eventually just searched through the theme and found the word “Shop” in header.php and I changed it there, that seemed to work.
Now it looks like this, with ‘Events’ where the word ‘shop’ was before:
if( is_category() || is_tax('portfolio-category') || is_tax('product_cat') ){
$title = __('Category','gdl_front_end');
$caption = single_cat_title('', false);
}else if( is_tag() || is_tax('portfolio-tag') || is_tax('product_tag') ){
$title = __('Tag','gdl_front_end');
$caption = single_cat_title('', false);
}else if( is_day() ){
$title = __('Day','gdl_front_end');
$caption = get_the_date('F j, Y');
}else if( is_month() ){
$title = __('Month','gdl_front_end');
$caption = get_the_date('F Y');
}else if( is_year() ){
$title = __('Year','gdl_front_end');
$caption = get_the_date('Y');
}else if( is_author() ){
$title = __('By','gdl_front_end');
$author_id = get_query_var('author');
$author = get_user_by('id', $author_id);
$caption = $author->display_name;
}else{
$title = __('Events','gdl_front_end');
}
print_page_header($title, $caption);
}
?>
<div class="content-outer-wrapper">
<div class="content-wrapper container main ">