Tagged: , ,

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #158023
    joeywickham
    Participant

    Is there any way to edit the title of the Blog page/section of my website so that it says Blog instead of Archives? https://joeywickham.com/blog/
    I have looked through every possible customization and every bit of code in the Archives.php file, plus searched through the forum, to see if there is a way to make this change, but I’m stumped. Any help would be greatly appreciated!

    #158028
    Skandha
    Participant

    @joeywickham: Hello Joey, Thank you for using Catch Fullscreen Pro.

    For this you will need to create a child theme and do a little bit of customization. Please let me know if you are familiar with child theme customization otherwise I suggest you to hire a customizer to get it done.

    Kind Regards,
    Skandha

    #158063
    joeywickham
    Participant

    Thanks for your reply, Skandha. I am not familiar with child themes. That’s the only way to just change the name of the title at the top of the blog page? It seems like it should be so much easier to just rename it. I will look into child themes or consider if there might be any other way around it. Thanks again!

    #158115
    Skandha
    Participant

    @joeywickham: It is not that hard if you are willing to give it a try. I could guide you with changing the blog page title using a child theme. I will provide you the steps and you just have to follow them.

    Note: We recently moved our site to a new web server. So, if you don’t receive our reply even after 1-2 days time please post a new issue in the support forum. Sorry for the inconvenience caused.

    Kind Regards,
    Skandha

    #158173
    joeywickham
    Participant

    Ok, if you’re willing to provide step-by-step instructions I’m willing to give it a try!

    #158204
    Skandha
    Participant

    @joeywickham: Hello Joey,

    First you will need to create a child theme and for that you can use Generate Child Theme Plugin. Download and activate the plugin, after activation you will get the Generate Child Theme tab on your dashboard. Click on it which will take you to the plugin dashboard. Now Select parent theme as Catch Fullscreen Pro and give your child theme’s name catch-fullscreen-pro-child and fill up the remaining form and click on Generate. Now, this will activate the child theme and create a child theme directory on wp-content/themes as catch-fullscreen-pro-child.

    Now, Go to => catch-fullscreen-pro-child => funtions.php and add the following Code.

    function catch_fullscreen_header_title( $before = '', $after = '' ) {
    		if ( is_front_page() ) {
    			$header_media_title = get_theme_mod( 'catch_fullscreen_header_media_title', esc_html__( 'Dancing Under The Sky', 'catch-fullscreen-pro' ) );
    
    			if ( $header_media_title ) {
    				echo $before . wp_kses_post( $header_media_title ) . $after;
    			}
    		} elseif ( is_singular() ) {
    			if ( is_page() ) {
    				if( ! get_theme_mod( 'catch_fullscreen_single_page_title' ) ) {
    					the_title( $before, $after );
    				}
    			} else {
    				the_title( $before, $after );
    			}
    		} elseif ( is_404() ) {
    			echo $before . esc_html__( 'Nothing Found', 'catch-fullscreen-pro' ) . $after;
    		} elseif ( is_search() ) {
    			/* translators: %s: search query. */
    			echo $before . sprintf( esc_html__( 'Search Results for: %s', 'catch-fullscreen-pro' ), '<span>' . get_search_query() . '</span>' ) . $after;
    		} else {
    			echo 'Blog';
    		}
    	}

    This should change your blog page title from Archives to Blog.
    Let me know if this works out!
    Kind Regards,
    Skandha

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Change Blog Header Title’ is closed to new replies.