Forum Replies Created
-
In reply to: Theme problems – double forms
so what shortcodes has it got ?
In reply to: Theme problems – double formsis this an actual WordPress page with shortcodes in it?
In reply to: Display number of new posts/threads since last post?has unread posts – maybe more than you want, but closest I can suggest
In reply to: Which widget is thisgreat thanks – I’ve changed it and it will go on then next release
thanks again 🙂
In reply to: Change forum default textPut this in your child theme’s function file – or use
add_filter( 'ngettext', 'rew_bbpress_translate' , 20 , 5 ); function rew_bbpress_translate( $translation, $single, $plural, $number, $domain ) { if ($domain == 'bbpress') { if ($translation == 'Viewing %1$s topic') $translation = 'Viewing %1$s messages' ; if ($translation == 'Viewing %1$s topics') $translation = 'Viewing %1$s messages' ; if ($translation == 'Viewing topic %2$s (of %4$s total)') $translation = 'Viewing message %2$s (of %4$s total)' ; if ($translation == 'Viewing %1$s topics - %2$s through %3$s (of %4$s total)') $translation = 'Viewing %1$s messages - %2$s through %3$s (of %4$s total)' ; } return apply_filters ('rew_bbpress_translate', $translation, $single, $plural, $number, $domain ) ; }
In reply to: Change forum default textwhat would you like it to say ?
In reply to: Setting forums as my homepagegreat – glad you are fixed
In reply to: Setting forums as my homepagecreate a homepage called anything you like.
then put this shortcode in it
[bbp-forum-index]
In reply to: Which widget is this@sirlouen – thanks, I’ve incorporated all those changes in 4.4.2
Let me know if I missed anything
and thanks so much for helping me improve my plugin – as a one man developer/tester it’s hard to spot where code can be improved !
In reply to: jQuery conflit in BuddyPress-Media pluginyou need to post in buddypress support
In reply to: Which widget is thissorry 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