Well, control over post types is included into the premium version but if you can tell me the URL I can show you the CSS code to hide it.
Following this thread, as I am look at ways to hide the author box on Business Directory Plugin posts – as the admin is currently stated as the author, but I need to not have the author box appear:
https://www.lovereflexology.net/directory/alison-rippin-reflexology/
.saboxplugin-wrap { display:none !important; }
Thanks for this. However the code removes all author boxes from all posts – including blog posts – so I wanted to remove it only from Business Directory Plugin posts.
Is it possible to just apply it to posts with certain tags/categories?
Sorry I forgot the body class!
Try these solutions:
.wpbdp_listing-template-default .saboxplugin-wrap { display:none !important; }
or
.business-directory .saboxplugin-wrap { display:none !important; }
The following will works only for that page:
.postid-144 .saboxplugin-wrap { display:none !important; }
Works a treat – thank you so much for coming back to me, and helping out.