Forum Replies Created
-
In reply to: Copy Link in Forum. WP logo inside
Easiest way is to change the display using css. Add these to your theme custom css
remove logo by
.wp-embed-footer { display: none !important; }and change the background via
.wp-embed { background: #000 !important; }In reply to: Oh bother! No topics were found here!new forum? old forum stopped working? converted forum? just started happening? been happening for ages ? what have you upgraded?
In reply to: Copy Link in Forum. WP logo insideyou’ll need to explain what exactly you are doing – ie what do you mean by ‘product’ and how are you copying it and pasting it
In reply to: bbpress topic problemthanks for the update
In reply to: GDPR EU legislationsee above – big difference between personal data, data used to identify and content – 3 different things.
In reply to: bbpress topic problemwhat do you mean by ‘NOT showing the topic contents’ – do you mean the topic displays, but the content area is blank, or that the whole topic doesn’t display?
In reply to: No Login on mobile devicejust tried it using a simulator
and yes it doesn’t appear.
suggest you add it to the main menu
lots of plugins that will do this eg
In reply to: No Login on mobile devicelink to site please
In reply to: Help! “newbie” bbpress login problemsnot suggesting that this is a substitute for password reset – you need that capability as well.
In reply to: Membership and forum accessgreat – glad you are fixed
In reply to: Help! “newbie” bbpress login problemscan be lots of things
go to
dashboard>settings>bbp style pack> and tab ‘not working?’ and follow the guide in there
In reply to: Remove rel=โnofollowโ for admin only?the no follow is added at output, not on saving.
so we need to see if the topic/reply is written by an admin or editor and then remove the filter that does the no-follow
This coded is untested, but should work
add_filter ('bbp_get_topic_content' , 'follow_topic_if_admin' , 10 , 2) ; function follow_topic_if_admin ($content, $topic_id) { $user_id = bbp_get_topic_author_id( $topic_id ) ; $user_meta=get_userdata($user_id); $user_roles=$user_meta->roles; $allowed_roles = array('editor', 'administrator'); if( array_intersect($allowed_roles, $user_roles ) ) { remove_filter( 'bbp_get_topic_content', 'bbp_rel_nofollow', 50 ); } return apply_filters( 'follow_topic_if_admin', $content, $topic_id ); } add_filter ('bbp_get_reply_content' , 'follow_reply_if_admin' , 10 , 2) ; function follow_reply_if_admin ($content, $reply_id) { $user_id = bbp_get_reply_author_id( $reply_id ) ; $user_meta=get_userdata($user_id); $user_roles=$user_meta->roles; $allowed_roles = array('editor', 'administrator'); if( array_intersect($allowed_roles, $user_roles ) ) { remove_filter( 'bbp_get_reply_content', 'bbp_rel_nofollow', 50 ); } return apply_filters( 'follow_reply_if_admin', $content, $reply_id ); }Add this to your functions file.
Let me know if it works
In reply to: Help! “newbie” bbpress login problemshowever when I went to bbpress styler and that settings, they only have a login and register and no password reset.. and NO profile that I can see
‘register’ changes to profile if you are logged in – as you can have a profile if you are not logged in, and you wouldn’t want to register if you are logged in !!
and from profile you get password reset
1.404 issue
The link looks good, suggest you try
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
2.
I would like to run the bbpress forums without BuddyPress, if possible. Is there a solution to this issue?
yes bbpress runs quite happily on its own – my bbpress sites run without buddypress.
3.
An engaging business community giving credit to people who take the time to submit comprehensive organizational case studies
beyond ‘support desk’ help I’m afraid – it is do-able but lots and lots of bespoke coding needed (The site is not a bbpress one) . My style pack would help in getting a nicer look
In reply to: Visual pbs ?1. I don’t think I can’t help you further
4. this is theme related and will need css to fix beyond help here – sorry
5. probably theme related – again I can’t really helpIn reply to: No option to create groupsinstall Pascal’s bbp toolkit
once activated go to
dashboard>tools>bbp toolkit>subscriptions and you can select to automatically subscribe new users to forums
In reply to: Conditional for bbpress homegreat – glad you are fixed !
In reply to: Help! “newbie” bbpress login problemsIn the UK – they are called ‘Gloucester Old Spots’ but have Chinese in them from many centuries back !
In reply to: register problemok, I’d talk to your hosting service – this is not normal wordpress behaviour
In reply to: register problemIt 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: Notifications for multiple forumsbbp toolkit has some subscription stuff, or ask either of the plugin supprt above if their plugins can be modified to do this.
great – glad you are fixed !
In reply to: Conditional for bbpress homesimplest way would be to
create a page with a permalink of ‘forums’ (assuming that is what your forums are called in dashboard>settings>forums>forum root slug>forum root)
but with a title of whatever you want the forum page to be called
and just put this shortcode in it
[bbp-forum-index]
That should work
install
Once activated, go to
dashboard>settings>bbp style pack>forum templates and select Alternate Forum template 1
This will then display as you wish
In reply to: Visual pbs ?From @matevoun
Then, now :
1/ I think this is because i’ve installed bbPress Enable TinyMCE Visual Tab plugin, but i need this for uploading new media… ๐
2/ Yes, tell me what can i do… ๐
3/ Done ! Thank you ! I’ve installed your plugin. ๐
4/ I think this is a too little for texte + avatar.
How can i do now ?
Hope to read you soon…
1. As a test deactivate that plugin and see if it works without. If so re-enable and contact that plugins author
2. for the forum list
create a directory on your theme called ‘bbpress’
ie wp-content/themes/%your-theme-name%/bbpresswhere %your-theme-name% is the name of your theme
find
wp-content/plugins/bbpress/templates/default/bbpress/loop-single-forum.php
Make a copy of this file, and put in in the directory called bbpress that you created above, so you end up with
wp-content/themes/%your-theme-name%/bbpress/loop-single-forum.php
bbPress will now use this template instead of the original
and you can amend thisso change line 68
<span class="bbp-topic-freshness-author"><?php bbp_author_link( array( 'post_id' => bbp_get_forum_last_active_id(), 'size' => 14 ) ); ?></span>amend 14 to whatever size you want
3. glad you like it
4. without knowing exactly what you want, I cannot suggest css changes – I suspect we will not fix this one