Forum Replies Created
-
In reply to: Notifications/Subscriptions for participantsIn reply to: Topic url in email notifications
one for the bbPress Notify (No-Spam) plugin’s support page.
what shortcodes are you using ?
In reply to: The Participant role is not editableok suspect it is the members plugin, suggest you contact their support site.
sorry, can you be clear, this is JUST using the search box on forum pages – yes ?
if so
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
In reply to: Forum Post Notificationwith bbpress you subscribe to forums, so unless you bhave subscribed, then you won’t get notified.
You can and control and auto-subscribe users to forums using
or instaed/in addition use
which some admins use to see what is being posted
In reply to: The Participant role is not editableNot directly – there are plugins that do that eg
In reply to: “Oh, no debates have been found here”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
In reply to: The Participant role is not editablesuspect it is related to your memebership plugin – see
In reply to: Disable Text Editor and use of HTMLok, are you using my style pack
if so the topic/reply form tab has options to do this.
If not, consider installing it !
In reply to: Disable Text Editor and use of HTMLsorry – it needs to go in your theme’s functions file
In reply to: Where is this information savedgreat – glad you are fixed
In reply to: Where is this information savedok, two wrong fixes, so I loaded it to my test site
This works for me
add_action ('bbp_theme_after_reply_author_admin_details', 'rew_add_email') ; function rew_add_email () { $email = get_post_meta ( bbp_get_reply_id () , '_bbp_anonymous_email', true ) ; if (!empty ($email)) echo '<p>'.$email ; }
In reply to: Topics only visible to Administratorsgiven this is a paid theme that claims to protect your site, it is really one to raise with them.
I don’t have their plugin to be able to test
In reply to: Threading not workingno problem
In reply to: Disable Text Editor and use of HTMLThis should work
add_filter( 'bbp_after_get_the_content_parse_args', 'rew_disable_text_editor' ); //editor bbpress function rew_disable_text_editor( $args = array() ) { $args['tinymce'] = true; $args['quicktags'] = false; if( current_user_can('administrator')) $args['quicktags'] = true; return $args; }
add this to your functions file
In reply to: Where is this information savedok, try this, if this fails I will load it to my test site and get it right for you
add_action ('bbp_theme_after_reply_author_admin_details', 'rew_add_email') ; function rew_add_email () { $email = bbp_get_author_email (bbp_get_reply_id () ) ; if (!empty ($email)) echo '<p>'.$email ; }
In reply to: Where is this information saveduntested (as I’ve not got anonymous set on my test site, and I’m on another project) but this should work
add_action ('bbp_theme_after_reply_author_admin_details', 'rew_add_email') ; function rew_add_email () { $email = get_post_meta ( bbp_get_reply_id () , '_bbp_anonymous_email' ) ; if (!empty ($email)) echo '<p>'.$email ; }
Add this to your functions file.
This will put the email after the ip address on anonymous topics and replies for admins only
If it doesn’t work come back and I’ll do some testing
In reply to: Where is this information savedok, do you know how to add code to your functions file if I give you some
In reply to: Where is this information savedFrom memory the email address is shown to Keymasters only, and appears after their name in topics and replies.
If that is not happening for you, then come back, and I’ll take a look
In reply to: Disable Text Editor and use of HTMLdo you know what you did to enable the visual editor – just changes how I give you the solution
In reply to: How do I change font color in closed forum topicsok, the forum roles are what you are looking at, and these are set on first login, so the users you have set up have not yet logged in.
I am still trying to work out what your exact problem is now – can you state in a paragraph what is still wrong
In reply to: How do I change font color in closed forum topicscan you just confirm that the link at the very start of this thread, which now shows
‘This forum contains 3 topics…’ etc but then says ‘Oh bother! No topics were found here!’ shows 3 topics when logged in as a participant?
In reply to: Only social login membersGreat – glad you are fixed !
In reply to: Only social login membersadd_action( 'bbp_template_before_forums_index' , 'rew_shortcode' ) ; add_action( 'bbp_template_before_topics_loop' , 'rew_shortcode' ) ; function rew_shortcode() { echo '<div class="social_login" >' ; echo '<br>' ; echo 'Inicia sesión con su cuenta de redes sociales y participa en el foro' ; echo '</br><br>' ; echo do_shortcode('[wordpress_social_login]'); echo '</br>' ; echo '</div>' ; }