• arskrigitsioniets

    (@arskrigitsioniets)


    I want to disable mistape on specific one page, but I don’t want to disable auto placing mistape on all pages. Is there any way to do it?

Viewing 1 replies (of 1 total)
  • This is how I hid Mistape from a group of pages under a parent page, as well as from 404s:

    On Dashboard > Appearance > Customize > Additional CSS

    /* Hides Mistape plugin */
    
    .parent-pageid-xx div.mistape_caption { 
        display: none; 
    }
    .error404 div.mistape_caption { 
        display: none; 
    }

    where xx is the parent page post_id number.

    So if you just want to hide it from a specific page, you could try:

    .page-id-xx div.mistape_caption { 
        display: none; 
    }
    • This reply was modified 5 years, 11 months ago by CB.
    • This reply was modified 5 years, 11 months ago by CB.
    • This reply was modified 5 years, 11 months ago by CB.
    • This reply was modified 5 years, 11 months ago by CB.
Viewing 1 replies (of 1 total)
  • The topic ‘How to disable on specific page?’ is closed to new replies.