Forum Replies Created
-
In reply to: bbpress log in process problem
I think this is a change between 2.5 and 2.6.
what issue is this causing you ?
In reply to: Delete “Last Post” from Headers@karado58 – thanks for your help – this is exactly what we need π
There are very few helpers here, but this is community software.
I am just a bbpress user who tries to help others as I was helped when I started, but I cannot get to every post.
In reply to: add ?id= at the topic urlsmay need some tinkering, but something like
add_filter( 'bbp_get_topic_permalink', 'rew_add_forum_id', 10, 2) ; function rew_add_forum_id ($topic_permalink, $topic_id ) { $forum = bbp_get_topic_forum_id( $topic_id) ; if ($forum == '2925') { //append ?id etc. $topic_permalink.= '?id=2925' ; } return $topic_permalink ; }In reply to: Edit profile link not workingso profile works – yes, but only when you click the ‘edit’ link on profile do you get 404?
In reply to: Other users are able to edit each other’s profilewhat wordpress and bbpress levels does a sample user who can do this have?
In reply to: create a un functionGreat – glad you are fixed !! π
In reply to: create a un functionPut 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
add_filter( 'bbp_get_reply_content', 'rew_add_class' , 10 , 2) ; function rew_add_class ($content, $reply_id ) { $content.='<div class="frenchlemans">Iβm superman</div>' ; return $content; }In reply to: create a un functionok, will I’m superman be the same everytime ?
In reply to: create a un functionok, let us try and get to what you want.
so if the content of a reply was ‘hello how are you ?’
then at the moment bbpress would show
<div class="bbp-reply-content"> hello how are you ? </div>what would you like it to show?
In reply to: create a un functionthe above was a question – what do you want it to look like? I was trying to help you, but you’ll find the function in
includes/replies/templates it has a filter you can use.
In reply to: error – undefined variablethat seems to be an error in your buddyboss theme which has amended the loop-single-reply template
loop-single-reply.php in bbpress only has 55 lines.
I would suggest you post this in the buddyboss support forums
In reply to: Cant postit 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: create a un functionso if you currently have
<div class="bbp-reply-content"> This is the content </div>what do you want it to look like ?
you can repeat the breadcrumb using
once activated go to
dashboard>settings>bbp style pack>Breadcrumbs
In reply to: Keymaster cannot see pending repliessorry either ‘Yes, itβs all replies in all forums (I only have one on the site) from all dates’ or ‘ but others have left replies without a problem.’ is true, both cannot be true
Can you try again to write a problem definition.
In reply to: Random Replies being marked Pendingπ
In reply to: Keymaster cannot see pending repliesso are you fixed ?
In reply to: Hire bbPress Expert / DeveloperIn reply to: Keymaster cannot see pending repliesok, so can you confirm
users can posts topics and these all work.
when a user posts a reply, you get an email because you are subscribed to the forum, but no reply appears in the forum, and nothing is seen in dashboard>replies.
is the forum new ? has this always been the case? or just started happening?
In reply to: Setting on search function above of the breadcrumbπ
In reply to: Setting on search function above of the breadcrumbthe page title is a theme display, so you would need to hook to that.
Your theme author might be able to offer either a hook, or tell you what template file is being used for the title.
In reply to: How to troubleshootnot one I’ve come accross.
Next time it happens, try
dashboard>settings>permalinks and just click save, this resets the permalinks.
Might work, might not.
In reply to: Setting on search function above of the breadcrumbtry
bbp_theme_before_forum_titleIn reply to: Keymaster cannot see pending repliesthat may be because they are empty, so bbpress doesn’t bother showing as option.
so is this all replies, many replies, some replies, all forums some forums?
In reply to: Setting on search function above of the breadcrumbpossibly
bbp_theme_after_forum_titleand
bbp_template_before_replies_loop