Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 14,026 through 14,050 (of 64,515 total)
  • Author
    Search Results
  • #166352
    Robkk
    Moderator

    For having a forum show up instead of the (No Forum), copy form-topic.php in your child theme.

    In the code toward line 109 you would see something like this.

    <?php if ( !bbp_is_single_forum() ) : ?>
    
     <?php do_action( 'bbp_theme_before_topic_form_forum' ); ?>
    
    	<p>
    		<label for="bbp_forum_id"><?php _e( 'Forum:', 'bbpress' ); ?></label><br />
    			<?php
    				bbp_dropdown( array(
    				'show_none' => __( '(No Forum)', 'bbpress' ),
    				'selected'  => bbp_get_form_topic_forum()
    				) );
    			?>
    	</p>
    
    <?php do_action( 'bbp_theme_after_topic_form_forum' ); ?>
    
    <?php endif; ?>

    Remove 'show_none' => __( '(No Forum)', 'bbpress' ), so it would look like this.

    <?php if ( !bbp_is_single_forum() ) : ?>
    
     <?php do_action( 'bbp_theme_before_topic_form_forum' ); ?>
    
    	<p>
    		<label for="bbp_forum_id"><?php _e( 'Forum:', 'bbpress' ); ?></label><br />
    			<?php
    				bbp_dropdown( array(
    				'selected'  => bbp_get_form_topic_forum()
    				) );
    			?>
    	</p>
    
    <?php do_action( 'bbp_theme_after_topic_form_forum' ); ?>
    
    <?php endif; ?>

    The default forum shown is whatever is first in the forum index page. It either is sorted by publish date first or the forum ordered first if you manually changed the forum order by editing the forum.

    #166351
    Daniel J. Lewis
    Participant

    Any other updates on this? I have a forum on “Podcasters’ Society,” and the emails from bbPress turn that apostrophe into a catastrophe.

    Oddly, it’s only emails from bbPress that do this. Other site emails are fine.

    #166339
    Robkk
    Moderator

    Try some troubleshooting if you haven’t already.

    Troubleshooting

    Try a default theme activated with only bbPress activated to see if the problem persists.

    Also ask a couple of these questions.

    Do you have a multisite installation?

    Is WordPress installed in a sub-folder?

    What is the url you get when you try to logout?

    What areas did you try to logout from? The WordPress Toolbar, bbPress login widget, something else?

    Did this issue occur when you immediately activated bbPress? Or did the issue occur after a certain upgrade?

    Did you have any cache plugins activated? Have you tried flushing the cache? If it is deactivated reactivate the plugin and flush the cache.

    Anything that can cache activated on your site, server cache, cloudflare, object cache, opcode caching?

    What hosting provider do you have?

    #166337
    project_subdomain
    Participant

    ok found it, it’s caused by the GD bbPress Attachments plugin I’m using. sorry and thanks!

    #166335
    jrunfitpro
    Participant

    I tried and it’s definitely not another app. It doesn’t take me to a 404 page, it just will not allow me to login. Says I do not have permission.

    Only happens when bbpress is deactivated.

    #166334
    Léo
    Participant

    Hello,

    When bbPress is activate on my website, I can login without problem but then I can’t logout anymore (I have to delete cookies).
    I’ve tested on a fresh WordPress install without plugins (except bbPress of course).

    WordPress : 4.3
    bbPress : 2.5.8

    #166331
    Robkk
    Moderator

    Does this help?? This code appears at 320px but it probably should be by default.

    #bbpress-forums div.wp-editor-container {
        width: 100%;
        overflow: auto;
    }
    #166322
    sharongraylac
    Participant

    Very interesting… Thanks for thinking of me, robkk!

    I also found a snippet that bypassed the feed page altogether, which is working out well. I’m still thinking of dropping Buddypress and just keeping BBPress for the sake of simplicity. It’s turning out to be not quite as useful as I thought (for what I am needing)…

    Thanks again!
    Sharon

    #166320
    Robkk
    Moderator

    Replacing blog comments with topic replies is scheduled for 2.7, but you can also use the handy bbPress topics for posts plugin.

    You can create custom roles with custom capabilities in bbPress.

    Custom Capabilities

    There is an API or an example API in the Jetpack plugin.

    https://plugins.trac.wordpress.org/browser/jetpack/trunk/class.jetpack-bbpress-json-api-compat.php

    There have been users trying to make apps with bbPress.

    WordPress JSON Rest API bbPress and Android

    Also know there has been work to introduce an API into WordPress.

    https://wordpress.org/plugins/json-rest-api/

    And there already have been plugins in development for compatibility between the WP-REst API and bbPress like this one.

    https://github.com/thenbrent/BB-API (Alpha version)

    Any contributions for any work toward any type of bbPress Rest API are welcome and much appreciated.

    #166319
    Robkk
    Moderator

    Are installing bbPress on a multisite installation?
    subdomain or subdirectory if so?

    #166318
    Robkk
    Moderator

    I can’t find anyone else reporting the same issue after extensive searches.

    Yeah your issue is pretty unique.

    You haven’t been editing bbPress core plugin files right??
    Have you copied the editable bbPress templates to your theme?
    You did try a default theme like twenty twelve temporarily to see if it solves the problem?
    Did you try disabling all plugins except bbPress, to see if there was a plugin issue?

    I am also wondering why your freshness area shows the date instead of 2 months ago, and why your Freshness label is missing.

    #166316
    Robkk
    Moderator

    I guess you can also remove the feeds too. This reply has code to remove BuddyPress feeds.

    https://buddypress.org/support/topic/hiding-bp-pages-from-non-logged-in-users-tried-several-solutions/#post-243627

    bbPress feeds are tough though. THere is a post here showing a function to hide feeds (it also includes sitewide feeds for blog posts too). You can also use the plugin disable feeds too.

    Private posts showing in RSS feed & Widgets

    #166315
    tjordan42
    Participant

    Ok, I’m running the newest version of WordPress, running the Irridescent theme by RocketTheme, and just tried (3 times) to install BBpress.

    When I activate the first time I got directed to http://angeryamericansurvival.com/wp-admin/index.php?page=bbp-about

    Then I get an error that says “You do not have sufficient permission to access this page.”
    I’m the admin.. so I know I have sufficient permissions. lol.

    I also don’t see ANY sign that the plugin is installed.
    I’ve deactivated and reinstalled two more times. Nothing.
    I never get the activation page on subsequent installations. I had to go back in my browser history to search for it.

    Any ideas?

    I’d really like to use BBpress but if even the initial installation causes problems, then I’m worried.

    I tried switching themes to Twenty-Twelve to troubleshoot a theme-related issue but same results.

    #166312
    Robkk
    Moderator
    #166311
    Robkk
    Moderator

    The information you got was probably for the bbPress v1 standalone forum software. You can tell the information is from bbPress v1 when it is about 4 or more years old.

    The latest version of bbPress is now a WordPress plugin. So any admin area would use the WordPress admin. Same thing with BuddyPress they use use the WordPress administration area.

    To remove a large number of topics.

    Go to Topics > All Topics in the WOrdPress administration area.
    Enable each checkbox by the topics you want to Trash
    Click the Bulk Actions dropdown and select Move to Trash
    Hit Apply to move all those topics to the trash.

    To remove a large number of topics in a specific forum

    Go to Topics > All Topics in the WOrdPress administration area.
    In the dropdown at the top that say In All Forums, click that to select the specific forum you want to delete topics in, then click the filter button beside it.
    Enable each checkbox by the topics you want to Trash
    Click the Bulk Actions dropdown and select Move to Trash
    Hit Apply to move all those topics to the trash.

    To delete all the topics in your topic trash.

    Go to Topics > All topics in the WordPress administration area.
    Hit the action link that says Trash, it is next to other action links in a row like Spam and Pending.
    Clicking the trash action link will show you all the topics in your trash, hitting empty trash will remove all topics in your trash permanently.

    To trash all topics by a specific use

    You need to go to the user’s profile
    Click the menu item Topics Started
    Go to each topic and trash it manually using the admin links.

    #166310
    riyabajaj
    Participant

    Sorry for posting here my question, I’ve started a new blog and going to start bbpress forum first time on a subdomain of it. need an installation guide to install bbpress on a subdomain of my blog.

    My Blog URL: http://www.pingzic.com/

    P.S: I didn’t find any option to post my question in a new topic here on this forum.

    #166309
    AilyRoot
    Participant

    Hi

    we run latest wordspress 4.3 +bbpress 2.5.8+buddypress 2.3.3 and we are just told that

    “bbPress also has admin side, and there you can easily remove large number of topics filtered by forum or user”

    I did google and someone say admin panel path is /bb-admin ? but it shows 404 and I do see it on top menu bar either

    is there any any admin panel for bbpress/buddypress or it is just integrated with wordpress’s admin?

    it NOT, how to do these “remove large number of topics filtered by forum or user”? I do not see function like that on wordpress’s admin though~

    #166306
    demonboy
    Participant

    I know this is a recurring question but a lot of the responses are out-dated. The only thing I keep coming across is the Falcon project on github. Has anyone got this to work? Is there a user-guide for those of us who don’t understand github on how to set this up for bbpress?

    Interested to know if anyone has managed to get replying to posts by email working and what solution you used.

    Thanks in advance.

    #166302
    Stephen Edgar
    Keymaster

    Hey @macpress, you were close, very close on your second post here, we’re using Grunt, not Gulp as part of our build process. 😉

    Anyway the overall summary is that certain styles are compiled from SCSS into CSS, or minified CSS, or minified JS via our Grunt build tools.

    A more in depth document (that has not yet made it into our codex) on all of this can be found here:

    https://github.com/ntwb/bbPress#bbpress

    If you don’t want to install NodeJS and Grunt we have another /trunk SVN repo that has everything already compiled https://downloads.wordpress.org/plugin/bbpress.zip via the “developer version” on our plugin page https://wordpress.org/plugins/bbpress/developers/, this isn’t truly /trunk though, this is a manual copy of our main repo we upload/update periodically, semi frequently.

    FYI: The *.php = svn:eol-style=native SVN is our “Version Control Software” and this stuff sets us sets of rules for different file types or ignoring certain files and folders.

    #166300
    Shmoo
    Participant

    Well using a replies templates as comments to blog posts is a feature for bbPress 2.7 I believe but if that feature is really key you should either [1] code it yourself or [2] look elsewhere cause waiting for 2.7 won’t be worth your time. The bbPress 2.7 release is at least one year away based on the current average development of bbPress.

    From the other point of view, bbPress is the most easy to use forum software when it comes to making changes or altering the frontend layout when you have some WordPress experience.
    I mean, I customizing the frontend of a ‘forum’ is what rocks my boat I never understand why people would use one of those most populair forum scripts out there and in the end have a forum that looks like a FORUM and completely different from the rest of the site layout. I always like it when everything, site, shop, forum and whatnot looks and feels the same as the general site.. I never create forums for mega large websites or sites that are driven by communities from the early days when you simply had to install a forum script to create a so called community. There are far better systems out there that just do that. Create communities and interaction with users – you don’t need a forum for that. Forums nowadays are generally for support only.

    Your MacRumors example is a site that was created 300 years ago based on a forum system to interact with users. Now they are bloated have to hide mega lots of content to fit your mobile screen else the site would load 12min a page.

    Myself I was making a bbPress forum today with a subject called ‘Apple support’. Just for fun not a real project. It’s just fun how easily you can alter bbPress templates and create something frontend that you didn’t know was a forum script.
    This example is my Forums index page.

    iPad
    bbPress example

    iPhone
    bbPress example

    *still work in progress..

    #166299
    Schuitema
    Participant

    I notice now that, this error comes up when inspecting the element after search with bot wp and bbpress search, now that search forum-wide is on.

    GET http://coachingonthego.co.zapath_to_style.css/?ver=4.2.4 net::ERR_NAME_NOT_RESOLVED

    #166296
    Bapple
    Participant

    I am making a new website for a parent group which would use a forum in its core design. The site would consist of a main page with a blog which has comments that are tied to a forum topic. Similar to something like http://www.macrumors.com/. It would also have custom permission levels beyond the generic moderator, sub, and admin roles via plugins, and be locked with access codes. We are also planning on making a custom App for iOS and Android, or maybe even Windows using core tools like Xcode and Android Studio, Visual Studio, or Xamarin down the line. Right now I am trying to decide on what would be the best foundation for our site. Does bbPress have some sort of API that we could use, or do we need to look elsewhere?

    #166294
    mrsminkie
    Participant

    If I view the source code, the copy that is usually rendered by these lines of code:

    $retstr = sprintf( esc_html__( 'This topic contains %1$s, has %2$s, and was last updated by %3$s %4$s.', 'bbpress' ), $reply_count, $voice_count, $last_updated_by, $time_since );

    is displaying but it seems that %1$s and %2$s isn’t pulling any data through, but %3$s %4$s is.

    #166292
    DevynCJohnson
    Participant

    @robkk , thanks for everything. I appreciate the fact that you took the time to read my ideas and such. The BuddyPress and WordPress community does not seem to notice my suggestions.

    Your summary is right. However, when I say “topic auto-suggestion”, I am referring to the “bbPress Live Topic Suggestions” plugin (https://wordpress.org/plugins/bbpress-auto-suggest-topics-based-on-new-topic-title/).

    1. As for the oEmbed cache code that I use, the code is below. This is not a real fix/solution since I remove/disable auto-embedding and three shortcodes. Basically, I am making it impossible for oEmbed cache to form.

    remove_filter('the_content',array($GLOBALS['wp_embed'],'autoembed'),8);
    remove_shortcode('audio');
    remove_shortcode('video');
    remove_shortcode('playlist');

    By the way, the BBPress developers may want to consider designing the “bbp-topic-description” to look similar to the code below. I use that format on my website; the code snippet below was taken from http://dcjtech.info/topic/directx-introduction/ . The below code uses Microdata (like Hentry/Hatom and others) and is used by many search engines.

    <p class="bbp-topic-description">This topic was published by <em><span class="p-author h-card fn author post-author" itemprop="author">DevynCJohnson</span></em> and viewed 201 times since "<time itemprop="datePublished" class="dt-published published entry-date uploaded" datetime="2015-07-28">July 28, 2015 @ 06:00UTC</time>".</p>

    The BBPress developers are more than welcome to ask me for code or ask how I created/added some particular feature.

    #166291
    mrsminkie
    Participant

    Hi,

    Thanks for weighing in.

    I’ve run debugging mode and found nothing. I have deactivated ALL plugins apart from BBPress (including clearing all caches) and the problem remains.

    I can’t find anyone else reporting the same issue after extensive searches.

    Any other ideas?

    Thank you.

Viewing 25 results - 14,026 through 14,050 (of 64,515 total)
Skip to toolbar