Home Forums WoodMart support forum hidden area issue on sidebar Reply To: hidden area issue on sidebar

#33407

Artem Temos
Keymaster

Yes, it shows the blog page title there. You can change it in the file inc/template-tags.php file.

Find this line

$title = ( ! empty( $page_for_posts ) ) ? get_the_title( $page_for_posts ) : esc_html__( 'Blog', 'woodmart' );

and replace with this one

$title = get_the_title();

Regards