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.