Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 48,201 through 48,225 (of 64,509 total)
  • Author
    Search Results
  • #80139

    In reply to: Members Only

    johnhiler
    Member

    I used the Private Forums plugin for a year or so… it would randomly turn all my private posts public!

    Then I checked the comments on that plugin, and a number of other users had reported something similar:

    https://bbpress.org/plugins/topic/private-forums/page/4/#post-1621

    I don’t recommend using Private Forums for that reason… especially since Hidden Forums does the same thing. I’ve been using that for a year or two now, and have never had any problems.

    #80120
    Jim R
    Participant

    This is what they said, but he wasn’t the support guy who fixed it:

    It appears that they added the correct rewrite rules for WordPress to resolve the issue with the permalinks this can also by done from the WordPress admin under Permalinks.

    My new issue with this plug-in is trying to get it to NOT create a new bbPress post every time I edit a WP post.

    #80138

    In reply to: Members Only

    Shagalaga
    Member
    #80137

    In reply to: Members Only

    Peter A. Gebhardt
    Participant

    Addendum: To check a user’s role anywhere in your code use

    <?php if (bb_current_user_can('administrate')) { ?> .....

    (by replacing administrate by the proper role description)

    as proposed here:

    https://bbpress.org/forums/topic/page-elements-viewable-only-to-admin

    #76129
    panchz
    Member

    I had that same problem when trying to make only one register & only one login from my site with bbpress integration.

    register is easy, I just wrote directly to the db from php using the hash classes included. but for login i made a kind of webservice. When I login from tomcat I just request the next url…

    http://www.mysite.com/bbpress-root-dir/bb-login-check.php?user_login=USER&password=PASSWORD&remember=yes

    and i wrote the next code for bb-login-check.php

    <?php

    // Load bbPress.

    require(‘./bb-load.php’);

    // Redirect to an SSL page if required.

    bb_ssl_redirect();

    $user = bb_login( @$_GET, @$_GET, @$_GET );

    if ( $user && !is_wp_error( $user ) ) {

    echo “0”;//login successfully

    exit;

    }else{

    echo “1”; //login fail

    exit;

    }

    ?>

    i hope that’s usefull…

    for any question or help needed for bbpress or wordpress try fran.rod.rod [at] gmail.com

    #80102
    chrishajer
    Participant

    makeupalley? no, not using bbPress.

    #80101
    koneksitas
    Member

    is that site using bbpress?

    #31969

    Topic: Topic Author Gravatar

    in forum Themes
    arpowers
    Member

    Hey Everyone,

    What is the easiest way (as of the latest BBPress release) to get the avatars for ‘topic’ authors?

    I have avatars showing correctly for ‘posts’ with <?php post_author_avatar_link(); ?>

    but it doesn’t seem to work correctly for the first post in topics and on the front page.

    I’ve seen some other posts on this, but so far no elegant solutions. Any help?

    Thanks!

    #80052
    anaon
    Member

    Oh Kawauso, thank you so much!! This code works perfectly!!

    But do you mean that normally, I should have just one profile page for WordPress and BBpress?

    #80044
    gravitydk
    Member

    Easy answer. Number one requirement is, that it also has a wordpress theme.

    #56793

    In reply to: Plugin: Avatar Upload

    Billy Wilcosky
    Participant

    Does anyone have any suggestions for showing the bbpress avatar next to comments in wordpress. I know a couple suggestions were given here, but, I don’t want to try the first suggestion, because they say to delete a file in my plugins, and I have a feeling that will cause more trouble than it’s worth. I saw another suggestion, tried it, but the avatar didn’t show. This probably won’t happen, but, it would be nice if there was a sister plugin to this one for wordpress… and you installed it and magically the bbpress avatars showed up. :) Wouldn’t that be nice. Unfortunately I don’t know php very well.

    Here’s hoping someone can come up with a solution!

    #31968

    Is it possible to change the language after installation of bbPress? If yes, can you please tell me how to do it? I already uploaded the .mo & .po files in a new folder called “my-languages”.

    Thank you very much for your help.

    #80051

    <?php if ( $wp_profile_user = bb_get_user( get_post_author_id( $post_id ) ) ) : $wp_profile_link = esc_attr( "/members/{$wp_profile_user->user_nicename}/" )?><a href="<?php echo $wp_profile_link?>">View profile</a><?php endif?>

    Your profile pages from bbPress and WordPress should be in sync anyway if you’ve integrated properly…

    #80117

    Read through register.php in bbPress’ base directory and function bb_new_user under functions.bb-pluggable.php in bb-includes to get an understanding of how normal registration works.

    Normally the user is given an auto-generated password, but the function used in the registration function will hash anything anyway.

    #80043

    Ah…. add a sidebar capability ;)

    #80042
    chandersbs
    Member

    One of the things I try to do on my own bbPress-based forum, is trying to make it more and more user friendly. By saying user friendly, I want my users to click less, as that is really annoying. And give as much as information possible on the page they are.

    Think of:

    • Adding a search bar on every page

    • Navigation should be visible from all pages

    A few options that you’d need plugins for:

    • Upload plugin, so users can upload images

    • Signature, users love that too

    • And PM system

    Worth considering:

    • AJAX replies (just like we have in vBulletin)

    So if you’re gonna incorporate those things into your theme, think about the design.

    #31967
    CraigElias
    Member

    I want to use Wishlist member to protect a page called Forum – with the slug shiftselling.com/forum.

    That means I need to move the files for the forum to a different directory – currently shiftselling.com/forum.

    Should I move it or rename it?

    Should it be moved to a directory or a sub domain?

    I am also trying find what code I could put into a the page called forum that would display the forum inside my page.

    Regards,

    Craig

    Cell: +1.403.874.2998

    #80050
    anaon
    Member

    Any other idea maybe?

    Actually, it would be really great if I could use WordPress profile page instead of BBpress profile page, you know? Because on my WordPress, members (users=authors) can change their profile and fill up some custom fields I added and I think it’s better if they don’t have to fill up two profile pages…

    Thanks

    #79705

    In reply to: Need A Project ShowOff

    looking for more suggestions? I do get a few hits from this page but the responses are very minute as compared to that. Please take out some time to comment or suggest here on a new bbPress theme – Pour in your suggestions for an ultimate bbPress theme

    #80093

    Try matching the code with the default theme and if you need to show more additional info then you can take a look at this too https://bbpress.org/forums/topic/unhide-profile-email-adresses

    #80119
    johnhiler
    Member

    I was researching this for ya, and noticed that your host had fixed it for you:

    https://bbpress.org/plugins/topic/wordpress-bbpress-syncronization/page/9/#post-4698

    Glad it worked out! Let us know if your host ever lets you know what they changed/fixed, if you could… thanks!

    #80118
    Jim R
    Participant

    My host took care of that issue, but now I’m getting this from the plug-in:

    Not allowed: [bbPress part] Invalid anonymous user id

    #31961
    Jim R
    Participant

    I’m not getting a lot of help where the plug-in is actually posted. As best I can tell my settings are correct. I’m getting this response though:

    URL is incorrect or connection error, please verify it (full variant): http://hoosierhoopsreport.com/bbpress/my-plugins/wordpress-bbpress-syncronization/bbwp-sync.php

    When you click on that link, it brings up a 404 page, but having checked my server files, it’s there. The plugin has been uploaded in the my-plugins folder of my bbPress folder.

    #80115

    Why not just use bbPress native functions and adapt code? :)

Viewing 25 results - 48,201 through 48,225 (of 64,509 total)
Skip to toolbar