Forum Replies Created
-
In reply to: global auto unsubscribe method needed
which 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
In reply to: bbPress Required Profile Fields – What’s the code?ok so bbpress does not ask for profile fields, so it might be your theme doing this
what theme are you using, and what ‘fields’ have you set up, and using which part of your site ?
In reply to: bbPress Required Profile Fields – What’s the code?are these profile fields from buddypress ?
In reply to: Topics not showing in FrontEndgreat – glad you are fixed
In reply to: Topics not showing in FrontEndtry
dashboard>tools>forums>repair forums
In reply to: Topics not showing in FrontEndIn reply to: writing to contentscode that works is never bad !!
thanks for posting the final solution, and great that it works !
In reply to: writing to contentsthe $post array does not exist in this function
try
if (get_post_type ($post_id) == bbp_get_reply_post_type() ) {
In reply to: How can I limit some users from direct postingthis possibly
In reply to: writing to contentstry this
function waa_content( $content, $post_id ) { $extra_text = 'hello' ; //append extra text to the end of reply content $content.= $extra_text ; return content ; } add_filter( 'content_edit_pre', 'waa_content', 10, 2 );
In reply to: Forum statistics styling🙂
In reply to: writing to contentsso how do you ‘publish’ them
eg dashboard>something>something else
and what is the status of the reply before and after?