Hello,
How can I remove:
- "follow us" at the bottom of the main page
- the comments section at the bottom of every Page
Thank you!
Hello,
How can I remove:
- "follow us" at the bottom of the main page
- the comments section at the bottom of every Page
Thank you!
You must change
<div id="follow-box"><p><?php _e( 'Bizi Takip Edin- Follow us :', 'target' ); ?></p>
in footer.php
Hmm . . . seems like I'm a bit late, but for future reference to those who have the same problem:
Another way without messing with the parent theme's CSS is to add this into your custom CSS or child-theme CSS:
#follow-box { display: none; } /* remove follow us box on main page */
As for disallowing comments on pages, if you go to Pages --> hover your page titles --> Quick Edit --> uncheck the Allow Comment box.
thank you so much!!!!! :)
You must log in to post.