Viewing 7 replies - 1 through 7 (of 7 total)
  • Theme Author nobita

    (@nobita)

    Hi wpu9000

    If possible, please let me know the URL of the WEB site

    Usually, the title will be displayed as follows.

    https://www.tenman.info/wp3/previewraindrops/lorem-ipsum/

    Thank you.

    Thread Starter wpu9000

    (@wpu9000)

    Sorry I don’t have a url as I am developing with wamp on my computer.
    Which php template should I be looking in for the “default template” for pages?

    thank you

    Thread Starter wpu9000

    (@wpu9000)

    I changed the static page title from WRG to
    <h2 class="entry-title" style="display:none;">WRG </h2>
    This made the title disappear but I don’t think is the best solution probably.

    Theme Author nobita

    (@nobita)

    This made the title disappear but I don’t think is the best solution probably.

    Raindrops default, not remove entry-title.

    What is attribute style=”display:none;” ?

    If you use that style, it is of course the title is not displayed

    Thread Starter wpu9000

    (@wpu9000)

    I don’t know what <h2 class=”entry-title” style=”display:none;”>WRG </h2> is.
    I think it means “any h2 headings with class of entry-title will not be displayed.
    This was just a guess at how to make the title on the static page go away.
    But now when you look at list of pages in dashboard I have one named <h2 class=”entry-title” style=”display:none;”>WRG </h2>

    What is the best way to make the title on the static page not show, please?

    Theme Author nobita

    (@nobita)

    What is the best way to make the title on the static page not show, please?

    I understand your needs

    not show only browser screen.( html source exists title )

    add style.css, page last below

    .page article .entry-title{
        display:none;
    }

    Complete non-display ( html source not exists title )

    add page first line (<?php before) at functions.php

    <?php
    add_filter( 'raindrops_entry_title', 'function_name' );
    
    function function_name( $return_value ) {
    	if( is_page()){
    		return false;
    	}
    	return $return_value;
    }
    ?>

    Sorry for miss understand

    Thank you

    Thread Starter wpu9000

    (@wpu9000)

    Thank you very much for your help.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘How to not show page title on static page’ is closed to new replies.