- This topic has 14 replies, 2 voices, and was last updated 10 years, 4 months ago by .
Viewing 15 posts - 1 through 15 (of 15 total)
Viewing 15 posts - 1 through 15 (of 15 total)
- You must be logged in to reply to this topic.
Select Page
Home › Forums › Community Support Forum › WordPress Plugins › bbPress New Topic › New Topic Purchased
Hi
I purchased the bbPress New Topic today, but have yet to receive a download link.
I have checked spam / junk folder but nothing there.
I have just received the email so no problem now. but i have a question when i click forum from my navigation and it loads i can see the button add topic at the top see image below, is there a way to remove it from that section without removing from the correct pages.
Hi,
I am glad you’ve received the download link.
oh, so you want the button to show only on topics?
Slavi
Hi
If you take a look at my website and go to the forumn you will see the button at the top I don’t want it to be visible there , it shows correctly if you go in a category like introductions
Hi,
do I have to be logged in to see it?
Slavi
Hi
Yes you must have to register didn’t know it didn’t show it unless you are
Hi,
Can you try this snippet?
You can put the following code into your footer.php
<style>
.postid-1845 .orb_bbpress_new_topic {
display:none;
}
</style>
or if you want to put it into your theme’s style.css. Use this
.postid-1845 .orb_bbpress_new_topic {
display:none;
}
Slavi
Hi
that has worked great. thanks for your help.
Awesome!
Hi
I have had to reset my whole website & theme settings because of an update (it completely messed things up) and that bit of code you gave me does not work now. if you visit website and then forum now it shows the add topic button. can you help again.
thanks
Open the page and right click to view the source.
Then look for “<body” tag. There you should see class attribute. Then use the correct number.
Hi
i am viewing the page source, what am i looking for as it looks like some of your message is missing.?
thanks
Just corrected my previous message.
You can try this
.page-template-tmp-home-php .orb_bbpress_new_topic {
display:none;
}
OR this
.page-id-55 .orb_bbpress_new_topic {
display:none;
}
that has worked great.
thanks very much
Great! You’re welcome.