Forum Replies Created
-
In reply to: Admin Area
that was 7 years ago when bbPress was not a WordPress plugin.
just use any normal WordPress theme.
search bbPress compatible WordPress themes in google to find one that should would work great.
or search bbPress in the wordpress add new theme area in the backend of wordpress.
This plugin will help styling bbPress on any WordPress theme though.
In reply to: need help with strange sticky behavioursorry i could not find a good solution to your issue.
I could not find a good CSS solution to hide it
and i just dont know enough PHPIn reply to: Changing Hyperlink Colorsoh yeah sorry , put it anywhere you can add Custom CSS.
your child themes style.css
a standalone custom css plugin
jetpack custom css module
you can also place this into your bbpress.css file that should be in your child theme in a CSS folder.I have also an other request from them that want a like button just as on Facebook
Is that possible with in bbpress?i already replied to your other topic about a facebook like button.
I taught you where saying that @mentions only worked for buddy press
And use bbpressit should work for both.
When you have installed both on your site..
If you only have bbPress installed you do not get @mentions.
If you only have BuddyPress installed you get @mentions.
Is buddy press the same?
They both improve your community.
One is just forums (bbPress)
the other is basically a lot features a social network usually has (BuddyPress)
How is buddy press related to bbpress
Same Lead Developer and both provide community functionality.
Can you explain for a none techie what I must do and install
To make tagging work on my bbpress forumFist make sure you have installed both BuddyPress and bbPress then go to a topic and try to @mention someone. If it shows up in a link its working on your site.
Tell me if you understand all of this.
In reply to: MAJOR noobie with a lot of questionsI only have 1 registration form. Only 1. the bbp register short code has been deleted but I am still getting the emails from that.
could it be spammer going to this?? instead of the bbPress one that you already deleted.
yoursite.com/wp-login.php?action=register
I can’t imagine any of these being real since the old registration is gone.
yeah you might as well turn registration off til you get sorted out on this issue.
I can’t find where to deactivate registration.
go to settings > general uncheck Anyone can Register
If I deactivate registration, will that affect the VFBP
when you uncheck anyone can register it should disable this until you activate it.
In reply to: forum visitors hosting images elsewhere?As long as you use quality plugins for image upload for bbPress like this one you should be fine.
https://wordpress.org/plugins/gd-bbpress-attachments/
hosting images elsewhere should help on server disk space though, well unless you have a CDN.
In reply to: Send HTML Notification e-mails?the bbPress Notifications plugin author has html emails on their to-do list.
1.1.0
Add option to notify on new topics & replies on selected forums only
Support for HTML tags in emails – https://www.dfactory.eu/support/topic/html-in-emails/
Stop plugin settings being removed on deactivation
1.0.0
Initial releaseis it just the search or is it bbPress entirely??
As long as you have the latest bbPress too it should work fine.
usually users that have problems with bbPress when upgrading to WP 4 , we usually recommend these two plugins to help solve their issue.
you can also go through the normal troubleshooting to identify an issue.
bbpress.org/forums/topic/before-posting/
I already told you how to make @mentions work for bbPress.
Is there anything confusing you from what i said , or do you want @mentions without BuddyPress??
there are likely other people who have posted a topic like this one from 3 years ago.
you can try the code the user placed below for the bbPress custom post types and see if it works.
https://wordpress.org/support/topic/why-does-blog-become-current_page_parent-with-custom-post-type
In reply to: Changing Hyperlink Colorstry this example, change the colors/remove the text decoration to your liking.
.bbpress bbp-topic-content a, .bbpress bbp-reply-content a { color: blue; text-decoration: underline; }
In reply to: Admin Areago to appearance > themes then click the add new button and either search the wordpress theme repository or upload a theme
In reply to: Edit the bbPress login widgetwhat looks awful?? the you are already logged in status?? or how the login widget displays the avatar and profile links if you are logged on.
But to really customize how you want the bbPress login widget to be , the easiest thing to do is create a new widget and base most of the code off of the original bbpress login widget.
In reply to: Admin AreabbPress doesnt have a specific admin area for itself, it basically just uses the existing WordPress admin area.
you can,
create all the forums in the backend.
create some topics/replies in the backend but for me its better to do it frontend.
go to the settings menu go into the bbPress settings by going to settigns > forums in the backend of WordPress.
manage users in the backend.
use the addditional tools in the tools section, its named forums.
use the moderation and blacklisting settings in settings > discussion.
if you need help trying to find something else reply back.
In reply to: MAJOR noobie with a lot of questionsSo, I am using a different registration form with a captcha
how many registration forms do you have now??
I am still get emails about the old one. How can I be getting emails from the old registration if it’s been deleted?!
which old registration form is getting all the emails?? the bbp-register one??
Help! I am over 200 emails with a new user. I don’t know how to stop it!
Are some of them legit users or are all of them Spam?? or is it a mix of the two??
you can deactivate registration for awhile until you get this fixed up to stop them flooding in for now.
BuddyPress should have this feature , bbPress is also compatible with BuddyPress.
In reply to: reply threading not workingthis might be a bug in bbPress then , i will create a trac ticket after im done verfiying that their is an issue.
In reply to: Hierarchy on non-standard layoutsI know it seems a little “big concept”
yes it does, all i can really say then is do your own thing.
In reply to: Some problems with visual editorThis should help.
In reply to: Merge search boxes of bbpress and wordpress?you can add the bbpress post type to the default wordpress search.
copy this into your child theme functions.php or a functionality plugin
/** * Include bbPress 'topic' custom post type in WordPress' search results */ function ntwb_bbp_topic_cpt_search( $topic_search ) { $topic_search['exclude_from_search'] = false; return $topic_search; } add_filter( 'bbp_register_topic_post_type', 'ntwb_bbp_topic_cpt_search' ); /** * Include bbPress 'reply' custom post type in WordPress' search results */ function ntwb_bbp_reply_cpt_search( $reply_search ) { $reply_search['exclude_from_search'] = false; return $reply_search; } add_filter( 'bbp_register_reply_post_type', 'ntwb_bbp_reply_cpt_search' ); function ntwb_bbp_forum_cpt_search( $forum_search ) { $forum_search['exclude_from_search'] = false; return $forum_search; } add_filter( 'bbp_register_forum_post_type', 'ntwb_bbp_forum_cpt_search' );
In reply to: [bbp-topic-tags] not displaying all topic tagsi dont think it would show ALL the topic tags only the most used ones.
like this topic is tagged bbp-topic-tags but the tag does not show in the topic cloud in the sidebar on the forum archive of this site.
In reply to: Need some helpful pointersare you trying to hook a function/apply a filter to the content area of a bbPress post types??
In reply to: Implode Warning on Forums pagetroubleshoot the problem using what is explained in this link in general issues.
In reply to: Displaying User role beside their repliesbbPress should do this now by default like this site has it.