Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'test'

Viewing 25 results - 7,351 through 7,375 (of 11,580 total)
  • Author
    Search Results
  • #104601
    [removed]
    Participant

    Thanks, Ben L.

    I’ve decided to just rewrite the LDAP plugin to connect with mediawiki’s database. Seems to be working so far, when I’ve tested it some more I’ll release it officially.

    #99514
    zaerl
    Participant

    Probably you have deleted some posts here and there. Try to recount everything from the admin page (bb-admin/tools-recount.php). I have tested get_topic_page_links (the function that generate links) and I don’t see problems.

    Your count says 1533 posts but 35*44 + 7 = 1547.

    Also add:

    .post img, #post_content img {
    max-width: 450px;
    }

    to your CSS.

    #104614
    zaerl
    Participant

    Probably you have deleted some posts here and there. Try to recount everything from the admin page (bb-admin/tools-recount.php). I have tested get_topic_page_links (the function that generate links) and I don’t see problems.

    Your count says 1533 posts but 35*44 + 7 = 1547.

    Also add:

    .post img, #post_content img {
    max-width: 450px;
    }

    to your CSS.

    #99428
    zaerl
    Participant

    Delete tags too.

    #104528
    zaerl
    Participant

    Delete tags too.

    #99426
    1onely
    Member

    ok but when i remove code about latest discussions in front-page.php template >> show tags top forums !!

    #104526
    1onely
    Member

    ok but when i remove code about latest discussions in front-page.php template >> show tags top forums !!

    #99442
    Mark Plumley
    Member

    I use the following four way spam stopper:

    Approve User Registration

    bbCaptcha

    Akismet

    Human Test for bbPress

    We have had minimum issues at our bbpress forums

    #104542
    Mark Plumley
    Member

    I use the following four way spam stopper:

    Approve User Registration

    bbCaptcha

    Akismet

    Human Test for bbPress

    We have had minimum issues at our bbpress forums

    #99424
    Ben L.
    Member

    If you edit your front-page.php template (make a copy and edit the copy), you can remove the code about latest discussions.

    #104524
    Ben L.
    Member

    If you edit your front-page.php template (make a copy and edit the copy), you can remove the code about latest discussions.

    #99423
    intimez
    Participant

    It shows the latest posts inside the forums, why you want to remove it?

    #104523
    intimez
    Participant

    It shows the latest posts inside the forums, why you want to remove it?

    #99422
    1onely
    Member

    Anyone ?

    #104522
    1onely
    Member

    Anyone ?

    #37517
    1onely
    Member

    Hello

    I want to Only forum not Latest Discussions

    Remove all Latest Discussions

    Please

    #37491
    kadas99
    Member

    Hi, i installed all, (wordpress-bbpress) in the same directori, (/test/wordpress – /test/bbpress), and when i try get into the admin panel of bbpres i only get a redirection to the index of my forum. (i put /test/bbpress/bb-admin/index.php and i will be redirected to /test/bbpress/index.php).

    What i am doing wrong??

    So much thanks!

    #92812
    fostertime
    Member

    Any idea how to remedy this issue?

    I have tried everything and cannot get passed this. Having the same exact problem after changing the TZ to UTC-5.

    Any help would be greatly appreciated!

    FYI, using the latest version 1.0.2

    #99348

    That’s because there’s a bug in the plugin. Or rather the plugin was probably written for an earlier version of bbpress.

    To fix the “redirect” issue, you need to edit avatar-upload.php and change line 7 from:

    bb_auth(); // logged in?

    to:

    bb_auth( 'logged_in' ); // logged in?

    Now it’s off to do more testing.

    #104448

    That’s because there’s a bug in the plugin. Or rather the plugin was probably written for an earlier version of bbpress.

    To fix the “redirect” issue, you need to edit avatar-upload.php and change line 7 from:

    bb_auth(); // logged in?

    to:

    bb_auth( 'logged_in' ); // logged in?

    Now it’s off to do more testing.

    #94959
    ch8rt
    Member

    I’ve solved my early issue, lord knows what it was but troubleshooting something else it suddenly just appeared? Thanks.

    With regards permalinks I’m having a issues with my current setup /%category%/%postname%/ in that nothing shows at…

    /forums/

    /forums/forum/

    but I can jump straight to a forum created in admin

    /forums/forum/test-forum/

    Once there I can create and reply to topics has I should.

    I’m using the base settings so Forums should be the base. Going to /forum/ however shows an edit button. Just nothing else.

    #94956
    Willabee
    Member

    The login problem isn’t fixed yet?

    I installed the latest and it’s redirecting me to the /login slug again. I don’t mind hacking it out again, just wondering.

    #99331

    Makes sense. If you’re using it as a stand alone, you can continue to do so if you’re happy with it’s features as we’ll be continuing support for the 1.0/1.1 branches of code for the conceivable future. If you’d like to run the latest and greatest and have a need for WordPress integration, then the in-development plugin version is the way to go.

    #104431

    Makes sense. If you’re using it as a stand alone, you can continue to do so if you’re happy with it’s features as we’ll be continuing support for the 1.0/1.1 branches of code for the conceivable future. If you’d like to run the latest and greatest and have a need for WordPress integration, then the in-development plugin version is the way to go.

    #94952
    Ricardo
    Participant

    Hi everyone!

    I don´t know wether to post this here or start a new thread, if the mods find it unsuitable i will open a new one.

    I just installed the bbpress pluggin on a test site, just trying to figure things out and start learning while its being developed, one of the first things i wanted to do was adding a icon to the each forum in the forum list and since the new bbpress uses “wordpress” i went and added a thumbnail to each forum at:

    Admin panel>>>Forums>>> and edited/added a thumbail to each forum using the post thumbnail function

    but it wasnt showing up so as newbie i used firebug to find where i could add that in and i found;

    bbp-themesbbp-twentytenloop-bbp_forums.php

    and modified:

    <td class=”bbp-forum-info”>

    ” title=”<?php bbp_forum_title(); ?>”><?php bbp_forum_title(); ?>

    to

    <td class=”bbp-forum-info”>

    <?php the_post_thumbnail(array( 25,25 ), array( ‘class’ => ‘alignleft’ )); ?>” title=”<?php bbp_forum_title(); ?>”><?php bbp_forum_title(); ?>

    here’s a link to the code on pastebin:

    http://pastebin.com/bNLPQj2R

    it worked but because i uploaded the images at 150×150 the thumbs were being displayed at 150×150 eventough i specified that it should be 25×25 in the code.

    Am i doing something wrong? to quicly fix it i reuploaded the images at 25×25 and they’re showing ok now.

    sorry if i’m “sounding” complicated but i cant explain it better

    here’s the live bbpress instalattion:

    http://www.ricardouk.com/bbpress/forum/

Viewing 25 results - 7,351 through 7,375 (of 11,580 total)
Skip to toolbar