Forum Replies Created
-
In reply to: Image upload
so have your reported this to that plugins support channel?
In reply to: About bbpress email notificationsI used a plugin called “bbpress-new-topic-emailer”.
can you provide a link to this plugin?
In reply to: plugin error in our weird configurationbbpress has not had a release since November 2021, so what do you mean by ‘has lately’ – if after that, then suspect something else is now making that not work.
You suggested cause (‘I suspect the code doing this is non-standard’) may be correct and something else is now causing this to show or it may not be bbpress causing this. Maybe look at what else has changed – wordpress, php versions, other plugins etc.
Without knowing your set up or indeed your technical ability (although from you post this seems to be good!) I’d also initially suggest the standard fault finding :
it could be a theme or plugin issue
Themes
As a test switch to a default theme such as twentytwenty, 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.
If you cannot do this to your site (say because it is live) then use the ‘troubleshooting’ features of this plugin to let you test without affecting other users
Then come back
In reply to: change post time to time ago🙂
In reply to: make text single spaceok, if still a problem when you go live, come back
In reply to: change post time to time agoadd_filter( 'bbp_get_reply_post_date', 'rew_show_time_since' , 10 , 6) ; add_filter( 'bbp_get_topic_post_date', 'rew_show_time_since' , 10 , 6) ; function rew_show_time_since ($result, $reply_id, $humanize, $gmt, $date, $time ){ $gmt_s = ! empty( $gmt ) ? 'G' : 'U'; $date = get_post_time( $gmt_s, $gmt, $reply_id ); $result = bbp_get_time_since( $date ); return $result ; }
Put this in your child theme’s function file –
ie wp-content/themes/%your-theme-name%/functions.php
where %your-theme-name% is the name of your theme
or use
In reply to: make text single spacethat’s a picture – a bit like sending me a photo of your car engine and asking me what the noise is 🙂
I need a link to the site so I can see what css is being used 🙂
In reply to: make text single spacelink to a live example in your site please
In reply to: Child theme questionssorry, no hosting capability.
your welcome to post a link to your site, with your contact details for anyone who wants the theme
In reply to: user review plugin?only one I know of
In reply to: user review plugin?In reply to: Child theme questionsyes, as long as you use filters, that will be fine
In reply to: Forum Transfer1. dashboard>settings>forums>anonymous and swicth off
2. https://www.elegantthemes.com/blog/wordpress/best-wordpress-migration-plugins?utm_source=Blog&utm_medium=Pillar%20Posts&utm_campaign=Google%20Search&retargeting=off&gclid=Cj0KCQjw98ujBhCgARIsAD7QeAhDyLaGb_xjw5dhc0n1BCPoySFLX4rYxRn7p733JeE1BWfkkKUCPt4aAosiEALw_wcB
3. ??
4. https://www.elegantthemes.com/blog/wordpress/best-wordpress-migration-plugins?utm_source=Blog&utm_medium=Pillar%20Posts&utm_campaign=Google%20Search&retargeting=off&gclid=Cj0KCQjw98ujBhCgARIsAD7QeAhDyLaGb_xjw5dhc0n1BCPoySFLX4rYxRn7p733JeE1BWfkkKUCPt4aAosiEALw_wcBIn reply to: Child theme questionswhat classes do you want to rename?
In reply to: Child theme questionsbbpress will use the plugin templates, you do not need to copy these to your child theme.
not sure what you want to do with breadcrumbs, is this styling or changing behavior?
In reply to: Website integrationyes
In reply to: Remove “Edit” link in reply header for certain rolesno problem
In reply to: Remove “Edit” link in reply header for certain rolesif ($user_role == 'bbp_prime_moderator') unset ($links['edit']) ;
for custom roles, you just name the role itself.,
In reply to: Remove “Edit” link in reply header for certain rolesok, so what is the role on this line
$bbp_roles['bbp_tutor'] = array(
and what is the code you have added in the code above?
In reply to: Links from profile note workinggreat – glad you are fixed !!
In reply to: Remove “Edit” link in reply header for certain rolessorry, try this
add_filter ('bbp_reply_admin_links', 'rew_remove_edit') ; add_filter ('bbp_topic_admin_links', 'rew_remove_edit') ; function rew_remove_edit ($links) { $user_id = bbp_get_current_user_id() ; $user_role = bbp_get_user_role( $user_id ); if ($user_role == bbp_get_keymaster_role()) unset ($links['edit']) ; if ($user_role == bbp_get_moderator_role()) unset ($links['edit']) ; if ($user_role == bbp_get_participant_role()) unset ($links['edit']) ; if ($user_role == bbp_get_spectator_role()) unset ($links['edit']) ; if ($user_role == bbp_get_blocked_role()) unset ($links['edit']) ; return $links ; }
In reply to: BB Press is Running very slowok what about 3. above?
that’s an interesting point.
On email addresses, users do not know each others email addresses from the website, and emails addresses are not shown (unless you are using them as usernames). It is possible that registered user George with email abc@def.com wants to post an anonymous comment alongside his real one. He can post with a username of say Fred, but must enter an email address in the form, so does he use his real one (abc@def.com) or must he enter a made up one? And if you don’t permit a real one from a registered user being used, then as an anonymous poster if I try an email address and it rejects, I know that the user with that email address is already on the site. That user might not want it know that he uses the site, but by testing and telling people that email address exists you are publicizing who is using the site. It’s almost certainly doable, but might have undesired consequences.
On usernames, it is equally possible for one anonymous user to pose as another anonymous user, so it is not just registered users who can get spoofed. Now you could add a test for registered users, and reject these, and that might be sensible, but it is beyond free help, as it would be a chunk of work to do.
If interested in email or username checking, contact me via
http://www.rewweb.co.uk/contact-me/ with a link bacjk to this thread.
In reply to: Links from profile note workingtry
dashboard>settings?permalinks and just click save – this resets the premalinks and sometimes fixed issues such as this.
Then come back
In reply to: Forum Index Looks Wildly Different on Front Endhowever breakdance does it, it is essentailly using the wrong template to display the forum page – one to query with then.
If you get a fix, please do post back here to help someone else who might get this problem in future