• Hello, can someone help me?
    I used the following php code to hide the page title. But I would like to hide it only on the cell phone. How can I do this? THANK!

    // Disable page title on single posts
    function disable_title( $return ) {

    if ( is_singular( ‘post’) ) {
    $return = false;
    }

    // Return
    return $return;

    }
    add_filter( ‘ocean_display_page_header’, ‘disable_title’ );

    But I would like to hide it only on the cell phone. How can I do this?

Viewing 1 replies (of 1 total)
  • Hi,

    You can use the CSS code for that instead of this PHP code.

    Or You can go to Appearance > Customize > General Options > Page Title, and select the visibility “Hide on mobile”, and check.

    If not resolved, share the page URL to inspect the code accordingly.

Viewing 1 replies (of 1 total)
  • The topic ‘Php Ocean wp’ is closed to new replies.