XF 2.0 Trying to get rid of breadcrumb and share buttons on homepage

jr777

Active member
I want to get rid of the breadcrumb and the sharing buttons on my homepage (germanglish.org).
 
Other method to remove them from forumlist (forumhome) is as follow:

Go to admin then Appearance > Widgets

Find share this page and click on it, then uncheked the Forumlist: Sidebar and click Save.
 
Other method to remove them from forumlist (forumhome) is as follow:

Go admin then Appearance > Widgets

Find share this page and click on it, then uncheked the Forumlist: Sidebar and click Save.
I have a homepage. I'm just trying to clean it up so I can use a background image for a nice clean landing page.
 
XF2.0 doesn’t have a Homepage, it have a forumlist, and the above methods are applicable for removing the sharing buttons from the forumlist or to disable them entirely. If you have a Homepage add-on I think there where you should start looking to disable those buttons.
 
XF2.0 doesn’t have a Homepage, it have a forumlist, and the above methods are applicable for removing the sharing buttons from the forumlist or to disable them entirely. If you have a Homepage add-on I think there where you should start looking to disable those buttons.
Follow the link in my signature and you'll see what I'm talking about.
 
Okay, here's the code I have in my home page template.

This one hides the page title:

Code:
<xf:h1 hidden="true" />

This one hides the breadcrumbs:

Code:
<xf:css>
.p-breadcrumbs {
display:none
}</xf:css>

This one hides the share buttons:

Code:
<xf:css>
.p-body-content {
display:none
}</xf:css>

This enabled using an image as a background:

Code:
<style>
body {
    background-image: url("");
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    background-color: white;
}
</style>
 
Top Bottom