Forum Replies Created
-
In reply to: How do I change font color in closed forum topics
ok, 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>' ; }
In reply to: Users can’t reply to forumgreat – glad you are fixed !
In reply to: Can bbpress run on a subdomainbbpress needs a full wordpress installation and wordpress theme.
so to the extent that you can run a separate site with just wordpress, a theme and bbpress, then yes, but in the sense of having a main site with wordpress and a theme and just the forums on a subdonmain then no.
In reply to: All forum replies sents emailbbpress ends notifications using a bulk email address of noreply@domain.com and bcc’s in the subscribers of that forum
so an email might be
to : noreply@domain.com
bcc : jon@abc.co, fred@defd.com, george@hhd.comI suspect that you host provider/email account is forwarding this to you as admin.
Probably either talk to your host provider, use this plugin, or add the noreply@domain.com
address to your spam/blocked lust so that you don’t see them.In reply to: Autosubscribe all users?Pascals’ bbp toolkit has an option for you to do that.
once installed and activated go to dashboard>forums>all forums and if you hover over a forum there is a subscription option, which includes a ‘tick all’ to let’s you subscribe current users.
an option in dashboard>tools>bbp toolkit>subscriptions allows you to auto subscribe new users as well.
In reply to: Small template issuesgreat – glad you are fixed !
In reply to: Only social login membersadd this to your theme’s functions file
add_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 do_shortcode('[wordpress_social_login]'); echo '</br>' ; echo '</div>' ; }
It may not be perfect, but without seeing its effect on your theme, I can’t say, so come back when it is in if it needs tidying up
In reply to: Copy Link in Forum. WP logo insidecontact me via my website
In reply to: Request – disable mentions notifications from quotesok, I see you also sensibly posted on the buddypress forum as well.
I suspect they’re better placed to work out a solution, but if you get nothing back in a week, bump this topic and I’ll try and find the buddypress hook and see how easy it is to overwrite.
No promises 🙂
In reply to: Request – disable mentions notifications from quotesObviously you are very quotable !!
From a quick goggle one or both of these might work
1. add this to your functions file
add_filter( 'bbp_find_mentions', '__return_false' );
If that doesn’t work or you are being mentioned in buddypress as well
2. this plugin whilst old probably still works
In reply to: Only social login membersok, can you give me the social widget shortcode you want to use
In reply to: Using Forms with BBpressit is doable, but you would
1. need to find a forms plugin that has a pre-submission or post submission hook
2. find someone to add the code to create a topic from that hook.I’ve done the pre-submission from gravity forms, but someone else did the form, and I just did the create topic bit.
In reply to: Threading not workingdefinitely not what I get.
I’m tied up on a project at the moment which requires me not to have threading on my test site, so it could be a few days before I look further.
However contact me via my website and when I get a chance I’ll take a quick look at your site
In reply to: Users can’t reply to forumok, so if you say the forum is public, but hidden in buddypress, then we are on basic fault finding.
so as a test
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.
I’d start with buddypress. You are just deactivating as a test.
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: BadgeOS points under username in forumglad it works
yes just change that line to
echo '<div class="badge-os"> Points: '.$points.'</div>' ;
change the class name to anything you want.
In reply to: list of all functionsI thought we had one, but can’t find it.
The best way into bbpress is to start with the templates – these are the most likely thing you’ll want to alter, and placing amended ones in a ‘bbpress’ folder in your theme will make weordpress use these instead.
so go to
bbpress/templates/default/bbress/content-archive-forum.php
This is the first template called, and all the functions and templates you want to use will cascade from here.
In reply to: paid file sharing like phpbbThere is nothing I know of, and whilst it is possible with a deal of code, beyond free help I’m afraid
In reply to: Navigation & BuddyPress Group Feature RequestGreat !!
In reply to: Only social login membersso..there is no any way to “hide” register form and just left social media login?
ok, we’re a bit outside bbpress support here, as this is theme/other plugin related.
where is register (I’m not good in your language!)?
Also, can you tell me how can I publish social widget shortcode in header of all forum pages?
if you are ok with copying coding and FTP files, then I may be able to help
In reply to: BadgeOS points under username in forumalthough you may want to alter the last line to something like
echo 'Points: '.$points ;
so that more than just a number appears !
In reply to: BadgeOS points under username in forumBadgeOS is a plugin so I can’t comment on whether your code would work – it looks fine from a technical point of view.
I’ve tweaked it so that it shows the points for each user rather than the current user and added the function to get it below the author name, so if the function is correct this code should work.
add_action ('bbp_theme_after_reply_author_details', 'badgeos_show_users_points') ; function badgeos_show_users_points( $user_id = 0 ) { $user_id = bbp_get_reply_author_id(); // echo our user’s points as an integer (sanely falls back to 0 if empty) $points = absint( get_user_meta( $user_id, '_badgeos_points', true ) ); echo $points ; }
let me know if it works
In reply to: BBCodes bbpress list?I think they are pretty much as per the list above a topic/reply.
You can use this plugin to extend