Hi Pepsi,
Did you customize any theme main code or add extra code in the theme to work businessdirectory plugin.
We have investigate the issue and found that the <div class="entry-content">
tag which is the container wrap of the main content is inside <header>
tag and <header>
tag is made display: none
by the plugin. <div class="entry-content">
tag should be outside of <header>
tag.
What you need to do is just paste below custom CSS code in Appearance > Customize > Design Options > Custom CSS
.page .wpbdp-listing .listing-title a {
pointer-events: inherit !important;
}
.single .wpbdp-view-content-wrapper header.entry-header {
display: block !important;
}
If you have any problem please let us know.
Also do not share any password here in this forum as this forum is public and visible to all.
Thank you!