Forum Replies Created
-
In reply to: How can I define the status of sub-forum ?
no that is no clearer.
why do you not want to create private sub forums?
why do you need automatic access to the sub forums, and if you do why can you not just set each as private, and then it all works?
Perhaps if you just explained what you are trying to achieve, rather than forum private/public settings, then I can help further
In reply to: How to create categories to structureyou simply create forums and sub forums.
So for instance you create
Forum-1 – as a forum if you want topics in that, or as a category if you do not
Then create
— sub-forum-a
— sub-forum-b
— sub-forum-cand in each forum users can create new topics or reply to existing
Again I am confused as to what the issue here is?
In reply to: How can I define the status of sub-forum ?sorry I’m very confused about what you are trying to achieve.
If you simply want them all private, then just set them that way, do you have a particularly large number of sub forums?
In reply to: Help with user logincan you confirm that you are using the bbp-style-pack and that it is settings in there? or wre are you settings this?
In reply to: separated sections in BBpressgreat – glad you’re fixed !
In reply to: Font-Sizegreat – glad you are fixed !
In reply to: Font-Sizean rename it to bbPress.php
php is case sensitive, so if you name it
bbpress.phpit 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_urlheld 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 );