Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 40,051 through 40,075 (of 64,515 total)
  • Author
    Search Results
  • #103530
    Anonymous User
    Inactive

    Here is one solution described for all keymasters and admins:

    https://bbpress.org/forums/topic/different-style-for-key-master-and-administrator-replies-1

    For admins you can also do something like this:

    <?php if( is_bb_admin() ) { ?> class="highlight"<?php } ?>

    #98429
    Pomy
    Participant

    Hi Zaerl, You are a great person, your method is working like charm.. thanks brother..

    @Markus your method is also working, thanks for your time.

    – One more question, Like in WordPress you can highlight the author comments in his/her post. I’m searching the almost same way with diffident edge

    In my case – usually/mostly Keymasters (Like Matt on bbPress) don’t write in their forums, they are busy guys. When they will came back that would be excited to highlight them?

    — So, Is it possible to highlight a specific author/keymaster/admin’s every post?

    I want to highlight all Keymaster’s posts in my forums.

    Thanks again.

    S.

    #103529
    Pomy
    Participant

    Hi Zaerl, You are a great person, your method is working like charm.. thanks brother..

    @Markus your method is also working, thanks for your time.

    – One more question, Like in WordPress you can highlight the author comments in his/her post. I’m searching the almost same way with diffident edge

    In my case – usually/mostly Keymasters (Like Matt on bbPress) don’t write in their forums, they are busy guys. When they will came back that would be excited to highlight them?

    — So, Is it possible to highlight a specific author/keymaster/admin’s every post?

    I want to highlight all Keymaster’s posts in my forums.

    Thanks again.

    S.

    #98427
    Anonymous User
    Inactive

    For specific topics and post you can use:

    get_topic_id();

    post_id();

    Here you’ll find the incomplete documentation:

    https://bbpress.org/documentation/template-tags

    But I think for posts and topics there must be another, better solution. No one wants to write their own CSS definition for each ID. :)

    Maybe it is better to use a term from the tagging to create the unique look of some Posts.

    #103527
    Anonymous User
    Inactive

    For specific topics and post you can use:

    get_topic_id();

    post_id();

    Here you’ll find the incomplete documentation:

    https://bbpress.org/documentation/template-tags

    But I think for posts and topics there must be another, better solution. No one wants to write their own CSS definition for each ID. :)

    Maybe it is better to use a term from the tagging to create the unique look of some Posts.

    #98501
    yehgdotnet
    Member

    Done.

    I’ve sent it to your email at bbpress.org. Let me know after you’ve fixed this issue so we can update our finding status (‘unfixed’ to ‘fixed’).

    #103601
    yehgdotnet
    Member

    Done.

    I’ve sent it to your email at bbpress.org. Let me know after you’ve fixed this issue so we can update our finding status (‘unfixed’ to ‘fixed’).

    #36609
    nhorsman
    Member

    Hi,

    I am building a custom bbpress template and on the front page I want to list out the forums and then have 5 topics displayed under each forum.

    So far I have listed the forums and some topics but have strange amounts of posts

    under each topic.

    All froums have over 20 topics but under the first forum (on home page) it only shows 3 topics, 2nd forum shows 13 topics, another shows none and so on.

    anyone have a solution to this?

    Thanks

    #92684
    spinhead
    Member

    If we read bbPress code, we can. What if we’d like to read it in English?

    Honest, I’ll bet there’s a one-sentence description of the difference between ‘key master’ and ‘administrator’

    #98451

    Right, there is no official manual.

    Find the integration guide on this page – http://blog.ashfame.com/bbpress/

    Try this plugin for sync – https://bbpress.org/plugins/topic/wordpress-bbpress-syncronization/

    Create my-plugins folder with 755 permissions in root of bbPress and put plugins there. You can activate them from dashboard after login.

    P.S. – Being to the point doesn’t hurt. Write as much required.

    #103551

    Right, there is no official manual.

    Find the integration guide on this page – http://blog.ashfame.com/bbpress/

    Try this plugin for sync – https://bbpress.org/plugins/topic/wordpress-bbpress-syncronization/

    Create my-plugins folder with 755 permissions in root of bbPress and put plugins there. You can activate them from dashboard after login.

    P.S. – Being to the point doesn’t hurt. Write as much required.

    #36606
    mshap74
    Member

    I am trying to install bbpress and I have gotten to the point where I have created a bb-config.php file and uploaded it. Now when I go to usehistory.net/bbpress instead of installation instructions I get the text of the php file. Can anyone tell me why this might be happening. Thank you.

    #36604
    Anonymous User
    Inactive

    Hi,

    Does any of you the current “trunk”version of bbPress? Since the last version of 9 days (mdawaffe) shows my forum a PHP Warning: “Invalid argument supplied for foreach (@ 2718)”- caused by the file functions.bb-users.php. It seems as if the function expects an array, but not get!?

    A Google search for the error message brings up only my own forum. :) Has anyone found this problem, too?

    My forum url: http://www.mysteria3000.de

    I use the trunk version of bbPress with the Beta 2 of WordPress 3.1.

    Perhaps the reason is a change in handling users in WordPress?

    I am grateful for solutions. :)

    Greetings

    Markus Pezold

    black-forever

    http://black-forever.de

    http://twitter.com/blackforever_de

    #36594

    Topic: Auto Log Off?

    in forum Plugins
    Wiiishy
    Member

    Does BBpress automatically log user off after a certain time? If so how long is the time limit? And can I change it?

    #36586

    Topic: bb_new_user ?

    in forum Plugins
    moffes
    Member

    Hey,

    As I’ve just started a new project that will in in bbPress which I havent worked with I really need some help with this command.

    What im trying to do is to RTX-connect bbPress.

    Using this use

    `

    <?php

    // Below is a very simple PHP 5 script that implements the RPX token URL processing.

    // The code below assumes you have the CURL HTTP fetching library.

    global $bb_current_user, $bbdb;

    $rpxApiKey = ‘XXXXX’;

    if(isset($_POST)) {

    /* STEP 1: Extract token POST parameter */

    $token = $_POST;

    /* STEP 2: Use the token to make the auth_info API call */

    $post_data = array(‘token’ => $_POST,

    ‘apiKey’ => $rpxApiKey,

    ‘format’ => ‘json’);

    $curl = curl_init();

    curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);

    curl_setopt($curl, CURLOPT_URL, ‘https://rpxnow.com/api/v2/auth_info&#8217;);

    curl_setopt($curl, CURLOPT_POST, true);

    curl_setopt($curl, CURLOPT_POSTFIELDS, $post_data);

    curl_setopt($curl, CURLOPT_HEADER, false);

    curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);

    $raw_json = curl_exec($curl);

    curl_close($curl);

    /* STEP 3: Parse the JSON auth_info response */

    $auth_info = json_decode($raw_json, true);

    if ($auth_info == ‘ok’) {

    /* STEP 3 Continued: Extract the ‘identifier’ from the response */

    $profile = $auth_info;

    $identifier = $profile;

    if (isset($profile)) {

    echo $photo_url = $profile;

    }

    if (isset($profile)) {

    $name = $profile;

    }

    if (isset($profile)) {

    $email = $profile;

    }

    if ($email || $name ) { bb_new_user(“$name”, “$email”,””,0); echo “grattis $name du har registerat ett konto med $email”; } ยด

    The problem im getting is that it doesnt create any new user and im not even getting an error msg.

    Can someone help me get through this problem.

    Later on ill make it work just like openID does, so you dont have to login, but this is it for now. Also as the request is pretty high on facebook connect ill make this a plugin as soon as its ready.

    #98442

    bbPress #ftw

    all your mentioned needs can be satisfied easily by bbPress :)

    #103542

    bbPress #ftw

    all your mentioned needs can be satisfied easily by bbPress :)

    #98448
    Double Stuff
    Member

    Thanks for the replies

    Aren’t there instructions somewhere on how to do what you described.

    I do not have a “Options” Menu or any menus or links except the 2 I described above.

    Could you provide a link to the instructions for doing the sync and set up.

    I have a feeling I am logged into the bbpress forum members area. I logged out of WP and forum then tried to sign in again only in bb-admin, but still land up at the same place url/forum.

    Thank you!

    #103548
    Double Stuff
    Member

    Thanks for the replies

    Aren’t there instructions somewhere on how to do what you described.

    I do not have a “Options” Menu or any menus or links except the 2 I described above.

    Could you provide a link to the instructions for doing the sync and set up.

    I have a feeling I am logged into the bbpress forum members area. I logged out of WP and forum then tried to sign in again only in bb-admin, but still land up at the same place url/forum.

    Thank you!

    #98441
    DigitalGdn
    Participant

    If you use WordPress, then bbPress is going to be a really good long-term option as it will soon mean the best integration with your website.

    My main experience is with both phpBB and SMF and they feel like archaic pieces of software that are a pain to integrate and design for. Both also have big spam problems unless you customise the registration form. I think bbPress is protected by Akismet which is a different league to what the others have.

    Another option similar to bbPress is Vanilla http://vanillaforums.org

    My current preference is bbPress, but only if you don’t need to install too many plugins as it increases the chance of things going wrong when updating.

    #103541
    DigitalGdn
    Participant

    If you use WordPress, then bbPress is going to be a really good long-term option as it will soon mean the best integration with your website.

    My main experience is with both phpBB and SMF and they feel like archaic pieces of software that are a pain to integrate and design for. Both also have big spam problems unless you customise the registration form. I think bbPress is protected by Akismet which is a different league to what the others have.

    Another option similar to bbPress is Vanilla http://vanillaforums.org

    My current preference is bbPress, but only if you don’t need to install too many plugins as it increases the chance of things going wrong when updating.

    #98440
    Willabee
    Member

    1. Some plugins need some editing, but its usually minimal and with details on how to. Most plugins however do not need editing or knowledge of php.

    2. Right now Automattic is working on a bbPress plugin for WordPress their main blogging platform. I’m guessing most support will go too that. But some support remains on the official bbpress.

    3. All populair forum software has spam problems.

    4. Core changes arent neccesairy, just hook it in. Although this will require some php knowledge.

    #103540
    Willabee
    Member

    1. Some plugins need some editing, but its usually minimal and with details on how to. Most plugins however do not need editing or knowledge of php.

    2. Right now Automattic is working on a bbPress plugin for WordPress their main blogging platform. I’m guessing most support will go too that. But some support remains on the official bbpress.

    3. All populair forum software has spam problems.

    4. Core changes arent neccesairy, just hook it in. Although this will require some php knowledge.

    #98447
    Willabee
    Member

    You probably have to sync wordpress and bbpress roles, havent done it in a while though, so cant remember exactly how it worked, just go into bb-admin and its in the options somewhere.

    #103547
    Willabee
    Member

    You probably have to sync wordpress and bbpress roles, havent done it in a while though, so cant remember exactly how it worked, just go into bb-admin and its in the options somewhere.

Viewing 25 results - 40,051 through 40,075 (of 64,515 total)
Skip to toolbar