• Rickx

    (@rickx)


    Hi,

    My blog is set to static, so I have a page named “Home” but I would like to remove that title name “Home”. Any ideas on how i can do that?

    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter Rickx

    (@rickx)

    One more thing. This is how my page.php looks like.

    get_header(); // Loads the header.php template. ?>
    
    	<?php do_atomic( 'before_content' ); // fanwood_before_content ?>
    
    	<div id="content">
    
    		<?php do_atomic( 'open_content' ); // fanwood_open_content ?>
    
    		<div class="hfeed">
    
    			<?php if ( current_theme_supports( 'breadcrumb-trail' ) ) breadcrumb_trail( array( 'separator' => '?' ) ); ?>
    
    			<?php get_sidebar( 'before-content' ); // Loads the sidebar-before-content.php template. ?>
    
    			<?php if ( have_posts() ) : ?>
    
    				<?php while ( have_posts() ) : the_post(); ?>
    
    					<?php do_atomic( 'before_entry' ); // fanwood_before_entry ?>
    
    					<div id="post-<?php the_ID(); ?>" class="<?php hybrid_entry_class(); ?>">
    
    						<?php do_atomic( 'open_entry' ); // fanwood_open_entry ?>
    
    						<?php echo apply_atomic_shortcode( 'entry_title', '[entry-title]' ); ?>
    
    						<div class="entry-content">
    							<?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'fanwood' ) ); ?>


    [Please use the code button when posting code here – as is, your code may have been damaged by the forum’s parser ]

    WPyogi

    (@wpyogi)

    The best way to do what you want is usually to hide it on the home page using CSS specific to that page. But for specific help, someone would need to look at your site – can you post a link to it.

    Also, do you have a Child Theme or custom CSS (jetpack plugin is a good option for that) set up? You’ll need to do that before making any changes to theme files — so that your changes are not overwritten when the theme is updated.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to remove the Title in Home Page’ is closed to new replies.