Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 15,476 through 15,500 (of 64,532 total)
  • Author
    Search Results
  • #161900
    Robkk
    Moderator

    its not just for Admins , it could be useful to moderators in bbPress’s case , and also be handy for participant users if you have BuddyPress installed.

    you can install this plugin to remove access for certain user roles.

    https://wordpress.org/plugins/wp-admin-no-show/

    #161899
    Toni
    Participant

    WP MultiSite v4.2.1, bbPress v2.5.7, Plugin: Social Login

    On this site, bbPress.org, and my own bbPress (sub)site, I notice that there is a menu item for Dashboard as a non-admin user. When I logged in as a non-admin user on my own site, I had access to my dashboard. And I was registered as a user for the entire MultiSite network. When I was in Documentation on this site, bbPress.org, I saw a submenu item for Dashboard. Dashboard is not a menu item when in the bbPress.org Support Forums – just ‘Create a New Topic’ is in the submenu.

    I don’t like that. I don’t understand it. I only want forum users, nothing more.

    I thought it was something I did until I saw the same thing on this site.

    Please advise.
    Thank you

    #161898
    Robkk
    Moderator

    you insert this into a child themes function.php file or a functionality plugin

    function rk_show_role_classes($classes) {
        $replyid = bbp_get_reply_author_id();
        $bbp_get_role = bbp_get_user_display_role($replyid);
        $bbp_display_role = strtolower($bbp_get_role);
    	  
      
    	$classes[] = $bbp_display_role;
    	return $classes;
    }
    add_filter( 'bbp_get_topic_class','rk_show_role_classes' );
    add_filter( 'bbp_get_reply_class','rk_show_role_classes' );

    this custom css you can put in your child themes style.css file or a custom css plugin.

    
    #bbpress-forums .bbp-body .keymaster div.bbp-topic-content, 
    #bbpress-forums .bbp-body .keymaster div.bbp-reply-content,
    #bbpress-forums .bbp-body .moderator div.bbp-topic-content, 
    #bbpress-forums .bbp-body .moderator div.bbp-reply-content {
    background: #f8f8f8 url(images/team-member.png) top right no-repeat;
    }

    now for this to work exactly like the other site , you can download this image from here, by right clicking save image as, then uploading the image to your child theme in a folder called images. Make sure its named “team-member”

    #161897
    Robkk
    Moderator

    sorry i forgot about this.

    but since you have a full width forum try adding all this CSS to have bbPress look better.

    .bbpress-forums .col-2cl .main {
    
    	padding-right: 0;
    
    }
    
    .bbpress .site,
    
    .bbpress .site-header,
    
    .bbpress .site-content .entry-header,
    
    .bbpress .site-content .entry-content,
    
    .bbpress .site-content .entry-summary,
    
    .bbpress .site-content .entry-meta,
    
    .bbpress .page-content {
    
    	max-width: 100%;
    
    }
    
    .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;
    
    	}
    
    }
    #161896
    Robin W
    Moderator

    try

    bbpress wp4 fix2

    If that doesn’t work, try creating a reply in the backend so we can wee if it’s just topics !

    #161894
    TheMusicianGirl1
    Participant

    Hello all,

    I’ve got a bit of a problem! I just installed bbpress on my site (www.themusiciangirl.com) this morning, and after a bit of fussing, I have it more or less up and running. Well, apart from one large thing! When I click on a topic, the content is not displayed. I tried creating a new topic on both the front end and back end, both with the same result. Here is what it looks like: http://www.themusiciangirl.com/forums/topic/how-to-critique/

    Notice how there’s not content? Well, there should be! When I edit the topic on the backend the text is all there, just for some reason it’s not displaying. Any ideas as to what could be causing this?

    Now, I know I know I’m supposed to check with a default theme (2012, 201 etc.) to see if the problem persists. However, I’m terrified of doing that! I’m using a theme called Optimize Press, which is a pretty intense and customizable theme. I’ve spent almost 100 hours carefully creating all of my pages using their live editor. Now, if I suddenly disable it and quickly try on another theme for size, when I re-activate it how do I know that all my pages would be the same? I’d be devastated if they weren’t.

    Anyway, has anyone had this problem before? Help is much appreciated!

    Thanks in advance,

    Maya

    #161891

    In reply to: bbPress like Flarum

    Master
    Participant

    Sorry tags work, just subscription not use for now in theme will in the future be added, and i published changed plugins https://wordpress.org/plugins/bbpress-new-topics/ to work for all users http://prntscr.com/72a5me

    #161889

    In reply to: bbPress like Flarum

    Master
    Participant

    All works fine, and u can view on demo site and i use 4 plugins for bbpress and work all. Only subscription, descriptions and tags in teme it is not necessary for now. And nothing change, only not using table, and use div.

    #161885

    In reply to: bbPress like Flarum

    Robkk
    Moderator

    just checked the code and i can see that you really stripped a lot of the bbPress default code out.

    alot of bbPress specific plugins i can expect not to work correctly because of this, and maybe even some snippets would not work anymore.

    #161884
    Robkk
    Moderator

    first change the PHP function to this, it bugged me that its not lowercase.

    function rk_show_role_classes($classes) {
        $replyid = bbp_get_reply_author_id();
        $bbp_get_role = bbp_get_user_display_role($replyid);
        $bbp_display_role = strtolower($bbp_get_role);
    	  
      
    	$classes[] = $bbp_display_role;
    	return $classes;
    }
    add_filter( 'bbp_get_topic_class','rk_show_role_classes' );
    add_filter( 'bbp_get_reply_class','rk_show_role_classes' );

    Thats CSS in the topic you linked to , put it anywhere you can put custom css

    a child themes style.css file
    a custom css plugin

    this is basically what you would need in your code.

    #bbpress-forums .bbp-body .moderator div.bbp-topic-content, 
    #bbpress-forums .bbp-body .moderator div.bbp-reply-content {
    background: #f8f8f8 url(images/team-badge-head.png) top right no-repeat;
    }

    you will need an image in your child theme in a folder called images though for what they have.

    you can test it out by just changing the background color for the users.

    #bbpress-forums .bbp-body .keymaster div.bbp-topic-content, 
    #bbpress-forums .bbp-body .keymaster div.bbp-reply-content {
    background: blue;
    }

    there should be classes inserted for every role

    .keymaster = Keymaster
    .moderator = Moderator
    .participant = Participant
    .guest = Guest

    #161879
    Benjamin Zekavica
    Participant

    Where should I insert then the code from: http://www.kriesi.at/support/topic/custom-images-for-moderator-in-bbpress/ of the site?

    #161878
    shanthini
    Participant

    Hi

    We are converting mingle forum into bbpress

    In the existing mingle forum we have only 5 forum and not more than 5 topics in each forum. When we tried Tools -> Forum -> import we could able to convert only forum. We could not able to import any of the topics. I checked with 2013 theme also. Same issue occurs. Please suggest.

    Wordpress version: 4.2.1
    Theme: Thesis 2.1
    bbpress version: 2.5.7
    Mingle forum version: 1.0.33

    Thanks

    #161872

    In reply to: SMF Import to bbPress

    l5z5heli
    Participant

    When I attempt to access the URL ​​https://codex.bbpress.org/import-forums/smf the page is blank. Am I clicking wrong here, or is something wrong with the page?

    #161870

    Topic: Just for members

    in forum Installation
    cees50
    Participant

    Maybe a silly one…

    I want a forum on my wp site. But the forum has to be just for members.
    On my site i have Menu Items Visibility Control and WordPress Access Control. If i set the forum in the menu just for members using first the visibility control, and then set the forums on hidden. Is that enough? Is that also preventing bots to crawl the forum?

    I’m a noob with WP and bbpress, so if this is a really silly question, i am sorry 🙂

    #161863
    Robkk
    Moderator

    @yrisse3

    pagination breaks right now with threaded replies.

    the patch here fixes it though , will need some more tests before it goes to core

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

    #161859
    Robkk
    Moderator

    there is a couple of patches here , you can see if the latest patch fixes your issue.

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

    make sure to take a site backup before applying a patch.

    https://codex.wordpress.org/WordPress_Backups

    if it still doesnt fix your issue , then you might as well restore your site from the backup then wait for a newer patch.

    if you really need this fixed soon , i suggest you post a job and hire a developer jobs.wordpress.net/

    #161858
    Robkk
    Moderator

    it worked for me, and just so you know bbPress uses some of the WordPress comments code for anonymous posting.

    link to a topic i can test on and make sure you have the code placed.

    the way i tested it is i tried normal anonymous posting when logged out of my test site inputted my email and name then posted a reply and topic. by default the name and email should populate automatically for my next reply and topic.

    with my code it should display empty text inputs even when you already made a reply or topic.

    Robkk
    Moderator

    im going to guess everything was fine in 2.5.4??

    those plugins you listed, i dont think they would mess with the author link.
    but if you didn’t already deactivate everything except bbPress and see if the issue persists.

    if the issue is still there , we would have to go through more troubleshooting to help fix this issue for you.

    and just know as a last resort you might have to hire a developer to fix this issue

    post a job at http://jobs.wordpress.net/

    Stephen Edgar
    Keymaster

    The ticket is https://bbpress.trac.wordpress.org/ticket/1989, there are some specific things we want to do with revisions, we want to actually keep all revisions but only display one revision, we want to be able to “scroll through” the list of revisions, you can see an example of this in the following comment https://bbpress.trac.wordpress.org/ticket/1989#comment:19, in that comment you’ll see previous and diff, once you click previous you’ll then see next.

    If you want to join our development chat we can chat about what and where further.

    To join follow the instructions here and join the #bbpress channel 🙂
    http://chat.wordpress.org

    Benjamin Zekavica
    Participant

    Please, my bad English excuses, am from another country.
    insert bbpress team Lable/Bage on the top right – user colours

    I would improve in appearance with pleasure in bbpress my Admin & presenters of account.
    1. How can I make a Lable like this?

    2. How can I provide colours for Admins & presenters visibilities?

    3. How can I provide in bbpress under the forum some whole view who is on-line?

    I hope you can help me. Please tell me the files that I should open.

    #161851
    sharingsunshine_wp
    Participant

    I have a SMF 2.0.9 forum that I am trying to import into bbPress. When I run the built in converter it says no forums, no topics, no users and I know they are there because I have looked in the DB’s with phpMyAdmin.

    It’s as though it isn’t finding the db that I am telling it to go to. I have looked in the error logs and can’t find any direction.

    I want to switch this to bbPress so please advise what i should do next. I even imported it into phpBB 3.x and tried that converter but it does the same thing. When I try to count the topics or do any thing in the list it says failed.

    This is what I have WordPress 4.2.1 running eleven40 Pro Theme this is a studio press theme.

    Thanks,

    Randal

    #161848
    Nicolas Korobochkin
    Participant

    Already publish the plugin on wordpress org. Right now without automatically flushing rewrite rules https://wordpress.org/plugins/bbpress-permalinks-with-id/

    yrisse3
    Participant

    hello,

    My version is 2.5.7 bbpress
    My version is 3.0.1 BBP private groups
    My WP version is 4.1.1
    My thème is Twenty Ten version 1.9

    Despite my trials and my research on the forum I have not got to figure out how to limit the number of displayed replies by page. Any replies from the subject to appear on the same page !

    I set Topics and Replies Per Page: 5 topics and 5 Replies, after 5 topics and 10 replies

    and that does not want to change.

    thank you for your help

    Regards

    Hervé

    DigitalNinjaZA
    Participant

    Hey guys. I’m busy customizing my forum page.

    I’m using WP Visual Composer Plugin to add some elements to the Forum Page, but every time I click update and reload the page they’re gone? Maybe they’re being overridden by css or bbpress code?

    How can I fix this?

    I’ve checked the bbpress shortcodes for visual composer but don’t think that will fix it. As I’m simply trying to add a header and footer image, plus a Custom header.

    Thanks in advance.

    #161833
    Robkk
    Moderator

    there have been quite a few issues with BuddyPress Groups and bbPress lately , the issues are being taken care of.

Viewing 25 results - 15,476 through 15,500 (of 64,532 total)
Skip to toolbar