Staff. NEED HELP NOW!

Yashjeet

Active member
Ok. I have 3 problems. My first and second one is below to.


1. How do i add a google plus buttom in the share page block.



2. How do i delete the Members and Help page in xenforo in the nav bar: This is my domain: www.infiniteitems.net



3. How do i Edit a page in xenforo
 
1. it's an add-on look in the resources http://xenforo.com/community/resources/

2. It's a template modification, search and it should being up numerous results... but off the top of my head go to extra.css and add
.navTabs .navTab.help, .navTabs .navTab.members { display: none !important; }

3. AdminCP > Applications > Display Node Tree > Click the page node name and go to the page options tab... edit from there.
 
Ok. I have 3 problems. My first and second one is below to.


1. How do i add a google plus buttom in the share page block.



2. How do i delete the Members and Help page in xenforo in the nav bar: This is my domain: www.infiniteitems.net



3. How do i Edit a page in xenforo
1. admincp -> search engine options
g=1.webp
2. This wont delete them but it will hide them which also lets you not have to alter default templates effected by upgrade..
Paste this in your EXTRA.css template

Code:
.navTab.help, .navTab.members {
    display: none !important;
}

3.admincp -> applications -> display node tree -> click the page you want to edit, and then select the page options tab
 
Top Bottom