Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 61,026 through 61,050 (of 64,411 total)
  • Author
    Search Results
  • #58391
    Kahil
    Member

    I would appreciate any help. Whichever is the easiest and will work the best. I’m fairly new to coding myself, but I learn fast. yourkahil.com is where I’m doing this. I have a lil login form in that first box in the sidebar and once you login, it has a couple links now, like logout. I would like to be able to show the user’s avatar with the “upload avatar” plugin, the private message link(s) from the “private message” plugin.

    Thanks for the help!

    Kahil

    #58359
    ganzua
    Member

    It works!!!!!!

    The working whole code is;

    function wp_registro( $before = '<li>', $after = '</li>' ) {

    if ( ! is_user_logged_in() ) {
    if ( get_option('users_can_register') )
    $link = $before . '<a href="' . get_option('siteurl') . '/wp-login.php?action=register">' . __('Register') . '</a>' . $after;
    else
    $link = '';
    } else { if( current_user_can('activate_plugins') ) {
    $link = $before . '<a href="' . get_option('siteurl') . '/wp-admin/">' . __('Site Admin') . '</a>' . $after;}

    else {global $current_user; $link = $before . '<a href="' . get_option('siteurl') . '/bbpress/profile.php?id=' . $current_user->ID . '">' . __('Profile') . '</a>' . $after;
    }
    }

    echo apply_filters('register', $link);
    }

    Now when any user logs in, wordpress sidebar displays a link to his profile in bb, but when is the admin the one who logs in he get a link to wp control panel. :)

    Thanks a lot fel64!

    #58357
    fel64
    Member

    Try this one.

    global $user_ID;
    get_currentuserinfo();

    ... bbpress/profile.php?id=' . $user_id . '">' . ...

    #58356
    ganzua
    Member

    These two do not display anyting either;

    /bbpress/profile.php?id=' . ID . '">'

    /bbpress/profile.php?id=' . $user->ID . '">'

    #58355
    ganzua
    Member

    Nop, it doesn’t work; this line

    global $user; $link = $before . '<a href="' . get_option('siteurl') . '/bbpress/profile.php?id=' . $user . '">' . __('Profile') . '</a>' . $after;

    links to /bbpress/profile.php?id= it is not catching the user id

    #1958
    thierryyyyyyy
    Participant

    I made for my bbPress forum (http://forum.2diabolos.com) a plugin that inserts Adsense or YPN code in the posts.

    Lots of configuration parameter (not show to administrators, positionning, number of adsense block ….);

    easy to install and configure, with a administration panel (in Themes menu)

    #55080
    peter-b
    Member

    Sorry – this was a duplicate – mod please delete)

    #55079
    peter-b
    Member

    Worked for me, although initially highlighted another @strpos error in the functions.php script.

    However setting is bozo to 1 in the admin pages creates the appropriate row in the meta table for the user, setting it back to zero deletes the row, rather than setting the value to zero (which is presumably why the box remains blank) while it works, it seems an odd way of doing it!

    (Just realised I am being critical of someone else’s work without the ability to do it better myself – my apologies – I suppose I ought to get down a book on PHP and try and actively contribute rather than just fault find…)

    #57912

    In reply to: Bbpress themes

    bbolman
    Participant

    Make sure that you insert all the files from the folder into your /my-templates/ file. The answer that makes most sense to me is that you are missing a few of your files. Let me know if that makes any difference. It’s late here, so I may be making things up.

    #50274
    fel64
    Member

    You’re running this on WP.com? How’d you manage that? 😮

    Anyway, you need this fix because the default setting should indeed be 0. Once the fix is applied, you also have to go to each affected user and set their status to 0 again.

    #58032

    In reply to: bbSync

    starrett
    Member

    fel64,

    Thanks for all the hard work you put in on this. I just installed the latest (I assume) version of bbsync on my site, and I’m getting the following error message when I try to save a post in WP:

    “got opshuns

    got bb

    got currentuserinfo

    Fatal error: Call to a member function on a non-object in /path/to/my/forums/bb-includes/functions.php on line 607″

    I added “global $bbdb;” to my bbpress config.php like you suggest, and it didn’t seem to make any difference. As well, when I use the “<?php felbbreplies(); ?>” call on my indie pages I get the following:

    “doin’ felwptobb

    pre-query in felwptobb. bb_topicmeta = bb_topicmeta

    felwptobb post-query, topic_id = 2

    ~ 21:36 15th Jun 07 admin

    blah blah blah this is a test reply

    Fatal error: Call to undefined function: get_topic() in /home/.reactor/starrett/lifthill.com/wp/wp-content/plugins/bbsync.php on line 432″

    So it is bringing in and displaying the replies, but then it gives the error.

    I’m running WP 2.2 and BB 0.8.1.

    Thanks!

    #57911

    In reply to: Bbpress themes

    htheeditor
    Member

    Hey Trent,

    The one theme for this blog kinda doesn’t work for me…check this out.

    http://bbpress.proyectoquisqueya.net/UPLOADS/bbpress.gif

    Am I doing something wrong?

    #50272
    fel64
    Member

    I don’t know about chosen passwords.

    Bugs go to http://trac.bbpress.org.

    No permanent deletion yet.

    No locking forums.

    Yes. If is_bozo is 1, that is true, and the user is considered a spammer. 0 means they are not a bozo/spammer.

    Several other whats you have found?

    #58390
    fel64
    Member

    Yeah. That’s because WP doesn’t load bb and all the associated functions. You have two options: you could set up wp to always load bb, or you could recreate the functionality yourself. The first could be tricky and fiddly, the latter means coding the PHP yourself. We can help with either.

    #58389
    Kahil
    Member

    Those two plugins don’t help at all. Basically if you have a lil php code that you have in your bbpress theme to display anything from display names, profile info or the avatar when using upload avatar plugin….when you paste that code on the wordpress side you get an error.

    #55212
    thierryyyyyyy
    Participant

    If bbPress includes a “Plugin” menu or an “Option” menu, it would be natural for all new plugin to have their submenu in it.

    Do you think I can ask that in TRAC ?

    #58319

    In reply to: Theme not working

    simon551
    Member

    I was able to find this in past discussion. I’m posting the fix here in case anyone else needs it:

    https://bbpress.org/forums/topic/700/page/2?replies=64#post-4936

    from Trent, but code fixed up a little by Nanome:

    “Create a file called whatever you want, but I recommend path-to-url.php

    and put the following in it and upload it to /my-plugins/ directory:”

    -Trent

    Nanome’s fix:

    <?php

    function fix_bb_path_to_url( $url ) {

    $url = str_replace(array(‘//’, ‘\\’, ‘\’), array(‘/’, ‘\’, ‘/’), $url);

    return preg_replace( ‘|:/([^/])|’, ‘://$1′, $url );

    }

    add_filter( ‘bb_path_to_url’, ‘fix_bb_path_to_url’, 1, -1 );

    ?>

    #58351
    ganzua
    Member

    Hi fel64, thanks for the explanation.

    I tested and the function works but there are two errors in the code.

    First, the id user line displays “21” for every user

    global $id; $link = $before . '<a href="' . get_option('siteurl') . '/bbpress/profile.php?id=' . $id . '">' . __('Profile') . '</a>' . $after;

    Next, if( current_user_can('administrate') doesn’t seem to work because it display a link to bbpress profile instead to /wp-admin/

    This is the whole function so far;

    function wp_registro( $before = '<li>', $after = '</li>' ) {

    if ( ! is_user_logged_in() ) {
    if ( get_option('users_can_register') )
    $link = $before . '<a href="' . get_option('siteurl') . '/wp-login.php?action=register">' . __('Register') . '</a>' . $after;
    else
    $link = '';
    } else { if( current_user_can('administrate') ) {
    $link = $before . '<a href="' . get_option('siteurl') . '/wp-admin/">' . __('Site Admin') . '</a>' . $after;}

    else {global $id; $link = $before . '<a href="' . get_option('siteurl') . '/bbpress/profile.php?id=' . $id . '">' . __('Profile') . '</a>' . $after;
    }
    }

    echo apply_filters('register', $link);
    }

    did I made a mistake in the second “else” ?

    #58388
    Pravin Paratey
    Participant
    Pravin Paratey
    Participant

    Could you just post the relevant parts of css here? By relevant, I mean the all-enclosing div tag and the 3 divs for the 3 columns. I’m thinking it’s a padding + width issue. IE and firefox handle these differently. For one, Width = width + padding. For the other Width is width without the padding.

    #1957
    Kahil
    Member

    How do I insert info from bbpress into wordpress? I would like to insert the “edit profile” link and some other stuff into my wordpress sidebar.

    Thanks

    #58350
    fel64
    Member

    Yeah, you could copy the wp_register() function into your functions.php file, modify it (and its name), and then use the modified function instead.

    Actually it should be

    global $id;

    Sorry. And for the last line, you have the right idea but you have to use the string concatenation (putting together into one) operator: the dot . This part is gonna be a bit more complicated, but solution at the bottom.

    Strings are indicated by using apostrophes ' ... ' or quotation marks " ... ". If you start a string with one of them, the other one doesn’t affect anything. Variable names inside the quotation marks " will be replaced with their value, but inside ' they will not. The strings here are made using apostrophes ', so you can have valid HTML code without problems: '<a href="..."' works, but "<a href="..."" doesn’t. But that means variable names inside the string won’t get replaced with their value. So you have to concatenate the strings, like this: '<a href="...' . $id . '"> ...';

    $link = $before . '<a href="' . get_option('siteurl') . '/bbpress/profile.php?id=' . $id . '">' . __('Profile') . '</a>' . $after;

    Should work. Bit tired and therefore also inclined to ramble; sorry about that.

    #58349
    ganzua
    Member

    “you could just copy all of wp_register() into your theme (everything from function wp_register() { to the final }”

    -> do you mean copying in my theme functions.php file and then calling the fuction in the sidebar?

    “WordPress sets $id to be the user ID. It should be available, so just try it. If it’s not, you will need to put global: $id; in the line of code above it, so it knows you mean the global variable $id and not a new one.”

    -> I didn’t understand this. Do you mean something like this?

    global: $id;

    $link = $before . '<a href="' . get_option('siteurl') . '/bbpress/profile.php$id">' . __('Profile') . '</a>' . $after;

    #49955

    In reply to: En español

    ganzua
    Member

    Tenemos una baja!

    Bueno a mi me falta poco ya con el bbpress, lo tendre que traducir a mano porque tras la integracion no hay manera de cargar un .mo pero da igual.

    Gracias por la ayuda y un saludo!

    fel64
    Member

    That’s strange with the email. Thanks for the zip, but I’m having trouble with my dev server and I’d rather not put things on my public server. Can you open an page of this on your browser, say the forum index, go to File > Save, save everything and give it to me?

Viewing 25 results - 61,026 through 61,050 (of 64,411 total)
Skip to toolbar