Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 6,801 through 6,825 (of 64,428 total)
  • Author
    Search Results
  • #194765
    seoguru
    Participant

    Hi Stephan (@netweb),

    That’s a great insight! Like @atmojones I’m confronted with the fact that the users of my bbpress forum make up so many tags that tagging is not helpful anymore.

    My question to you: is there a way to enable the autocomplete in the frontend as well? That would solve the problem.

    Thanks!

    #194756
    flazaldo
    Participant

    How do I removed ‘bbPress Forums’shown under the Forum menu title?

    You can see the problem here:
    https://mark-flaherty.com

    Many thanks, Mark

    Commandrea
    Participant

    Thanks Robin – I lose some customizations when switching themes so I’m just going to turn off the author option for now. I’m looking into canonical issues either from WP permalinks or Yoast, or something in bbPress 🙂 If I find a solution, I’ll report back!

    #194748
    vincitytaymodaimo
    Participant

    I assume this is pretty standard, but on our forum site (http://nexus.universaltheosophy.com/), the bbpress “reply box” is located at the bottom of any given Topic post. So, when someone wants to reply, they need to scroll all the way down. Also, directly beneath each existing reply is a “reply button”. If someone wants to reply to an existing reply, they click this button…. but what happens is that the Topic post reloads in their browser and then they’re taken to the bottom of the Topic where the reply-box resides.

    What we want, is this: when someone clicks reply, a reply-box appears directly beneath the existing reply they’re replying to (basically, how reddit works). I’ve seen at least one site that has managed to do this with some kind of customizing of bbpress, but nobody seems to want to share.

    In order to see how the reply button on our site currently works, you can use our dummy-test-account to login (just please be respectful and don’t make me delete too much spam) UN: [redacted] PW: [redacted] And use this discussion to see how the reply function currently operates: http://nexus.universaltheosophy.com/groups/key-concepts-study-group/forum/topic/reincarnation/

    Any help at all would be hugely appreciated. The current functionality really makes for a poor forum experience for our members.

    Also, we’re currently running bbpress 2.5.10 and WordPress 4.6.1.

    #194746
    Pexle Chris
    Participant

    I have 2600 users subscribers in the first forum of my forum: https://www.onlymaths.gr/forums/forum/%CE%B1%CE%BD%CE%B1%CE%BA%CE%BF%CE%B9%CE%BD%CF%8E%CF%83%CE%B5%CE%B9%CF%82-forum/

    When someone post a topic in this category, no one subscriber get a notification email of creating this topic.

    In the last forum of my foroum: https://www.onlymaths.gr/forums/forum/%cf%85%cf%80%ce%bf%cf%83%cf%84%ce%ae%cf%81%ce%b9%ce%be%ce%b7/
    I have only 3 subscribers.
    The 3 subscribers get the notification email of creating a this topic!

    The current version of bbpress is: bbPress 2.5.14
    The current version of WordPress is: WordPress 4.9.8

    #194745
    Robin W
    Moderator

    by clicking the ‘create new topic’ in the bar below the bbpress logo

    Robin W
    Moderator

    ok, so not my plugin, but I cannot replicate the error

    It 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

    #194733

    In reply to: Single Forums

    lookingahead
    Participant

    P.S.: I’m using bbPress with BuddyPress. 🙂

    #194715
    Milan Petrovic
    Participant

    I can see all the topics and read them. But, I can’t post because you havr disabled anonymous posting in bbPress settings.

    Commandrea
    Participant

    On my profile page, under the forums/subscriptions tabs, the author link under ‘last activity’ doesn’t just link to their profile. Instead it adds /forums/subscriptions/ to their profile url/bbp-author-name which takes me to a ‘page not found’ because subscriptions are not visible to other users.

    Is this an error and if so, how do I strip or change the /forums/subscriptions/ portion of the url to /profile/ or remove it all together? Can someone confirm what this link looks like on their web forums?

    The screenshot is from my profile page while viewing the forum/subscriptions section. The url reflects that as https://sucsforyou.com/members/newbeta/forums/subscriptions/

    In the screenshot you’ll see the url in the bottom left corner has added that to the link, while the alt says ‘view profile.’

    Thank you! I’m using bbPress with BuddyPress and WordPress- all latest editions.

    Subscription tab latest activity author adds /forums/subscriptions/ to 'view profile' url

    #194712
    Commandrea
    Participant

    While logged in and viewing the forum tab under other members’ profiles, I can see their Topics Started, Replies, and Favorites- no subscription tab is visible unless I’m on my own profile page.

    The problem is when I’m looking at my subscriptions or topics, the author link under ‘last activity’ doesn’t just link to their profile. Instead it adds /forums/subscriptions/ to their profile url which takes me to a ‘page not found’ because their subscriptions are not visible to other users (I’m assuming).

    Is this an error and if so, how do I strip or change the /forums/subscriptions/ portion of the url to /profile/ or remove it all together? Can someone confirm what this link looks like on their web forums? Thank you!

    Subscription latest activity author link error

    I’m using bbPress with BuddyPress and WordPress- all latest editions.

    #194700

    In reply to: How add Class on list

    puniler
    Participant

    Thanks for getting back to me.

    Break down the code in question into three.

    (1)
    I found the following code in this directory,
    wp-content/plugins/bbpress/templates/default/bbpress/loop-replies.php

    <ul id="topic-<?php bbp_topic_id(); ?>-replies" class="forums bbp-replies">
    
    	<li class="bbp-header">
    		<!-- various -->
    	</li>
    
    	<li class="bbp-body">
    		<?php bbp_get_template_part( 'loop', 'single-reply' ); ?>
    	</li>
    		
    	<li class="bbp-footer">
    		<!-- various -->
    	</li>
    
    </ul>

    (2)
    And the template called in the above code is below.
    wp-content/plugins/bbpress/templates/default/bbpress/loop-single-reply.php

    	
    		<div id="post-<?php bbp_reply_id(); ?>" class="bbp-reply-header">
    			<div class="bbp-meta">
    				<!-- various -->
    			</div>
    		</div>
    		<div <?php bbp_reply_class(); ?>>
    			<!-- various -->
    		</div>
    		
    		<div id="post-<?php bbp_reply_id(); ?>" class="bbp-reply-header">
    			<div class="bbp-meta">
    				<!-- various -->
    			</div>
    		</div>
    		<div <?php bbp_reply_class(); ?>>
    			<!-- various -->
    		</div>	

    (3)
    But I could not find the code for the part of the list below.

    	<li class="★">
    
    	</li>
    
    	<li class="★">
    
    	</li>

    In the output HTML, this list is included, but the PHP template does not show the part of the list.

    Where is the list, how can I rewrite it?

    Thanks.

    #194699

    for this problem I solved
    I had installed the plugin
    bbpress wp tweaks
    that gave me this problem.
    now I’ve uninstalled it and it works

    #194693
    Robin W
    Moderator

    that is the default way that bbpress works – what is not working for you ?

    just make the forums public not private

    hello everyone I have a problem with users of the forum.
    My bbpress forum is currently limited to registered users.
    These are days that I try to find a way to solve this problem without coming to terms with it.
    currently the forum that I created on wordpress with bbpress is limited to registered users, I would like the forum to be free and that unregistered users could read the forum, discussions and replies, if they wanted to participate in the discussions or create new ones at that point would need registration.
    how can I do?

    #194691

    hello everyone I have a problem
    in the forum I created with bbpress
    all of a sudden I only see the forum home page and if I click on a topic I see the screen all white without the contents
    what happens?

    #194678
    eigodeasobo
    Participant

    There are 13 comments on my page, and there are 5 display settings.

    Web:http://urx2.nu/LPiR
    Img:http://folio.ink/jzbNpw

    But pagination is not display!!

    This is the HTML:

    <div class="bbp-pagination">
    	<div class="bbp-pagination-count">
    
    		
    	</div>
    
    	<div class="bbp-pagination-links">
    
    		
    	</div>
    </div>

    I just installed an WordPress, and only BBPress plugin activated.

    Why??

    #194673

    @scmsteve created this issue: https://bbpress.trac.wordpress.org/ticket/3218

    We’ve resolved it for the 2.6 release. <3

    #194671
    Robin W
    Moderator

    so with wordpress and bbpress installed, you create a forum in the dashboard and then create a page called say ‘forum’ and in the contents put

    [bbp-forum-index]

    save this page, publish it, and then view ot and you will see the forum.

    you could also follow this

    Step by step guide to setting up a bbPress forum – Part 1

    #194668
    siparker
    Participant

    Hi,

    The function bbp_get_time_since in includes/common/formatting.php always returns “right now”.

    bbPress Version: 2.6 release candidate 6

    #194654
    jamnet.kr
    Participant

    I don’t know exactly when or how.
    But bbpress delete my write automatically.

    I guess(think), if I write as long time, then bbpress delete my write topic.
    ㄴ That is not going to spam. It just like erase…

    Even if I setting bbpress like this “https://prnt.sc/kqq9tt“. It does not matter.

    How can I fix…
    Anyone can give me advice?

    Thank you.

    #194651

    In reply to: BBPress Import fail

    Milan Petrovic
    Participant

    Before import, make sure bbPress plugin is active. WordPress import is importing only post types registered in the moment of import.

    #194648

    In reply to: cPanel Dangers?

    Robin W
    Moderator

    would depend on what he is trying to fix, and how much you trust, and what ‘data’ you site holds that could be embarrassing. If you hold no client info other than say usernames, then you could take a more relaxed attitude.

    I tend to work on test/dev sites rather than live sites, and I like to have both cpanel and ftp access to sites I am working on, but most of what I do is code, and the ability to back out stuff is key.

    suggest you look to build a test/dev site and give him access to that.

    Creating a Test Site

    #194644

    In reply to: Bbpress Sidebar Width

    Milan Petrovic
    Participant

    This entirely depends on your theme, sidebars are displayed and styled by the theme. If the theme uses only CSS to set the widths, you should be able to make styles for bbPress pages only that change this. If the theme is responsive with some sort of grid system, it might not be that easy to do.

    #194642
    iraarel
    Participant

    Hi,
    Can i change forum sidebar width?
    For example; my homepage sidebar width %30
    forum page sidebar width %25.

Viewing 25 results - 6,801 through 6,825 (of 64,428 total)
Skip to toolbar