• If I leave the tagline empty, the result is “Recent posts” displayed in home page, above the main menu… I don’t want it any tagline!
    Please help!

    I’m not expert in code, I’m a content manager so I need easy instructions please… ??

Viewing 12 replies - 1 through 12 (of 12 total)
  • wich style you use in customizer for the header?

    customise/header/general/style –> style?

    I

    Thread Starter annatitagallo

    (@annatitagallo)

    “Medio” (in Italian, I think it’s “medium” in English),
    anyway if I change this option the tagline is still visible…

    Thank you for the answer and the help!

    Anna

    Thread Starter annatitagallo

    (@annatitagallo)

    • This reply was modified 4 years, 9 months ago by annatitagallo.
    Thread Starter annatitagallo

    (@annatitagallo)

    Here you can find a screenshot of the home page…
    The tagline is that “articoli recenti” that appears if I leave the box “motto” empty.

    https://drive.google.com/open?id=1eIMBpC3rlv8Pe5rLPd9wXANVvqgXc1EJ

    I see! This is the page title not tagline. ?? The tagline apears under the page title and only displayed if you choose for ‘top menu’ style.

    So got to:
    customise/general options/page title/visibillity. There you can choose for wich devise you will show oder hide the page title. Under Style you can choose hide and the page title is gone ??

    Thread Starter annatitagallo

    (@annatitagallo)

    Ah well, you’re right, it can be a title, but I cannot find the “hide” options…

    Anyway, I solved one of my trobles: now the tagline is not empty but no more visible on the hp! ??

    I used your advice and now on tablet and mobile the title is not visible, but in “Style” I don’t see any “hide” option, maybe this is the true problem…

    THAAAANKS A LOT for your patience!

    Im sorry, its called hidden not hide

    I used your advice and now on tablet and mobile the title is not visible, but in “Style” I don’t see any “hide” option, maybe this is the true problem…

    Stile: Nascosto ??

    https://docs.oceanwp.org/article/166-disabling-the-page-title

    There is another option to hide the page title. Therefore you have to install a child theme and change the php code in functions.php
    But you should solve this with customizer ??

    • This reply was modified 4 years, 9 months ago by malthead.
    • This reply was modified 4 years, 9 months ago by malthead.
    Thread Starter annatitagallo

    (@annatitagallo)

    I cannot see that option:
    Stile: Nascosto ??

    I don’t have it, I don’t know whay…
    I only have “hide on tablet and mobile” and it works!

    At the moment I see the tagline again.
    It means that:
    – if a set a tagline, it becomes the home page title
    – if I let the tagline empty, the title becomes “last posts(/articoli recenti”

    Anyway, I don’t want to hide titles on all the pages, so I think I should find a way to set my home page in a different way ??

    (thanks again, you are a savior)

    I cannot see that option:
    Stile: Nascosto ??

    I don’t have it, I don’t know whay…
    I only have “hide on tablet and mobile” and it works!

    Could you please post a screenshot of this setting options? Especially the drop down menu for the stile options.
    I cant believe that this option is not available in your theme, scusi ??

    Thread Starter annatitagallo

    (@annatitagallo)

    Ok, I found it,
    but now I have to enable the page title every time a create a page… ??
    anyway… let’s say SOLVED!

    you deserve a pizza when you come to Italy… ??

    only a pizza? ??

    Hello @annatitagallo,

    Try to add the code to the child theme’s functions.php file to disable the page title only on the home page. After adding the code you can change your customizer settings like before to avoid enabling the page title every time.

    function owp_disable_page_title( $return ) {
    
        if ( is_home() ) {
            $return = false;
        }
        return $return;
    }
    add_filter( 'ocean_display_page_header', 'owp_disable_page_title' );

    OceanWP child theme – https://docs.oceanwp.org/article/90-sample-child-theme

Viewing 12 replies - 1 through 12 (of 12 total)
  • The topic ‘I don’t want the tagline to be displayed’ is closed to new replies.