Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 37,426 through 37,450 (of 64,515 total)
  • Author
    Search Results
  • #95468
    kai920
    Member

    @kai920 – Go to the tools/recount area of your stand alone installation, and run all of the recount functions there (just to be on the safe side.)

    I wrote a quick script (took me a lot longer than it should have) to re-populate the post_position column. If anyone needs it let me know. My ’empty first post’ problem is solved. Thanks everyone who helped!

    wsokc
    Member

    Hi,

    I dont know what happen, currently I found my bbpress (1.0.3) admin could not open the user admin page with error “You are not allowed to do this here”.

    Currently my bbpress template was integrated with wordpress they installed separately.

    You can look the page here: http://teknoinfo.web.id/forum

    previously it works fine, after i do some changes regarding bug in the count bbpress from here http://bbpress.org/forums/topic/problems-on-recount-tools-after-upgrade-102-to-103, not sure its related or not.

    From the error_log i found:

    [28-Apr-2011 02:36:13] ERROR: bbPress database error – “Table ‘latqueir_teknoforum.bb_privatemessages’ doesn’t exist” for query “SELECT * FROM bb_privatemessages” via caller “bb_activate_plugin, include, bbPM->bbPM, bbPM->update”

    [28-Apr-2011 10:33:17] ERROR: bbPress database error – “Table ‘lat_teknoforum.tekno_users’ doesn’t exist” for query “SELECT * FROM wp_users WHERE user_login in (‘raffaell’);” via caller “require_once, require_once, require_once, bb_current_user, bb_get_current_user, WP_Auth->get_current_user, WP_Auth->validate_auth_cookie, WP_Users->get_user”

    [03-May-2011 06:24:52] PHP Fatal error: Call to a member function get_terms() on a non-object in /home7/latqueir/public_html/teknoinfo/forum/bb-admin/includes/functions.bb-recount.php on line 167

    Is there anyone experience this ?

    #106270
    scylderon
    Participant

    Pretty please!

    #106231

    In reply to: Changing Profile Link

    scylderon
    Participant

    Really, no way to redirect to non-bbpress profile?

    Anointed
    Participant

    I don’t want to hijack the thread where JJJ and I were talking about the template locations filling up my theme root, so here is a new post.

    I was playing around with an idea, and before I go to far with it, I was curious what you think.

    You had mentioned that this type of system was expressly forbidden by wp, due to having to search all folders for files before proceeding. That would be a nightmare, but here I am defining the folders up front, so it ‘should’ be just as fast, though I am unsure of how to bench test it.

    If we could get a system in place like this, then it would clean up the theme area considerably.

    I am using the same logic on a number of client sites and it works perfectly, though they are not using bbpress or buddypress. I simply use it for my own custom post-types.

    example:

    public function template_include( $template ) {
    if ( get_query_var('post_type') == $this->post_type ) {

    if ( is_single() ) {
    if ( $single = locate_template( array( $this->post_type.'/single.php') ) )
    return $single;
    }
    if ( is_paged() ) {
    if ($paged = locate_template( array( $this->post_type.'/archive.php') ) )
    return $paged;
    }
    else { // loop
    return locate_template( array(
    $this->post_type . '/index.php',
    $this->post_type . '.php',
    'index.php'
    ));
    }

    }
    return $template;
    }

    This would completely change the structure of bbpress template names, but could potentially allow me to store everything inside 3 folders ‘forums/topics/replies’.

    I’m sure there would be much more to it than that….

    What do you think of this type of approach?

    *right now it is quite generic and would effect all custom post_types, which would not be good. Changing to be bbpress specific would prob just be a matter of defining types in the array vs. all

    I’m really asking because even though I know I could get this to work, I am quite curious how this would end up effecting buddypress when combined with bbpress.

    Would a system like this be a deal breaker?

    Good idea or bad?

    #105987

    John,

    Question (not advance user so this might not be the smartest question) –

    I have a standard wordpress install (just added bbpress) and using a child theme, based on what you wrote above (focusing on option 2), which files and/or folders should I copy into which folder?

    bbp-twentyten into themes?

    some files into my current child theme?

    Another option?

    Thanks in advanced and keep up the amazing work.

    Kalman

    #100852
    kmessinger
    Member

    Go to the wp dashboard/pages and create a page. On the right side is a box for attributes/template. Scroll until you find the template you need.

    #105952
    kmessinger
    Member

    Go to the wp dashboard/pages and create a page. On the right side is a box for attributes/template. Scroll until you find the template you need.

    Rev. Voodoo
    Member

    I have the same issue, I was just coming to report, but found this in a search. you can check it out on voodoopress.com if you like

    #106242
    Mark Barnes
    Member

    Depending on your theme you should be able to add a filter to ‘body_class’.

    <edit>Actually, you shouldn’t need to. bbPress already adds to the body class.</edit>

    #38579
    leemon
    Member

    Hi!

    I installed the new bbpress plugin and I’d like to style the forum pages using CSS. I use a three column theme and I managed to remove the sidebar in the forum pages through the WP theme functions.php file, but I don’t know how to enlarge the content area just in these pages since the body class attribute doesn’t specify that these are forum pages, so I cannot do something like this:

    .forums .entry-content {

    width: 100%;

    }

    Any help would be appreciated!

    Thanks in advance

    #100851
    Fartlek
    Member

    Currently there is no widget for signup, but you can make a page and use the “bbPress – User Registrer” template.

    Where do I find the “bbpress – User Register” template?

    #105951
    Fartlek
    Member

    Currently there is no widget for signup, but you can make a page and use the “bbPress – User Registrer” template.

    Where do I find the “bbpress – User Register” template?

    #106314
    Anointed
    Participant

    I am not running svn, but rev. 3326. I do a manual update each day just to catch up. For instance, you made tons of commits last night so I need another update. Dad is quite sick today so I have to take off for a bit, but will install new vs. when I return home tonight.

    For the most part, I have not yet gotten into looking for bugs as I am 100% focused on building a custom template. For now I am not going crazy until things are more stable. It is a tedious job recreating the theme templates on each revision, which means I am leaving the internal logic alone for now.

    Once I have a better grasp of what is truly going on, then I’ll post more reports. These reports are just the basic stuff that I am coming across while picturing what I want my bbpress to function like.

    Anointed
    Participant

    I’ll send you a link to my demo forum when you wake up LOL.

    I saw all the new commits in the middle of the night, amazing…

    #38608
    Fartlek
    Member

    Is there a way to apply the Human Test plugin to the bbpress plugin?

    Thanks.

    #100857

    This is such a silly issue, but for new users (myself) included it seems to be troubling. I have 2.0.beta1 on our WP site (version 4). I changed my permalink structure from the default to the and created a page called forums.

    Yet still the forum I have created with bbpress does not appear on my WP site. I can see the forum from the admin side. Here are the two urls in case that helps – many thanks!

    (forum) http://storytelling.concordia.ca/storiesmatter/forums/forum/stories-matter

    (site where forum should be) http://storytelling.concordia.ca/storiesmatter/forums

    #105957

    This is such a silly issue, but for new users (myself) included it seems to be troubling. I have 2.0.beta1 on our WP site (version 4). I changed my permalink structure from the default to the and created a page called forums.

    Yet still the forum I have created with bbpress does not appear on my WP site. I can see the forum from the admin side. Here are the two urls in case that helps – many thanks!

    (forum) http://storytelling.concordia.ca/storiesmatter/forums/forum/stories-matter

    (site where forum should be) http://storytelling.concordia.ca/storiesmatter/forums

    #95467
    johan.ruda
    Participant

    Is there any way of setting permissions for users at this time (with the bbpress 2 beta)?

    As in, people who are not logged in should not be able to read the forums.

    #95466
    kai920
    Member

    Thanks JJJ, I tried the recount on the standalone again just to be safe but it does not appear to have affected the post_position column. Every row still says 0.

    (I got “Removing deleted topics from user favorites… Failed!” but I assume this does not have anything to do with my issue.)

    Do I need to write a simple script that looks at each topic_id, ordered by post_time, and then insert 1, 2, 3, 4… etc. into post_position? Or should the recount have taken care of this?

    I guess at this point this is not bbpress 2.0 related (or is it?) so if I should create a new topic on this, please let me know.

    #106269

    Should be an easy adaptation. Would be awesome of someone to port that over.

    #95465

    @kai920 – Go to the tools/recount area of your stand alone installation, and run all of the recount functions there (just to be on the safe side.)

    Any chance I can get some screen shots of what’s going on? Some of this is anticipated behavior.

    #106302

    There’s are a few ‘context sensitive widget’ type plugins available for WordPress that would probably be the best places to start.

    #106313

    Are you using Beta 1, or using the SVN checkout? Since you’re actively finding smaller bugs as you go, it’d be helpful if it were possible for you to switch to running the SVN checkout and get the updates as I commit them.

Viewing 25 results - 37,426 through 37,450 (of 64,515 total)
Skip to toolbar