Forum Replies Created
-
In reply to: Font-Size
great – glad you are fixed !
In reply to: Font-Sizean rename it to bbPress.php
php is case sensitive, so if you name it
bbpress.php
it should work
In reply to: bbpress bulletsThought the customizer was just for themes – can’t find any docs on adding plugins to it?
In reply to: redirect user edit profile to custom pageok, you will need help from a buddypress expert, as buddypress takes over the profile.
suggest you post on their support forum
In reply to: redirect user edit profile to custom pageok, are you running just bbpress or bbpress with buddypress?
In reply to: bbpress bulletsok, I suspect your theme is doing this as bbpress doesn’t do dots.
Can we have a link to your url
In reply to: redirect user edit profile to custom pageadd_filter( 'bbp_get_user_edit_profile_url', 'http://example.com');
should do it
In reply to: redirect user edit profile to custom pageI can, but you’ll need to give me the url you want the user to go to
In reply to: redirect user edit profile to custom pageprobably the easiest is to filter the edit profile call
bbp_get_user_edit_profile_url
held in
includes/users/template.php
it has
return apply_filters( 'bbp_get_user_edit_profile_url', $url, $user_id, $user_nicename );
so an ‘add_filter’ on that should work nicely
In reply to: can’t install bbpressok, so enable those plugins one at a time and see which is making the issue
In reply to: Font-Sizeit may be that your theme is overwriting it (or it could be lots of other reasons !)
try
#bbpress-forums { font-size: 16px !important ; }
or use my style pack, which will let you style fonts and much more
In reply to: bbpress bulletsnot sure which bullets you are referring to, but this plugin will let you display without counts.
In reply to: Replies in Visual Tabnot sure what quite what you mean, probably just me not familiar with what a ‘visual tab’ is, can you explain further?
In reply to: sub forum titles in [bbp-forum-index]link to your site?
In reply to: BBpress login not working rightdo you still have a problem, it looked ok to me
In reply to: Installation ok but want another displayIn reply to: separated sections in BBpressyou can set up sections using the alternate template in my style pack plugin. This will also let you change how bbpress is styled.
In reply to: Topics Not Showing on ForumI’d suggest that it is an issue with worpdress capabilities.
However I’d suggest that you start by asking simples files support as that is a paid plugin.
thanks !
In reply to: Custom Subscriptions EmailIt’s on my list of things to look at for my style pack plugin
In the meantime, you’ll find the relevant emails in
includes/common/functions
and can filter using for forums
$message = apply_filters( ‘bbp_forum_subscription_mail_message’, $message, $topic_id, $forum_id, $user_id );
and for topics
$message = apply_filters( ‘bbp_subscription_mail_message’, $message, $reply_id, $topic_id );
If this is an issue, then it will be caused by my private groups plugin, can you re-post this on my plugin’s support forum, and I’ll pick it up and progress from there
In reply to: Blank Screen since WP 4.7 (also in 4.7.1)4.7/4.7.1 and bbpress 2.5.12 work
If you have these then :
1. what php version are you running?
your host provider can answer this
or you can install
https://wordpress.org/plugins/display-php-version/
If it’s php7 then come back
otherwise
It could be a theme or plugin issue
Plugins
Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Themes
If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentyfifteen, and see if this fixes.
Then come back
interesting – do please let us know how you get on
In reply to: How can I relate a Topic to more than one Forum?bbpress uses wordpress structure which works on a hierarchy, so a topic/post has a forum/post parent.
Would take a lot of customisation to make bbpress work differently to that – loads of functions would need total re-write.
Off-hand I can’t see how this would be achieved.
In reply to: How to add Box shadown for bbpress input textara boxThis does the background color, I’ll leave you to pick the bones out of it.
`#bbpress-forums input[type=”text”], textarea,
#bbpress-forums input[type=”text”]:focus, textarea:focus,
#bbpress-forums .quicktags-toolbar
{
background-color: red; ?> ;
}`