Forum Replies Created
-
In reply to: Profile email messed up
so did you do the test above with just a default theme and bbpress ?
In reply to: User email managementI looked at the forum screens and there is a button for adding a forum to a digest. I clicked it and it changed to give me the option to remove it from the digest.
whereabouts is this?
In reply to: Forums link to homepageso what have you got set in private groups>forum visibility?
In reply to: Profile email messed uphmm… ok not one I heard before and there are lots of dutch versions.
Is this just one user or all of them?
I cannot say, but suspect someone with the authority hit the key by mistake when looking.
hey, thanks for posting this helpful solution – it will help others 🙂
In reply to: Profile email messed upyou can screenshot, load the images to your wordpress media, and then post here the url for the media image.
Otherwise I would need a link to a live example
In reply to: User email managementJust installed bbpress digest – nothing critical has changed in bbpress since it was written.
This adds a section to the bbpress user profile edit page which lets each user specify how often and when they get the digest.
I’ve not tested, but might be worth you taking a second look at this.
In reply to: Editing toolbaragree with your there 🙂 but something more like ‘word’ would be so much better. ‘Normal’ users just don’t understand what on earth a ‘block’ is, and it’s so clunky to use.
Anyway, not up to me, up to the bbpress devs.
In reply to: Editing toolbarmy personal view is that the block editor is totally horrible, and requires users to understand blocks when all they want to do is type words. I hate the way it looks on my support forums. Not one I plan to add to bsp anytime soon 🙂
In reply to: Profile email messed upit 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: User email managementThis is available as a premium add on for
see digest tab in the plugin details.
Also this is old, but might still work
In reply to: Archives:ForumsTry this
add_filter( 'get_the_archive_title', 'to_archive_title_remove_prefix' ); function to_archive_title_remove_prefix( $title ) { if ( is_post_type_archive() ) { $title = post_type_archive_title( '', false ); } return $title; }
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: Limit replies per day per user?1. only replies
2. bespoke code neededIn reply to: Reply delete then restore doesn’t work anymoreit has been repported.
There is a fix in
once activated go to
dashboard>settings>bbp style pack>bug fixes
and you’ll see the ability to Fix ‘Restore’ on front end
In reply to: Different Header in Sub-Forum and Sub-Sub-ForumIn reply to: hiding some items in forum & topic pagegreat – glad you are fixed 🙂
🙂
In reply to: Customizing the bbPress login pagethat is not part of bbpress.
In reply to: hiding some items in forum & topic page2nd – works in my browser for your site – can you close and reopen and check again, or post a new image showing what is still wrong, and links to an exact example.
3rd – I don’t know what ‘no output results’ means ??? again it seems to have gone from your site in my browser.
I did see that I had not taken out the ‘author/posts’ from the footer – you can add this
.forums.bbp-replies li.bbp-footer { display: none; }
In reply to: Function to return all replies to a topicmy code above corrected works, but yes do come back and let us know if you find the problem or need further help
In reply to: hiding some items in forum & topic pageput this in the custom css of you theme
div.bbp-template-notice.info { display: none; } .bbp-pagination-count { display: none; } .forums.bbp-replies li.bbp-header { display: none; }
In reply to: Customizing the bbPress login pageok, based on that I have no idea what you mean by embedding.
bbpress does not have a ‘login page’ it has shortcodes and widgets.
the template used by bbpress for login is
bbpress\templates\default\bbpress\form-user-login.php
to customise :
find
wp-content/plugins/bbpress/templates/default/bbpress/form-user-login.phptransfer this to your pc and edit as desired
and save
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
Then transfer the file you saved above and put in in the directory called bbpress that you created above, so you end up with
wp-content/themes/%your-theme-name%/bbpress/form-user-login.phpbbPress will now use this template instead of the original
In reply to: Customizing the bbPress login pageIn reply to: Customizing the bbPress login pagethere are also lots of login customization plugins which may do what you want a whole lot easier
eg