Forum Replies Created
-
In reply to: Which widget is this
sorry I’m really busy at the moment – it would really help me if you could paste revised code 🙂
In reply to: Which widget is thisjust released 4.4.1 which has those changes in
In reply to: Which widget is thisfancy giving me the corrected lines? 🙂
In reply to: Which widget is thisnone in bbpress, but I added the capability in style pack
once activated you’ll see it in the widgets as
(style pack) Single topic info
In reply to: Linking a sub form to a main forumok, could be written – but beyond free help I’m afraid
In reply to: Disable “pending” status to allow all content.ok, something will be stopping that
it could be a theme or plugin issue
Themes
As a test switch to a default theme such as twentyfifteen, and see if this fixes.
Plugins
If that doesn’t work, also deactivate all plugins apart from bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.
Then come back
In reply to: Linking a sub form to a main forumyou can create tiered forums quite easily.
go to
dashboard>forums>edit forum and select the forum you wish, then on ten right hand side, select what parent forum you want it to belong to.
dashboard>settings>discussion and change the number of links
In reply to: Disable “pending” status to allow all content.dashboard>settings>discussion
In reply to: global auto unsubscribe method neededask them for a hook on membership ceasing, they’ll know what a hook is.
In reply to: Redirection after registrationor use
In reply to: global auto unsubscribe method neededwhich membership are you using?
In reply to: global auto unsubscribe method neededthe problem is that there are dozens and dozens of membership plugins, each with its own bespoke code that it uses when members leave. Some will have a hook that a coder can link to, but it is specific to that plugin, some have no hook, so it can only be a manual process, or one linked to a daily routine.
Without knowing which membership plugin and knowing if it has a hook, it is impossible to answer this question.
in all cases it will be ‘custom code’ whether written by you or someone else 🙂
In reply to: global auto unsubscribe method needed@mrmillercoach – do you need help for you to code it, or someone to code it for you ?
great
In reply to: TinyMCE will not display on siteso did you try the style pack above ?
link to your site and an example please
In reply to: How do I allow posting URLs in my forum?are you using askimet ?
one url, and url?
can you as another user post with a url he has used?In reply to: How can I limit some users from direct postingIf you change this to get it to do certain users, do post back the solution
In reply to: How can I create new user groups in bbpress?In reply to: BBpress 2.6.1 translations issuePut this in your child theme’s function file – or use
add_filter( 'gettext', 'rew_bbpress_translate', 20 , 3 ); add_filter( 'ngettext', 'rew_bbpress_translate' , 20 , 3 ); function rew_bbpress_translate( $translated, $text, $domain ) { if ($domain == 'bbpress') { $words = array( '%s day' => '%s jour', '%s days' => '%s jours', 'Last Post' => 'Dernier message', ); $translated = str_replace( array_keys($words), $words, $translated ); } return $translated; }In reply to: bbPress Required Profile Fields – What’s the code?it’s doable, but beyond free help I suspect
In reply to: few questionsok, so bbpress does not have the feature of preventing posting until email confirmation, although this might be by default if your site doesn’t add users until you have confirmed.
In essence if your user is set up with bbpress access, then that is what they get.
one of the plugins above might add that functionality, although I suspect not.
can you list bbpress related plugins please