Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 60,851 through 60,875 (of 64,451 total)
  • Author
    Search Results
  • #58639
    gspark
    Member

    for some reason this code although works in pulling in WP header/footer i notice that i cannot access the admin, is this the correct code ?

    $bb->WP_BB = true;

    require_once( ‘../wp-blog-header.php’ );

    update: ok i worked it out, needed the full path :)

    #58779
    Trent Adams
    Member

    I changed the title to be more ‘user friendly’ if you don’t mind! I will test it out for you as it seems like a great plugin! As well, don’t forget to add it to the plugin site!

    https://bbpress.org/plugins/add/

    Trent

    #2031
    Rhys Wynne
    Participant

    Hi, I have recently written a plugin for bbpress to show the top posters within a forum. I’ve tested it a fair amount (as much as a man with a one person forum can), and I think it is all there. Feedback and comments will be well received.

    To read more and download, please click here

    #58776
    watchfor1
    Member

    I re-uploaded all the bbpress again. I have been able to post.. I will monitor and see if people can login and post. As they were not able to do that either.. I believe this fixes it..

    #2030
    watchfor1
    Member

    ‘blockquote’

    Parse error: parse error, unexpected T_IF in /home/warnusac/public_html/warn-forums/bb-post.php on line 13

    ‘/blockquote’

    ‘strong’ Above is the error on my bbpress when I try to post.. what script, line, or other do I need to fix this ‘/strong’

    #50606

    In reply to: hello from Russia

    Trent Adams
    Member

    Is there any leads here?

    bbPress International

    Trent

    #50605

    In reply to: hello from Russia

    ganges
    Member

    Sad, Agop, but Yours translation is not a .po file, but manually translated inline source (as far as i can see). Its prevent me to use current version of bbpress.

    Anyone have ru.po file?

    Thanx

    #56538

    In reply to: Strut Your bbPress!

    Trent Adams
    Member

    You guys know that you can start your own threads for your sites right ;)

    Trent

    #2027
    bagizoltn
    Member

    Dear Editors,

    i really appreciate the bbpress and the WP script as well. Some month ago the Hungarian translation of the WP has released, and i wonder maybe a this forum script would be quite popular in my country.

    I would like to ask whether i may translate this sript and release it at my own website, of course placing direct link pointing back to the mother site.

    Thank you anyhow!

    Bagi Zoltán

    dmitriid
    Member

    Available here: http://dmitriid.com/files/projects/skins/bbpress-mamut.zip

    Used here: http://erlang.dmitriid.com/forum/

    It may not look much, but i haven’t added any backgrounds or anything. Feel free to adjust it for yourself.

    This template is derived from three-column flexible layout available at

    http://www.webproducer.at/flexible-layout/

    NOTICE. The template assumes you have the following plugins installed:

    * bb-ratings.php, http://bbpress.org/plugins/topic/6

    * since-last-visit, http://bbpress.org/plugins/topic/30

    * online-list, http://bbpress.org/plugins/topic/24

    If you don’t have those installed, remove corresponding function calls from the template

    #58583

    In reply to: Slugs and Duplicates

    You can use the script attached to that ticket: https://trac.bbpress.org/ticket/671

    It will only work once you upgrade to the next version of bbPress (it’s not out yet :) ) or if you’re running the “unstable” code in the repository.

    Follow the instructions in the last comment.

    #58710

    Make a new file in your my-plugins/ directory with the following code in it. Then activate the plugin in your bbPress’ admin panels.

    <?php
    /*
    Plugin Name: No ?replies
    Description: Get rid of the ?replies=# ugliness in topic links
    Plugin URI: https://bbpress.org/forums/topic/getting-rid-of-replies
    Author: fel64
    Version: 1.0
    */

    remove_filter( 'get_topic_link', 'bb_add_replies_to_topic_link' );

    ?>

    #58638
    gspark
    Member

    i figured just to pull in header and footer that way if any theme or navigation modifications are done on WP end it should refelct on the bbpress end too, looking to switch nav bar when user is logged in

    snakefoot
    Member

    Ok one is seen as Administrator until browing to the WordPress site, where the bbpress-inegration-plugin is activated and the rights are changed to the default role.

    Still weird that no usermeta means Admin-role in WP.

    snakefoot
    Member

    Found out that bbpress-intergration-plugin in WordPress correctly updates user-metadata when going through WordPress-login. But when using the bbpress-login, then it just creates a cookie and when browsing to the WordPress site, then one has Admin-priviledges because user-metadata is non-existing (quite odd actually).

    snakefoot
    Member

    I’m using bbPress 0.82 and every time I create a user then it gets the role WP role as Administrator (Eventhough the default role is subscriber). I’m not using any plugins in WP to handle role-management.

    Guess I will have to redirect user-registration in bbPress to WP, to avoid this issue.

    #56537

    In reply to: Strut Your bbPress!

    Kahil
    Member

    I have one over at yourkahil.com/forum

    still in the works as I am integrating my custom wordpress theme into it…

    #56705

    In reply to: Plugin: Avatar Upload

    Kahil
    Member

    For those of you who have your wordpress and bbpress installs together and would like have the avatars display in the wordpress side as well…

    Here is some code you can add… This is what I use in the sidebar over at yourkahil.com

    <?php global $user_identity;

    get_currentuserinfo();

    if ($user_identity == ”) {

    echo(‘Welcome Guest’);

    } else {

    echo(‘<img src=”/forum/avatars/’ . strtolower($user_identity) . ‘” alt=”avatar” />’);

    }

    ?>

    This will work if you would like to display the avatar outside of the loop in bbpress as well. All you have to do is change the image source line to reflect where you have your avatars stored…

    Hope that helps some people!!!

    #58724
    joladana
    Member

    Yes, he only registered once. If logging in to one should log you into both, then things definitely aren’t working the way they’re supposed to.

    The way things are set up is the following:

    WordPress is installed in my root HTTP directory.

    BBPress is installed in a subdirectory called “forums”.

    You can see everything in action here (put on your sunglasses, it’s bright.):

    forums at http://forums.audreysargent.com

    Need more info?

    Thanks for the help. :)

    #58409
    Kahil
    Member

    an update…

    I didn’t know until I tried, but you can leave that .jpg out and it will load any image file that matches that query.

    #58637
    Kahil
    Member

    It can also be done by making the default bbpress theme look like your wordpress theme. I am almost done doing just that over at yourkahil.com

    For the most part everything is the same, only a handful of changes/tweaks to the template files.

    #58737
    fel64
    Member

    I assume that this is because of an incorrect post id in https://plugins-dev.bbpress.org/browser/bb-moderation-hold/trunk/moderation.php (lines 317, 330 are key). Perhaps someone else can figure it out but I’m not familiar with the plugin. so1o may be more likely to see it on the plugin page: https://bbpress.org/plugins/topic/49?replies=1

    #58693
    atomastro
    Member

    Tested and experiencing the bug with no plugins on both WP 2.2.1 and WPMU 1.2.3. Only happens if wp-blog-header.php is inlcuded in the config.php for bbPress.

    Might it be some server setting?

    Currently experiencing on three different machines, very similar setups though. I will test this on a different machine/setup tonight.

    #2025
    serimu
    Member

    I just installed this plugin and I got this error. I am using BBpress version 0.8.2.1, integrated with wordpress.

    *****

    bbPress database error: [You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ” at line 1]

    UPDATE bb_forums SET posts = posts + 1 WHERE forum_id =

    Warning: Cannot modify header information – headers already sent by (output started at /home/user/public_html/site/forum/bb-includes/db.php:151) in /home/usr/public_html/site/forum/bb-includes/pluggable.php on line 168

    #2024
Viewing 25 results - 60,851 through 60,875 (of 64,451 total)
Skip to toolbar