Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 4,926 through 4,950 (of 64,394 total)
  • Author
    Search Results
  • #208635
    Robin W
    Moderator

    ok, can you list them here and I raise a ticket for you – I’m not a bbpress author, just someone who helps out on here.

    #208632
    Robin W
    Moderator

    ok, you should only receive bbpress emails when you create a topic or respond to a reply, and tick the ‘Notify me of follow-up replies via email’ like the one below the reply box on this thread.

    can you specify a couple of examples of what you are getting ?

    #208631
    mrmut
    Participant

    1. No additional plugins, vanilla bbPress
    2. if you mean in the front end, then no, I just created a form
    3. no

    This is just a simple forum for about 20-30 local guys to chat and joke around.

    (I like the avatar BTW)

    #208630
    Robin W
    Moderator

    bbpress only send out emails you ask it to !!

    1. are you using additional bbpress related plugins?
    2. are you subscribed to forums?
    3. are you using buddypress?

    #208629
    Robin W
    Moderator

    your best bet would be to raise a trac ticket with a list of missing labels

    https://bbpress.trac.wordpress.org/

    #208627

    In reply to: Can’t find settings

    Robin W
    Moderator

    it could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentyfifteen, 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.

    Then come back

    #208624
    whonickedmyname
    Participant

    Hi,

    I’m currently testing bbPress (with the default plugin templates/themes) and have noticed that a number of inputs do not have labels associated with them. I run a number of sites that require we meet a standard of WCAG 2.1 AA.

    Is this something that is likely to be amended in upcoming versions?

    And does anyone have any advice regarding making bbPress compliant?

    Thanks
    Laura

    #208620
    bigskyry
    Participant

    @suranodsk yes, we’ve been through quite a lot of analysis.

    The primary issue is that the new post select and post write queries are taking about 3x longer on 2.6 than on the latest previous version of 2.5.x, and we’re trying to figure out why.

    We’ve run extensive new relic tests and it has isolated the specific queries as the culprit. Otherwise, there’s no other issues with our host or our site that is causing the slow query times.

    So, there’s something in the new 2.6.x bbpress query engine that seems to be less efficient for large databases than in the 2.5.x query engine.

    Sure, we can toss a bunch of server resources, PHP workers, and REDIS at it, but that doesn’t really fit into the bbpress “light and simple” ethos. Lots of performance improvements promised, but when the rubber met the road…

    We’d rather figure out what’s going on structurally with bbPress 2.6 vs. 2.5 than just give up and downgrade to 2.5.

    mrmut
    Participant

    I created a BBpress site, but now I am being plagued by emails of forum activity.

    As I am just an admin, is there a way to set BBPress to send emails of forum activities, registrations and such to another, separate email address and leave me in piece? πŸ™‚

    Thanks

    #208617

    In reply to: HTML in text

    BrokenPixel
    Participant

    I’m never quite sure if I should add to a post that has the same problem, but is obviously unanswered for a long while, or post a new topic. But… our forum also has a very similar issue so it seems sensible to add it here.

    For us, it seems to be specific to text-align (left, right or centre) and for “non-admin” logged in users.

    It displays the html code as is, rather than using it to display the correct text alignment. All other html options in the visual editor we’ve tested so far seem to work – it’s just the text alignment that doesn’t. And only for non-admin users – the html works as it should if an admin user posts.

    <p style=”text-align: right;”>right align</p>

    Hoping for a solution? Am on current versions of bbpress, wordpress and bbp style pack and php version 7.3

    #208600
    Nik
    Participant

    @robin-w Thank you and yes… I was already considering something similar as a temporary fix, although hopefully it’s something bbPress will address at some stage soon as it’s clearly an issue that will be causing problems for a lot of users…

    #208589
    Robin W
    Moderator

    so you couldput this in your functions file of your child theme, it takes out then new filter and puts back the old one

    remove_filter( 'bp_notifications_get_notifications_for_user', 'bbp_format_buddypress_notifications', 10, 8 );
    add_filter( 'bp_notifications_get_notifications_for_user', 'rew_format_buddypress_notifications', 10, 5 );
    
    function rew_format_buddypress_notifications( $action, $item_id, $secondary_item_id, $total_items, $format = 'string' ) {
    
    	// New reply notifications
    	if ( 'bbp_new_reply' === $action ) {
    		$topic_id    = bbp_get_reply_topic_id( $item_id );
    		$topic_title = bbp_get_topic_title( $topic_id );
    		$topic_link  = wp_nonce_url( add_query_arg( array( 'action' => 'bbp_mark_read', 'topic_id' => $topic_id ), bbp_get_reply_url( $item_id ) ), 'bbp_mark_topic_' . $topic_id );
    		$title_attr  = __( 'Topic Replies', 'bbpress' );
    
    		if ( (int) $total_items > 1 ) {
    			$text   = sprintf( __( 'You have %d new replies', 'bbpress' ), (int) $total_items );
    			$filter = 'bbp_multiple_new_subscription_notification';
    		} else {
    			if ( !empty( $secondary_item_id ) ) {
    				$text = sprintf( __( 'You have %d new reply to %2$s from %3$s', 'bbpress' ), (int) $total_items, $topic_title, bp_core_get_user_displayname( $secondary_item_id ) );
    			} else {
    				$text = sprintf( __( 'You have %d new reply to %s',             'bbpress' ), (int) $total_items, $topic_title );
    			}
    			$filter = 'bbp_single_new_subscription_notification';
    		}
    
    		// WordPress Toolbar
    		if ( 'string' === $format ) {
    			$return = apply_filters( $filter, '<a href="' . esc_url( $topic_link ) . '" title="' . esc_attr( $title_attr ) . '">' . esc_html( $text ) . '</a>', (int) $total_items, $text, $topic_link );
    
    		// Deprecated BuddyBar
    		} else {
    			$return = apply_filters( $filter, array(
    				'text' => $text,
    				'link' => $topic_link
    			), $topic_link, (int) $total_items, $text, $topic_title );
    		}
    
    		do_action( 'bbp_format_buddypress_notifications', $action, $item_id, $secondary_item_id, $total_items );
    
    		return $return;
    	}
    }
    #208585
    Robin W
    Moderator

    it could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentyfifteen, 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.

    Then come back

    #208578
    Nik
    Participant

    Yes I’ve seen there are several people reporting the same issue there but no useful responses as yet. Tbh the problem is obviously originating from bbPress (ie. it’s not formatting the links in the same way as it used to) but if/until a fix is forthcoming, I’m planning on seeing if I can find a work around myself.

    Will post back here if anyone is interested…

    #208575
    Tanmoy Biswas
    Participant

    HI @robin-w,

    Done,
    My Website bbpress now working perfectly

    Thanks for the suggestion

    Young
    Participant

    Hello.
    First of all, thank you for developing such a great plugin program.
    However, I would like to ask you a bit of trouble nowadays.
    The issue is that the number of topics in forums index page are incorrect.

    1. My system environment:
    -Wordpress 5.3.2
    -Bbpress 2.6.4
    -Buddypress 5.1.2
    -Bbpress Style pack 4.3.8
    – Jetpack 8.1.1

    2. My issue detail:
    See captured image 1.
    This is a page of Forums Index Main page.
    (Sorry for not English, but I’ll try explain)
    As you see the summary count number(left side) of each forum counts are incorrect with the parent forum’s count.
    Captured image 1
    And in the parent forum index page,
    each count of each line for forums are correct.
    See captured image 2.
    Captured image 2

    3. I tried to run recalculation.

    I ran the recovery and recalculation tool. Though I have run it several times and it failed.
    I am using some forums on a group page.
    What is the problem?
    In the past, it used well without any problems. There was no error in adding up posts. Recalculation also worked well.
    Please let me know if you have a solution.
    Thank you.

    #208573
    Gary Eckstein
    Participant

    Does the social login available in the Jetpack plugin (Jetpack β†’ Settings β†’ Discussion then enable “Let readers use WordPress.com, Twitter, Facebook, or Google accounts to comment.”) allow for visitors to comment on bbPress topics? I’ve tried on my bbPress and I don’t see the Google, Facebook etc. options so wondering if it’s something on my side or that the Jetpack social login doesn’t work with bbPress.
    Any advice appreciated.

    #208569
    Robin W
    Moderator

    it could be a theme or plugin issue

    Themes

    As a test switch to a default theme such as twentyfifteen, 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.

    Then come back

    Tanmoy Biswas
    Participant

    I installed the bbPress plugin and activated the plugin, but my WordPress gives an error that the plugin is not activated.

    Any suggestion?
    What should I do now?
    My Website here: https://wcblogs.com

    Thanks in advance

    #208566
    Nik
    Participant

    @robin-w OK well… I’m pretty sure it’s arising from the file located in bbpress/includes/extend/buddypress/notifications.php where there is a function called function bbp_format_buddypress_notifications() which creates a link (which when clicked, automatically marks that particular notification as “read”).

    From the quick test I’ve just run, it would appear that the link/string created in more recent versions of bbPress may not be correct but I’ll need to do some more investigation to work out how/why.

    As far as I can tell, this is likely to be an issue for all Buddypress/bbPress users so I’m quite surprised it hasn’t been highlighted sooner.

    #208563
    Nik
    Participant

    If I can jump in here, I’m fairly sure I’m experiencing the same problem with Buddypress notifications eg. “You have one new reply to topic X”. Clicking on the link used to mark the notification as “Read” but this is no longer happening.

    Currently using bbPress 2.6.4 and BuddyPress 5.1.2.

    Downgrading to bbPress 2.5.14 (an old version that I happened to have installed elsewhere) certainly fixes the problem but will have to do further investigation to work out exactly which version this issue originally started occurring.

    Either way, notifications are certainly not getting marked as read in version 2.6.4 when the link is clicked, although clicking on the “Mark Read” button still does.

    #208557

    Topic: Newbie Questions

    in forum Plugins
    thetoolman123
    Participant

    Hello there,

    I am new to bbpress and have some questions I would like to ask.

    A little about the website I will be creating:
    I am wanting to build a local forum for my town in which users can discuss anything related to the town, post jobs, events and advertise their businesses.

    The community will mainly be free, but wondered if there are any plugins that allow me to charge users to post a thread in specific forums? I’m guessing there might be some sort of membership level plugin? If so, would the membership work on a per month basis, or per post basis?

    Another idea I have is to create some sort of points system in which users gain.lose points on new threads, posts etc and then redeem these points or credits for physical goodies?

    Also, in terms of themes, are there themes available for bbpress or would I need to design on top of the core installation?

    I am very new, so will probably be needing a lot of help, but excited about building my community website πŸ™‚

    Thanks!

    #208554
    hydrogriff
    Participant

    This topic is an extension of this. When threaded topics are enabled in 2.6.x versions, we are unable to reply threaded like before.

    And also, the oldest issue is still unresolved – It has been years and no paginations for threaded replies yet.

    Can we expect a patch for the former issue in the next release?

    #208552
    Robin W
    Moderator

    1. which version of bbpress
    2. what do you mean by notifications? – that is not a bbress phrase, do you mean notify on the topic/reply form?
    3. so in addition to bbpress what other bbpress related plugins are you using ?

    #208547
    jovmbbuzz
    Participant

    Good day!

    I have updated the bbpress plugin on the site and the automatic marking of notifications as read, once the link is clicked, seems gone. I have reverted back to the previous version to make this work.

    Can you kindly advise for a solution to make it work for the new version of the plugin? I would be a hassle to click on the read link to clear up notifications. By the way, it only happens when logged in to Safari.

    Please advise. Thank you!

Viewing 25 results - 4,926 through 4,950 (of 64,394 total)
Skip to toolbar