• joellly

    (@joellly)


    I have been carrying out a project, but I need concerning some logistics site, now i needed the website to run on desktop mode for a good a nice view

    Now i am making use of Cargo(transport & logistics) theme, which also have a child theme

    I’m new to wordpress, how can i make this come true..

Viewing 1 replies (of 1 total)
  • Abhishek

    (@abhikr781)

    Hello,

    Please add the below-snipped code in the functions.php file of your child theme to get the desktop view in mobile.

    function no_meta_viewport() {
      return false;
    }
    add_filter( 'ocean_meta_viewport', 'no_meta_viewport' );

    And following the doc will help you with the child theme.
    https://docs.oceanwp.org/article/90-sample-child-theme

Viewing 1 replies (of 1 total)
  • The topic ‘How to force desktop mode in mobile’ is closed to new replies.