Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 30,076 through 30,100 (of 64,535 total)
  • Author
    Search Results
  • grex22
    Participant

    So, oddly, the install of bbPress on my site is v 2.0.1, and the latest version is 2.1. Yet, I have no option to upgrade in my plugins screen..

    Is there a reason why bbPress wouldn’t see the new version availability (and can it be fixed), or failing that, can I manually upgrade to 2.1 somehow?

    I assume i could just copy new files over from the latest release, but perhaps there are database structural changes that this wouldn’t account for?

    Greg

    hixen
    Participant

    Hi, don’t know if this is a bug or just my doing it wrong. I have added a twitter and a facebook field to my user details, and removed the yim, aim and jabber fields. I’m also using the events manager plugin, who have added a Phone field to my user details. So when trying to edit my user details, front end with bbpress (form-user-edit.php) my user_contactmethods dosen’t get updated. This is the code i used:
    add_action(‘roots_footer’, ‘roots_google_analytics’);
    add_filter( ‘user_contactmethods’, ‘my_user_contactmethods’ );

    function my_user_contactmethods( $user_contactmethods ) {
        unset($user_contactmethods['yim']);
        unset($user_contactmethods['aim']);
        unset($user_contactmethods['jabber']);
        $user_contactmethods['twitter'] = 'Twitter';
        $user_contactmethods['facebook'] = 'Facebook';
        return $user_contactmethods;
    }
     This is the code that shows my stuff front end (well it's your code, from form-user-edit.php) 
    

    http://pastebin.com/iYV5H6jv My problem is that it doesn’t output any values front end, but if I type something and press the update button, it gets updated backend, but still it turns blank front end. Hope you guys understand, any help, feedback or ideas is much appreciated.

    • This topic was modified 13 years, 10 months ago by hixen.
    • This topic was modified 13 years, 10 months ago by hixen.
    • This topic was modified 13 years, 10 months ago by hixen.
    • This topic was modified 13 years, 10 months ago by hixen.
    • This topic was modified 13 years, 10 months ago by hixen.
    • This topic was modified 13 years, 10 months ago by hixen.
    • This topic was modified 13 years, 10 months ago by hixen.
    • This topic was modified 13 years, 10 months ago by Stephen Edgar. Reason: Added topic tags
    #117298
    fadebek1
    Member

    Hi guys.

    I have been working with bbpress lately and i wanted to be able to add a button on the reply form

    That will perform an action when clicked.

    Will i need to edit the core files or which file shouild i edit?

    How should i do this?

    Thank you.

    #117297
    #117293

    In reply to: Forum Post Editor

    Steve
    Participant

    PS

    WordPress – Version 3.4.1
    bbPress – Version 2.1.2
    BuddyPress – Version 1.6.1

    #117292

    Topic: Forum Post Editor

    in forum Plugins
    Steve
    Participant

    Hi guys, you know the editor we use on this site to be able to start new topics and add replies, its not the same as the editor you get on the standard installation of BBPress (that one looks like a fancy wordpress editor) what im after is finding out what bbpress.org actually use as there editor because on this one you can hit the link or image button and a window pops up where you just simply insert the link and boom it works right in the post

    (like this>) enter image description here

    and the post preview just underneath is uber handy!!

    Can anyone shine any light as to what bbpress.org use themselves?

    Cheers
    Steve

    #117291

    In reply to: bbPress 2.2

    fadebek1
    Member

    cant wait for this to come out

    #117289
    Starejosel
    Participant

    I am using both the Recent Topics and the Recent Replies widgets. The Recent Replies widget works beautifully, but the Recent Topics widget seems erratic. I have it set to list topics by “Newest Topic”, but the order seems unpredictable. Sometimes it uses the creation date, and other times the latest reply date. Sometimes a reply causes it to change the date it shows, and sometimes it doesn’t. It is not a crippling issue, but curious. Was there a recent update that could have changed the behavior? I am using the latest WP (3.4.1) and BBPress (2.1.2), and tried using the recount tools–they didn’t help. The website is here: http://poetryroundup.us/whup/
    Any help will be appreciated.

    #117288
    Gianluca
    Member

    Non so come ho fatto ma ora funziona… l’unico problema e che bbedit usa i suoi “link” anzichè restare nel permalink assegnato… karnhack.com/social/

    #117279
    Tanya
    Participant

    I am wanting to change the post count instead to a reply count, same as the current bbPress forum does. How would I go about doing that? I have tried to google and search through these forums but unfortunately haven’t found the answer yet.

    I am using the latest version of bbPress and WordPress and my forum is currently in test mode at netballscoop.com/forums

    #117278
    Stephen Edgar
    Keymaster

    Why not use the shortcodes that come with bbPress?

    https://codex.bbpress.org/shortcodes/

    #117277
    5ngua
    Participant

    sample problem here https://bbpress.org/forums/topic/allow-global-access-checked-people-still-can-not-post/ , not yet resolved 🙁

    p.s. Me too, the multisite+buddypress+bbpress installation and the main site is in the subfolder.

    #117270
    ysc
    Member

    click register button

    —->
    User registration is currently not allowed
    —->

    bbpress, wordpress: rescent version

    http://www.marketingnews.co.kr

    mluther
    Member

    Dear Melindrea, Lynq, Amunds,

    Thank you so much for your willingness to help us. And thanks for your patience.

    Here are the relevant files:

    https://www.dropbox.com/s/517br2emy7yz4pq/forum_page.html
    https://www.dropbox.com/s/gcr7so5gx0go0dl/non-forum_page.html
    https://www.dropbox.com/s/jjqlif81pqkrvam/ourwebsite.com_style.css
    https://www.dropbox.com/s/5me5s9gtumwrd1h/bbpress.css

    The link to the folder containing the files is https://www.dropbox.com/sh/lm1mlfjxx3gcwoy/JpAMg7Ipxa

    • This reply was modified 13 years, 11 months ago by mluther.
    • This reply was modified 13 years, 11 months ago by mluther.
    #117259
    ryuken2
    Member

    I am trying to create login box and register link in shortcode function.

    function add_login_form() {
        if(!is_user_logged_in()){
            return wp_login_form();
        }
        else {
            return;
        }
    }
    

    So I get the login box but not sure how to add the bbpress register link if the user is not logged in. code where i want to add the register link along with the loginbox,not sure how to do that. Any pointers or suggestion in code?

    • This topic was modified 13 years, 11 months ago by ryuken2.
    • This topic was modified 13 years, 11 months ago by ryuken2.
    #117258
    Jerry
    Participant

    I would like to install bbpress on a wordpress site I am trying to build- all static pages, so all loged in users to the website domain and sub domains (not multi site) have access to the forum and public viewers of the site do not know the forum exists. Also, the forum should not be indexed or published on the internet.

    kate.t
    Participant

    Thanks Lynq, the first one displays correctly, the 2nd one is misaligned.

    This one displays correctly

    This is the misaligned one

    I can’t belive, that this is acutally no out of the box function for bbpress / wordpress – but I have really big issues, with having certain forums or topic just accessable for certrain user groups.

    It seems impossible, to create something, like user-groups, only roles can be done – thats okay. But Even with the Members Plugin, where I can create certain roles, it is absolutely impossible to specify, which user-role has access to a forum or topic.

    Ex.: I created a user Role, then I created a forum, and I set the User-Role I created to be the only User role, that should have acccess to it. If I set the visibility to public, everyone could see it, If I set it to private, only logged in users could see it – everyone.

    Isn’t there ANY way, to let my customer

    • create User Groups (or roles)
    • apply them to users
    • and specify at each forum OR Topic, which user role should have access

    We really need this! I know that this is possible with BuddyPress, but with my years of WordPress Experience, I have still no clue how to make a hole BuddyPress Site – there is no satisfying documentation about it. (as well as with bbpres.. btw..)

    Lynq
    Participant

    What do you mean by “messed up” when I look at them I see very minor changes, if any.

    Let me know which specific points you are referring to in the layout and I could have a look for you.

    Good luck!

    #117251
    Gianluca
    Member

    ok, I think I understand the problem. I enter into the “child-theme” folder, the contents of the TwentyTen theme and customize it.
    I would like to know if there is a way to add the entire folder “twentyten” in “child-theme” instead of what is contained in it?

    #117250
    bhatiacane
    Member

    bbpress not works with Mystique theme Version 3.3.2

    pls help me to solve this issue.

    short url :
    goo.gl/Xb96K

    #117248
    Gianluca
    Member

    Netweb thanks for the reply. The developer of the theme “mystique” says it supports bbPress 2.0. I initially installed the bbPress 2.0, but the problem is the same. (http://digitalnature.eu/themes/mystique/)

    tkomuro2k
    Member

    Hello guys,

    I am running wordpress 3.4.1 and bbpress 2.1.2..
    The Add this topic to your favorites and Subscribe button works well for Administrators but not for Authors
    Author clicks those links, the span goes red color and happens nothing..
    Would anyone suggest me what may be causing this?

    Thank you!

    kate.t
    Participant

    Hi there, can any kind expert help me out? I’ve been doing lots of trial and error but I still can’t figure out the solution:
    When I set my bbpress forums to wordpress home page, the page layout gets messed up
    i.e. http://semjunkie.com/
    If one goes directly to the forum page, the page layout displays how its supposed to
    i.e. http://semjunkie.com/forums/

    I really want bbpress to be on the home page though, is there anything I can do to make it display correctly when its set to static home page?

    #117244
Viewing 25 results - 30,076 through 30,100 (of 64,535 total)
Skip to toolbar