how to disable plugin for mobile theme

Discussion in 'WordPress' started by neteater, Jan 21, 2015.

  1. #1
    hi, i am currently working on improving site my site speed, dor desktop its 87/100, but for mobile i am finding it difficult to cross 75 score, for better result i need to deactivate some widget and plugin for mobile device, i am using wp touch but it offer same funtion if i go for pro theme, is there any way to disable plugin on mobile device.
     
    neteater, Jan 21, 2015 IP
  2. privatefox

    privatefox Member

    Messages:
    31
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    33
    #2
    If you're using a mobile-specific theme via a theme switcher, you can disable some functionality with CSS and media queries.

    Here's an example:

    @media screen and (max-device-width: 480px) {
    /* mobile-specific styles go here */
    #dcssb-float{
    display: none;
    }
    }
     
    privatefox, Jan 23, 2015 IP
  3. neteater

    neteater Well-Known Member

    Messages:
    734
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    105
    #3
    i am using wptouch theme, i suppose i need to put plugin name in display: none; (in place of none)
     
    neteater, Jan 26, 2015 IP