Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 14,876 through 14,900 (of 64,515 total)
  • Author
    Search Results
  • #163599
    Robkk
    Moderator

    @drcath

    Did you try to do any troubleshooting first??

    Troubleshooting

    #163598

    In reply to: Avatars disappeared

    Robkk
    Moderator

    bbPress does not have an area to upload avatars it mostly relies on Gravatar by default. You are probably using BuddyPress , if you are contact BuddyPress support.

    #163591
    peppecol
    Participant

    I have the same problem I can not put a file to download.
    The shordcode I should put it: [wpdm_package id = ‘12529’]
    How can I do?
    I also installed
    https://wordpress.org/plugins/bbpress-do-short-codes/ but nothing has changed I could explain what I do?
    Thanks!

    #163587
    aurelienpierre
    Participant

    Hi !

    I have BuddyPress + bbPress installed together.

    I have a BuddyPress private group which have a private forum and several private sub-forums. The problem I have is regular members (with participant permissions) can’t access to the sub-forums of the group forum because it takes moderator permissions to see private topics and replies. And sub-forums are not mapped with the group.

    All I want to do is a read-only/read-write forum : non members of the group can see the forum, sub-forums, topics, and replies, but only members can post replies and topics. I have looked for a plugin or a hack for 5 days, no solution.

    As a quick fix, I set the sub-forums as public, but now everyone can post a topic and a reply, which is bad.

    I also tried to give to participants read permissions on private topics, it worked on other private forums, but not on the group sub-forums.

    I tested almost all memberships/roles/capabilities plugins available nowadays for the latest WP… I even took a look on bbpress and buddypress hooks but their documentation are still uncomplete for developpers.

    So please, have you some hints ?

    #163583

    Topic: Width change

    in forum Showcase
    klayshen
    Participant

    hello im new to using bbpress and need some help im trying to find in the css file for bbpress the width of the entire forum window and can not find it please help

    #163577
    Garrett Hyder
    Participant

    Hello,

    Wanted to suggest a feature to the bbPress community, would love to see the ability for a keymaster or moderator to be able to copy/duplicate a topic into another forum. I would find this especially helpful with my bbPress+Buddypress set-up which has users silo’d into Group Forums depending on what course/product they’ve purchased on my site.

    Happy to discuss if the community is interested in implementing this into bbPress or as a plugin.

    Thanks

    #163573
    billreefer
    Participant

    I use the ing function in bbpress forum post edit window bu the image has no padding on its right side so the copy of the post is right next to image instead of 3-5 pixels to the right. How can I fix this so when images are embedded that that a) align left with text wrap around, and b) include padding?

    #163566
    infoholico
    Participant

    Hello I have BBPress installed in my blog in which I use Sunspot, it used to look just like the rest of my site until my theme installed the most recent update, since then it changed colors and Iwant it to look just like it used to.

    Thanks for your help.

    #163565
    matthew.stephens
    Participant

    Hi Stephen,

    Bbpress: 2.5.7
    News SEO: 2.2.5

    Thanks Stephen,

    Matt

    #163564
    #163561
    RemcoH
    Participant

    Hi, thnx.

    I tried this but it doesn’t have any effect. I think its because of the hierarchy. Entry is above the #bbpress-forums.

    #163558
    jethron5000
    Participant

    Hi Stephen,

    here are my versions:

    BBPress: Version 2.5.7
    News SEO: Version 2.2.5

    #163557

    Topic: Double Slugs

    in forum Troubleshooting
    kjgbriggs
    Participant

    Since installing BBPress and BuddyPress, the main forum slugs (setup in wp-admin/edit.php?post_type=forum) have had URL’s such as this:

    http://www.example.com/forums/forum/General-Discussion

    Why do I have the word forum twice and how can I get rid of it?
    When I go into a thread in General Discussion it only appears like this:

    http://www.example.com/forums/topic/hi

    First of all, I would like the thread link to say the forum before the topic, so for example:

    http://www.example.com/forums/general-discussion/hi

    And secondly, I would like to get rid of the double slug in the first example.

    #163551

    In reply to: User ranking system?

    Stagger Lee
    Participant

    I did not ooked for User ranking/Voting system. I needed simple star systems for posts count. If User has so many posts/comments give him/her one additional star (under avatar).

    So here is my code. Maybe it could be reduced in lines, made better. I have brain blocade right now.

    // bbPress User post count
    function display_counts () 
    {
    		
    		$user_id=bbp_get_reply_author_id( $reply_id ) ;
    		$topics  = bbp_get_user_topic_count_raw( $user_id);
    		$replies = bbp_get_user_reply_count_raw( $user_id);
    		$post_count   = (int) $topics + $replies;
    		echo "<div class=\"user-comments-count\">" ;
    		echo "<strong>" . "Comments: " . "</strong>" ;
    		echo $post_count ;
    		echo "</div>" ;
    		// echo "</br>" ;
    		//if ($post_count > 1) {
    //	    echo '<i class="svg-icon all-stars"></i>'; 
    //	    }
    		
    		if ($post_count >= 1 && $post_count <= 20) {
    		echo '<div class="all-stars"><i class="svg-icon one-star"></i></div>'; 
    		}
    		elseif($post_count >= 21 && $post_count <= 50) {
    		echo '<div class="all-stars"><i class="svg-icon two-star"></i></div>';
    		}
    		elseif($post_count >= 51 && $post_count <= 100) {
    		echo '<div class="all-stars"><i class="svg-icon three-star"></i></div>';
    		}
    		elseif($post_count >= 101 && $post_count <= 500) {
    		echo '<div class="all-stars"><i class="svg-icon four-star"></i></div>';
    		}
    		elseif($post_count >= 501 && $post_count <= 1000) {
    		echo '<div class="all-stars"><i class="svg-icon five-star"></i></div>'; 
    		}
    		elseif($post_count >= 1001 && $post_count <= 2000) {
    		echo '<div class="all-stars"><i class="svg-icon six-star"></i></div>';
    		}
    		elseif($post_count >= 2001 && $post_count <= 5000) {
    		echo '<div class="all-stars"><i class="svg-icon seven-star"></i></div>';
    		}
    		elseif($post_count >= 5001 && $post_count <= 10000) {
    		echo '<div class="all-stars"><i class="svg-icon eight-star"></i></div>';
    		}
    		elseif($post_count >= 10001 && $post_count <= 50000) {
    		echo '<div class="all-stars"><i class="svg-icon nine-star"></i></div>';
    		}
    		echo "</br>" ;
    		}
    add_action ('bbp_theme_after_reply_author_details', 'display_counts');

    CSS, needed for this snippet:

    .svg-icon,
    .all-stars {
      font-family: 'Your SVG Web Font';
      font-style: normal;
      font-weight: normal;
      text-decoration: inherit;
      text-align: center;
      text-transform: none;
      width: 1em;
      }
      
    .one-star:before,
    .two-star:before,
    .three-star:before,
    .four-star:before,
    .five-star:before,
    .six-star:before,
    .seven-star:before,
    .eight-star:before,
    .nine-star:before,
    .all-stars:before {
      left: 12px;
      position: absolute;
    }
    
    .one-star:before {
      content: '\28b';
    }
    .two-star:before {
      content: '\28b''\28b';
    }
    .three-star:before {
      content: '\28b''\28b''\28b';
    }
    .four-star:before {
      content: '\28b''\28b''\28b''\28b';
    }
    .five-star:before {
      content: '\28b''\28b''\28b''\28b''\28b';
    }
    .six-star:before {
      content: '\28b''\28b''\28b''\28b''\28b''\28b';
    }
    .seven-star:before {
      content: '\28b''\28b''\28b''\28b''\28b''\28b''\28b';
    }
    .eight-star:before {
      content: '\28b''\28b''\28b''\28b''\28b''\28b''\28b''\28b';
    }
    .nine-star:before {
      content: '\28b''\28b''\28b''\28b''\28b''\28b''\28b''\28b''\28b';
    }
    
    .all-stars:before {
      content: '\28b''\28b''\28b''\28b''\28b''\28b''\28b''\28b''\28b';
      color:#ddd;
    }
    #163537
    thoracic
    Participant

    I’ve a site that I’ve been generating on a temp domain. I started building the ‘live’ site on another domain.
    On the test site, bbpress integrated quite nicely, placing itself in the ‘main’ column, leaving the sidebars as they were (left & right).
    On the live site, the sidebars disappear on any of the forum pages.
    (???)
    Using the latest WP (4.2.2), bbpress (2.5.7) & a raindrops child theme (1.0.1435411886)
    any help greatly appreciated

    #163536
    webappdesigner
    Participant

    answered my own question….

    For anyone that has the same problem, bbpress -> includes -> extend -> buddypress -> groups.php

    on line 151 change

    public function display() {
    to
    public function display($group_id = NULL) {

    #163535
    webappdesigner
    Participant

    Hi, Firstly thanks for making such a great plugin, which once I can get working, will really change the lives of so many people.

    I have clean install on XAMMP of just the following;
    WordPress 4.2.2
    BuddyPress 2.3.2.1
    BBPress 2.5.7

    However when both BuddyPress and BBPress are activated i get the following error message across the top of most screens

    “Strict Standards: Declaration of BBP_Forums_Group_Extension::display() should be compatible with BP_Group_Extension::display($group_id = NULL) in C:\xampp\htdocs\wordpress\wp-content\plugins\bbpress\includes\extend\buddypress\groups.php on line 28″

    If I deactivate either BBPress or BuddyPress it goes away…

    I have no other plugins install as only just started trying to use them.

    I have seen some old previous messages about this same issue with a patch, however they see to be talking about the very different file structure to what this BuddyPress has…

    Thanks in advance

    JustATraveller
    Participant

    wordpress version: 4.2.2
    bbPress version: 2.5.7
    Normally after activation of bbpress, I would be directed to a new page and 3 items (forums, topics, replies) would show up. The new website site I am currently working on (with X theme installed), however, doesn’t happen to do so. What happens is that right after I active the bbpress, it stays on the plugin page and says the plugin is activated. But there are no items showing up on left menu bar and also in the setting I do not find bbpress. All other plugins work well except for bbpress…

    #163523
    Robkk
    Moderator

    Check out the screen shots to see what I was talking about

    https://wordpress.org/plugins/bbpress-report-content/screenshots/

    #163519
    Stephen Edgar
    Keymaster

    Looks like it is a bug, can I get you both @matthewstephens and @jethron5000 to list the versions of the plugins you are using, i.e. What version of bbPress? What version of News SEO?

    #163517
    Robkk
    Moderator
    #bbpress-forums input#bbp_topic_title {
    	float: none;
    	padding: 0;
    }
    
    #bbpress-forums .bbp-form p {
    	float: none;
    	margin: 0;
    }

    sorry made a little mistake haha writing it here.

    #163516
    Robkk
    Moderator

    @lilmisskatie

    Its the themes CSS causing an issue with the input box for the topic title.

    This custom CSS should do it.

    #bbpress-forums input#bbp_topic_title {
    	float: none;
    	padding: none;
    }
    
    #bbpress-forums .bbp-form p {
    	float: none;
    	margin: 0;
    }

    Tell your themes support this too.

    If you feel like donating you can do so here

    About Me

    #163502
    lilmisskatie
    Participant

    This is the response I received from the support.

    I just checked your page and there are no js errors coming from debug.

    I’m not sure what to tell you really, no one else has reported this issue and since this is just a demo, we don’t use bbpress. Perhaps if they could’ve been more specific on what is conflicting?

    …any ideas as to what else it could be? Thanks.

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