• Hi Support team

    Could you please at least show blog title in blog archive page. its really hard to show Blog title on blog archive page for non tech people.

    Please do in next version if possible.

Viewing 1 replies (of 1 total)
  • Hi @make-carlos,

    I will bring this forward to the team and if feasible we will try to improve the scenario in future updates.

    In the meantime, you can try the following custom code

    add_action('astra_template_parts_content_top', 'custom_blog_header',10);
    function custom_blog_header(){
    	if(	is_home() ){
    		echo '<h1 class="entry-title astra-blog-header" > Blog </h1>';
    	}
    	return ;
    }

    Refer to this doc to know how to add custom PHP code in Astra.

    Kind regards,
    Herman ??

Viewing 1 replies (of 1 total)
  • The topic ‘Blog title in blog archive page’ is closed to new replies.