Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 17,451 through 17,475 (of 64,516 total)
  • Author
    Search Results
  • #155615
    xprt007
    Participant

    Hi

    The recipe plugin update ended up solving a small connected issue, but not the main one mentioned above. I informed the author again this morning & he quickly acted saying he found the bug in the plugin:

    OK, bug confirmed and (hopefully) found and resolved.

    Could you please edit the file php/class/rpr_core.php in the recipepress-reloaded plugin folder and change line 317 from
    if( !is_page() && ! is_attachment() ){
    to
    if( is_home() || is_category() || is_tag() ){

    This should be it. However this might introduce other problems I couldn’t find so far.

    Editing that file immediately made it possible to get the forum archive at /forums, with the recipe plugin activated, which was not possible before.

    The hope is nothing else is affected by this change. So I am going to check if the forum & other aspects of the site are running normally. I have no experience to tell if that code could affect some other function in WP.
    It seems the cause lies outside, though it affects bbpress.

    I had not yet got time to try the short code solution.

    Very grateful, though for your support.

    Kind regards

    #155601
    Robin W
    Moderator

    ok, the database entry for usermeta is correct, and a moderator should be able to see forums in the dashboard.

    I’m stuck as to what to suggest next, usually not see dashboard items is a conflict between bbpress and another plugin, but you’ve already tested for that.

    My only other thought is to create a new mamp, and then export and import forums to it and see if it’s something in that.

    #155600
    MBenningfield
    Participant

    I installed the GD bbPress Tools plugin and the plugin itself works great. However, when you go to edit profile so that you can edit your signature, everything is “white” and you can’t see what you have written, etc. I originally had this issue on the actual bbPress forums but I downloaded the bbPress UI settings and changed it to a dark theme. I am completely lost in codec’s and css, etc, but I would like to know what to do to change this as it is really annoying some of the people that joined our site. I’m attaching a picture of what the issue appears to be.

    Wordpress Version is 4.0.1.
    Theme is Falcon (Child theme of 2014 themes)
    GD bbPress Tools version is 1.6

    Screenshot from bbPress

    #155599
    Skisma
    Participant

    Thank you guys for helping me out with this! I set up the bbpress folder within my theme and added the file to it, it worked like a charm!

    #155583
    Dirk
    Participant

    No, I don´t have bbPress Advanced Capabilities in the mix anymore. I deleted the plugin.
    I installed it, because I thought it may help me with my problem.
    When I first ran into these problem I had no capabilities changing plugin installed at all. bbPress worked fine. It started with changing the login_name in wp_users in the database of a user who was Moderator.
    My workaround in the moment is changing the Moderator to Keymaster, so he can create forums in the dashboard and the common users, who don´t see the WP-toolbox on top of the page, can create topics and answers over the frontend. But it doesn´t give me a good feeling that something is wrong and I am not able to repair it. I don´t know now where I should dig deeper.
    Can I provide you with more information?

    #155582
    BlizzardWolf
    Participant

    Hi there!

    I apologize if someone else has already posted about this, but I did a search and didn’t find someone with my exact error. But I have been using bbPress version 2.5.4 with WordPress version 4.0.1, and it was working great for the past few days until I tried to use CMS2CMS to transfer over my forum from phpBB to WordPress. It now has “Page Not Found” errors, even after removing all traces of the CMS2CMS plugin. I can not access any portion of my forum, but everything looks fine on the back end. I have uninstalled and reinstalled all of my plugins and still continue to get the error. What am I missing?

    Here is the link to my site:
    http://www.derbycityminis.com/new/

    Thanks in advance! 🙂

    #155581
    jimbofoxman
    Participant

    Disregard, I atleast have it figured out for now. I copied the theme-styles.php file to the child theme and then searched for;

    	if ( is_page_template('page-landing.php') || is_page_template('page-alt-home.php') ) {
    		$layout = "Full-Width";
    		global $solostream_options;
    		$solostream_options['solostream_layout'] = $layout;

    and added the following right below it…

    	if ( is_bbpress() ) {
              $layout = "Full-Width";
              global $solostream_options;
              $solostream_options['solostream_layout'] = $layout;
         }
    jimbofoxman
    Participant

    I have a child theme setup using the Child Theme Configurator plugin. I have the following in the child theme folder; style.css, function.php and bbpress.php (renamed from page.php).

    I am using the WP-Englightened theme.

    I copied the page.php to the child root and renamed it to bbpress.php. There doesn’t seem to be anything in that file to remove for the sidebar.

    <?php get_template_part( 'content', 'before' ); ?>
    
    <?php 
    	if (have_posts()) : while (have_posts()) : the_post(); 
    	global $do_not_duplicate;
    	$do_not_duplicate[] = $post->ID;
    ?>
    
    						<div <?php post_class('singlepage clearfix'); ?> id="single-page-<?php the_ID(); ?>">
    
    							<div class="entry">
    
    								<h1 class="page-title"><?php the_title(); ?></h1>
    
    								<?php if ( get_post_meta( $post->ID, 'video_embed', true ) ) {
    									$video_embed = get_post_meta( $post->ID, 'video_embed', true );
    									echo '<div class="post-feature-video single">';
    									echo '<div class="single-video">';
    									echo $video_embed;
    									echo '</div>';
    									echo '</div>';
     								} ?>
    
    								<?php the_content(); ?>
    
    								<div style="clear:both;"></div>
    
    								<?php wp_link_pages(); ?>
    
    							</div>
    
    						</div>
    
    <?php endwhile; endif; ?>
    
    <?php get_template_part( 'content', 'after' ); ?>

    I tried putting this in the style.css file based on a thread here.

    .site,
    .site-header {
    	max-width: 100%;
    }
    
    .bbpress-forums .col-2cl .main {
    	background: none repeat-y right 0;
    	padding-right: 0;
    }
    
    .site-content .entry-header,
    .site-content .entry-content,
    .site-content .entry-summary,
    .site-content .entry-meta, 
    .page-content {
    	max-width: 100%;
    }
    
    .form-allowed-tags {
    	display: none;
    }
    
    div.bbp-breadcrumb, 
    div.bbp-topic-tags {
    	font-size: inherit !important;
    }
    
    #bbpress-forums ul.bbp-lead-topic, 
    #bbpress-forums ul.bbp-topics, 
    #bbpress-forums ul.bbp-forums, 
    #bbpress-forums ul.bbp-replies, 
    #bbpress-forums ul.bbp-search-results {
    	font-size: inherit !important;
    }
    
    #bbpress-forums {
    	font-size: inherit !important;
    }
    
    .bbpress .hentry {
    	margin: 0 auto 48px;
    	max-width: 100%;
    }
    
    @media screen and (min-width: 1008px) {
    	.bbpress .site-content {
    		margin-right: 0;
    		margin-left: 182px;
    	}
    }
    
    @media screen and (min-width: 1080px) {
    	.bbpress .site-content {
    		margin-left: 222px;
    	}
    }
    
    @media screen and (min-width: 1218px) {
    	.bbpress .site-content .entry-content {
    		margin-right: 0;
    	}
    }
    
    @media screen and (min-width: 673px) {
    	.bbpress .site-content {
    		margin-right: 0;
    	}
    }

    If I create a page and use the short code for bbpress and tell it in the page options to do full width it works fine for the main page but not for the rest of them.

    #155578
    Robin W
    Moderator

    hmmm… This conmbination should be able to see forums in the dashboard

    Do you still have bbPress Advanced Capabilities in the mix? I’d still suspect this to be the issue if you have eliminated plugins and themes.

    #155570
    Robin W
    Moderator
    #155566
    buzink
    Participant

    You can add the default WordPress media button. I guess it only works for logged in WordPress users with authorization to upload.

    #155565
    asefredrikson
    Participant

    I have pinpointed the problem.
    This section in the BBPress.css is breaking my themes:


    @media
    screen and (max-device-width: 480px), screen and (-webkit-min-device-pixel-ratio: 2) {
    -webkit-text-size-adjust: none; {
    }

    @media
    only screen and (max-width: 480px) {
    #bbpress-forums div.bbp-topic-tags {
    clear: left;
    float: left;
    }
    div.bbp-search-form input,
    div.bbp-search-form button {
    font-size: 11px;
    padding: 2px;
    }
    li.bbp-forum-info,
    li.bbp-topic-title {
    width: 45%;
    }
    li.bbp-forum-topic-count,
    li.bbp-forum-reply-count,
    li.bbp-topic-voice-count,
    li.bbp-topic-reply-count {
    width: 15%;
    }
    span.bbp-reply-post-date {
    float: left;
    }
    span.bbp-admin-links {
    clear: left;
    float: left;
    }
    #bbpress-forums .bbp-forums-list li {
    display: block;
    font-size: 11px;
    }
    #bbpress-forums .bbp-body div.bbp-reply-author {
    margin: -15px 10px 10px;
    min-height: 100px;
    padding-left: 80px;
    position: relative;
    text-align: left;
    width: 100%;
    }
    #bbpress-forums div.bbp-reply-author a.bbp-author-name {
    clear: none;
    display: inline-block;
    margin-left: 0;
    word-wrap: break-word;
    }
    #bbpress-forums div.bbp-reply-author img.avatar {
    position: absolute;
    top: 15px;
    left: 0;
    width: 60px;
    height: auto;
    }
    #bbpress-forums div.bbp-reply-author .bbp-author-role {
    font-size: 12px;
    font-style: normal;
    }
    #bbpress-forums .bbp-body div.bbp-reply-content {
    clear: both;
    margin: 10px;
    padding: 0;
    }
    #bbpress-forums div.bbp-reply-content p {
    margin-bottom: 1em;
    }
    div.bbp-submit-wrapper {
    float: left;
    }
    #bbpress-forums fieldset.bbp-form {
    padding: 0 10px 10px;
    }
    #bbpress-forums #bbp-user-body {
    clear: both;
    margin-left: 0;
    word-wrap: break-word;
    }

    /* =Standard Mobile Portrait
    ————————————————————– */

    @media
    only screen and (max-width: 320px) {
    #bbpress-forums div.bbp-search-form {
    margin-bottom: 10px;
    }
    #bbpress-forums li.bbp-header li.bbp-forum-info,
    #bbpress-forums li.bbp-body li.bbp-forum-info,
    #bbpress-forums li.bbp-header li.bbp-topic-title,
    #bbpress-forums li.bbp-body li.bbp-topic-title {
    width: 100%;
    }
    #bbpress-forums li.bbp-header li.bbp-forum-info,
    #bbpress-forums li.bbp-header li.bbp-topic-title {
    text-align: center;
    text-transform: uppercase;
    }
    #bbpress-forums li.bbp-header li.bbp-forum-topic-count,
    #bbpress-forums li.bbp-header li.bbp-forum-reply-count,
    #bbpress-forums li.bbp-body li.bbp-forum-topic-count,
    #bbpress-forums li.bbp-body li.bbp-forum-reply-count,
    #bbpress-forums li.bbp-header li.bbp-topic-voice-count,
    #bbpress-forums li.bbp-header li.bbp-topic-reply-count,
    #bbpress-forums li.bbp-body li.bbp-topic-voice-count,
    #bbpress-forums li.bbp-body li.bbp-topic-reply-count {
    width: 20%;
    }
    #bbpress-forums li.bbp-header li.bbp-forum-freshness,
    #bbpress-forums li.bbp-body li.bbp-forum-freshness,
    #bbpress-forums li.bbp-header li.bbp-topic-freshness,
    #bbpress-forums li.bbp-body li.bbp-topic-freshness {
    width: 58%;
    }
    #bbpress-forums li.bbp-body li.bbp-forum-topic-count,
    #bbpress-forums li.bbp-body li.bbp-forum-reply-count,
    #bbpress-forums li.bbp-body li.bbp-forum-freshness,
    #bbpress-forums li.bbp-body li.bbp-topic-voice-count,
    #bbpress-forums li.bbp-body li.bbp-topic-reply-count,
    #bbpress-forums li.bbp-body li.bbp-topic-freshness {
    margin-top: 7px;
    }
    #bbpress-forums li.bbp-header,
    #bbpress-forums li.bbp-footer {
    font-size: 10px;
    }
    #bbpress-forums li.bbp-header div.bbp-reply-author {
    text-align: left;
    width: 25%;
    }
    #bbpress-forums li.bbp-header div.bbp-reply-content {
    margin-left: 25%;
    }
    #bbpress-forums div.bbp-template-notice img.avatar,
    #bbpress-forums p.bbp-topic-meta img.avatar {
    width: 14px;
    height: auto;
    }
    #bbpress-forums div.bbp-the-content-wrapper td.mceToolbar {
    padding: 1px;
    }
    #bbpress-forums div.bbp-the-content-wrapper td.mceToolbar td {
    width: 20px;
    height: 20px;
    }
    #bbpress-forums div.wp-editor-container {
    width: 100%;
    overflow: auto;
    }
    #bbpress-forums input#bbp_topic_title,
    #bbpress-forums input#bbp_topic_tags {
    width: 95%;
    }

    /* =Extra Small Mobile
    ————————————————————– */

    @media
    only screen and (max-width: 240px) {
    #bbpress-forums li.bbp-header li.bbp-forum-topic-count,
    #bbpress-forums li.bbp-header li.bbp-forum-reply-count,
    #bbpress-forums li.bbp-body li.bbp-forum-topic-count,
    #bbpress-forums li.bbp-body li.bbp-forum-reply-count,
    #bbpress-forums li.bbp-header li.bbp-topic-voice-count,
    #bbpress-forums li.bbp-header li.bbp-topic-reply-count,
    #bbpress-forums li.bbp-body li.bbp-topic-voice-count,
    #bbpress-forums li.bbp-body li.bbp-topic-reply-count,
    #bbpress-forums li.bbp-footer div.bbp-reply-author,
    #bbpress-forums li.bbp-footer div.bbp-reply-content {
    width: 45%;
    }
    #bbpress-forums li.bbp-header li.bbp-forum-freshness,
    #bbpress-forums li.bbp-body li.bbp-forum-freshness,
    #bbpress-forums li.bbp-header li.bbp-topic-freshness,
    #bbpress-forums li.bbp-body li.bbp-topic-freshness,
    #bbpress-forums li.bbp-header div.bbp-reply-author,
    #bbpress-forums li.bbp-header div.bbp-reply-content {
    clear: both;
    width: 100%;
    }
    #bbpress-forums li.bbp-header li.bbp-forum-freshness,
    #bbpress-forums li.bbp-header li.bbp-topic-freshness {
    text-align: center;
    }
    #bbpress-forums li.bbp-body li.bbp-topic-freshness,
    #bbpress-forums li.bbp-header div.bbp-reply-content {
    margin-left: 0;
    text-align: left;
    }
    #bbpress-forums li.bbp-body li.bbp-topic-freshness p.bbp-topic-meta {
    display: inline-block;
    }
    #bbpress-forums li.bbp-header {
    overflow: hidden;
    }
    #bbpress-forums li.bbp-footer div.bbp-reply-content {
    display: inline-block;
    margin-left: 0;
    }
    #bbpress-forums li.bbp-body div.bbp-reply-author {
    min-height: 60px;
    padding-left: 60px;
    }
    #bbpress-forums div.bbp-reply-author img.avatar {
    width: 40px;
    height: auto;
    }

    When I remove:

    @media screen and (max-device-width: 480px), screen and (-webkit-min-device-pixel-ratio: 2) {
    -webkit-text-size-adjust: none; {
    }

    @media
    only screen and (max-width: 480px) {


    @media
    only screen and (max-width: 240px) {


    @media
    only screen and (max-width: 240px) {

    The site looks OK again.
    Anyone know if it’s safe to remove those??

    wannial
    Participant

    Hey all, first post here and hope someone can help me.
    I’ve put a bbpress forum in my wordpress website and created a Forum button in the main navigation bar

    http://www.hardwarehome.nl

    When I click this button the forum is shown perfectly.
    When I then klick on a subforum like reviews it’s still perfect, but then!
    If I klick forums, not on the main navigation bar, but in the forum menu itself, it brings me back to the forum (notice the sligt difference in URL /forum when coming form the menu bar, and /forums when coming trough the forum) but it’s all scrambled up!

    Anyone any suggestions on this one?

    Stephen Edgar
    Keymaster

    The next release of bbPress will allow you to customise the CSS based on the user role in each topic or reply so you should be able to do what your asking here 🙂

    See https://bbpress.trac.wordpress.org/ticket/2692 for further details 🙂

    Additionally also see this post on how to achieve the same results now 😉

    #155536
    asefredrikson
    Participant

    Hello!

    I use Genesis with Child theme and when activating BBpress it breaks my CSS, only in Safari 8with Mac)
    The Jetpack social icons are messed up: http://56kilo.se/ss0.png
    and my social icons in the sidebar: http://56kilo.se/ss1.png

    WP version 4.0.1
    BBPress: 2.5.4
    Bloggg: http://56kilo.se

    Any input would be very helpful!

    #155546
    Stephen Edgar
    Keymaster

    There’s also this page https://bbpress.org/about/examples/

    #155545

    In reply to: Adding Icons

    Stephen Edgar
    Keymaster

    To add and thanks Rob, bbPress.org does not use Font Awesome, we us Dashicons that are included with WordPress.

    Dashicons

    Jacob
    Participant

    @Robkk – thanks for that. But again …. I am talking about what we an expect in the future.

    I know all that. I also know that:
    1. These plugins are outdated .. not reliable .. not something to build on …
    2. After I have done that my site goes even slower.

    Quote: “if you think bbPress needs specific features added to the core of the plugin make a new topic about that.

    3. This topic is not about the specifics of that survey. I was just mentioning Jeffs post in relation to his comment..

    Again – what I am after is the initial blockquoted question about momentum and future expectations.

    But thanks.

    #155542
    Robkk
    Moderator
    // Filter wp_nav_menu() to add profile link
    add_filter( 'wp_nav_menu_items', 'my_nav_menu_profile_link' );
    function my_nav_menu_profile_link($menu) {
        if (!is_user_logged_in())
            return $menu;
        else
            $current_user = wp_get_current_user();
            $user=$current_user->user_login ;
            $profilelink = '<li><a href="/forums/users/' . $user . '/">My Profile</a></li>';
            $menu = $menu . $profilelink;
            return $menu;
     
    }

    i just edited the code listed here

    Layout and functionality – Examples you can use

    Robkk
    Moderator

    @situationerdk

    most of the features users wanted in that survey can be achieved with some plugins listed here

    Feature Plugins Tracking

    attachments you would have to use gd-bbPress attachments
    quotes you can use bbPress direct quotes or gd-bbPress tools
    for using bbPress for WordPress comments you can use the bbPress topics for posts plugin

    if you just want users to be able to edit their comments use the simple comment editing plugin

    if you think bbPress needs specific features added to the core of the plugin make a new topic about that.

    Jacob
    Participant

    @Jeff – Ok, glad you received my oroginal post in the way it was to be understood. Just saw your post over here http://wptavern.com/bbpress-2014-survey-results-show-users-are-still-disappointed-with-lack-of-features. I see we are along the lines …..

    I could have written an article like that, but it would not have vented the frustration. I would love to be able to use bbPress and WordPress together. As it is now I dont think of bbPress as normal forum software – but conceptually I would be able to use it to replace the hopeless commenting system that is so weirdly OLD and outdated in wordpress. That way wordpress gets a lift and bbpress becomes the relatively simple software it is in its own right – as a nice facelift for wordpress commenting. Have they not noted the brilliant Disqus plugin ? It is really good – and why wordpress has not made these features native – perhaps not exactly like Disqus – but somewhere along those lines, I really cannot understand – is WordPress simply sleeping ? Users cant even edit their comments as a standard feature when commenting ? Why are they not on the forefront on this defining feature for a blogging system ?

    I will probably go with Xenforo and the Xenword addon. It will probably be an official addon sometime (see also the CTA Featured threads and Portal …. nice one by Brogan..). Or MyBB which is also awesome.

    #155529

    In reply to: Adding Icons

    Robkk
    Moderator

    @joedostie

    bbpress.org does not insert the icons with html in the topic info area , they just use CSS

    bbpress.org uses this css for any icon for the topic info.

    .sidebar .forum-info li:before, 
    .sidebar .topic-info li:before, .sidebar div ul li a:before {
    font: normal 16px/1 'dashicons';
    margin-right: 5px;
    float: left;
    padding-top: 3px;
    color: #000;
    }

    then they use this to add the star icon packaged with dashicons

    .sidebar .topic-info li.topic-favorite:before {
    content: '\f155';
    }
    #155528
    Robkk
    Moderator

    @skisma

    you create a folder named bbpress in the root of your theme and put the file there.

    heres more info https://codex.bbpress.org/theme-compatibility/

    first create a new forum but change the type to category.

    for each new forum you want in the category , make sure the forums parent is that category.

    to reorder the forums change the id

    I’m pretty sure I need to access my cPanel and then navigate to my file manager, correct?

    well you can do that or FTP , whatever you are comfortable with i guess.

    #155524
    Robkk
    Moderator

    There is two sites that run bbPress that i think should be in this showcase list.

    This one is highly customized that you might think that it does not run bbPress .but if you look at some of the source code of the topic pages you will see it does.

    Discussions

    CSS-TRICKS have been running bbPress for awhile now and i think they they use the plugin quite nicely too.

    http://css-tricks.com/forums/

    #155521
    Jeffro
    Participant

    I’ve created a ticket in Trac at the request of @netweb https://bbpress.trac.wordpress.org/ticket/2730

Viewing 25 results - 17,451 through 17,475 (of 64,516 total)
Skip to toolbar