Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'code'

Viewing 25 results - 19,026 through 19,050 (of 32,499 total)
  • Author
    Search Results
  • #99481

    In reply to: Weird header code

    zyadsherif
    Member

    Oh I see … that’s good to know, thanks a lot :-) !!

    #104581

    In reply to: Weird header code

    zyadsherif
    Member

    Oh I see … that’s good to know, thanks a lot :-) !!

    #99480

    In reply to: Weird header code

    zaerl
    Participant

    No. You have a very modern installation of PHP and there is some code in bbPress that now it deprecated. Nothing to worry about.

    #104580

    In reply to: Weird header code

    zaerl
    Participant

    No. You have a very modern installation of PHP and there is some code in bbPress that now it deprecated. Nothing to worry about.

    zaerl
    Participant

    My plugin doesn’t touch the mail code.

    zaerl
    Participant

    My plugin doesn’t touch the mail code.

    #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.

    #99461
    Pomy
    Participant

    Hi Ben L.

    I’m sorry, second code is not working from my side.

    Are you sure about this code?

    Please tell me where I’m wrong.

    Error:

    Warning: Missing argument 1 for bb_get_forum(), called in /home/domain/public_html/my-domain.com/forum/bb-templates/bbp-template/forum.php on line 18 and defined in /home/domain/public_html/my-admin.com/forum/bb-includes/functions.bb-forums.php on line 125

    `

    Thanks

    #104561
    Pomy
    Participant

    Hi Ben L.

    I’m sorry, second code is not working from my side.

    Are you sure about this code?

    Please tell me where I’m wrong.

    Error:

    Warning: Missing argument 1 for bb_get_forum(), called in /home/domain/public_html/my-domain.com/forum/bb-templates/bbp-template/forum.php on line 18 and defined in /home/domain/public_html/my-admin.com/forum/bb-includes/functions.bb-forums.php on line 125

    `

    Thanks

    #99479

    In reply to: Weird header code

    zyadsherif
    Member

    OOOH … lovely, works like a charm thanks a lot, but is there some serious error that I should know about & perhaps try to fix?

    knowing that I installed a fresh copy & not yet touched anything

    Thanks again (“,)

    #104579

    In reply to: Weird header code

    zyadsherif
    Member

    OOOH … lovely, works like a charm thanks a lot, but is there some serious error that I should know about & perhaps try to fix?

    knowing that I installed a fresh copy & not yet touched anything

    Thanks again (“,)

    #94980
    Ben L.
    Member

    Mark, body[class*=single-bbp], body[class*=page-template-page-bbp] (or if you’re feeling ambitious, body[class*=bbp]) should match bbPress plugin pages. User profile pages currently use the body class for 404 pages, which is a bug.

    #99478

    In reply to: Weird header code

    Ben L.
    Member

    Find this line and make sure it says error_reporting(E_ERROR | E_WARNING | E_PARSE | E_USER_ERROR | E_USER_WARNING);

    #104578

    In reply to: Weird header code

    Ben L.
    Member

    Find this line and make sure it says error_reporting(E_ERROR | E_WARNING | E_PARSE | E_USER_ERROR | E_USER_WARNING);

    Ben L.
    Member

    Your host might be blocking the mail() function, or your email could have been mistakenly marked as spam.

    Ben L.
    Member

    Your host might be blocking the mail() function, or your email could have been mistakenly marked as spam.

    #99500
    Ben L.
    Member

    Theoretically, you can use anything for authentication by overriding the bb_check_login function.

    #104600
    Ben L.
    Member

    Theoretically, you can use anything for authentication by overriding the bb_check_login function.

    #37542
    zyadsherif
    Member

    Hi, I am very new to bbPress but I used WordPress for a decent amount of time

    I was installing a fresh copy of both wordpress & bbPress to be integrated together on my localhost, I did the steps exactly how they should be & everything is successfully running except for one thing … I get weird lines on top of every bbPress page in this form —>>

    Deprecated: Assigning the return value of new by reference is deprecated in C:wampwwwMasr-A7laForumbb-settings.php on line 186

    Deprecated: Assigning the return value of new by reference is deprecated in C:wampwwwMasr-A7laForumbb-includesbackpressfunctions.wp-object-cache.php on line 108

    Deprecated: Assigning the return value of new by reference is deprecated in C:wampwwwMasr-A7laForumbb-includesbackpresspomomo.php on line 171

    Deprecated: Assigning the return value of new by reference is deprecated in C:wampwwwMasr-A7laForumbb-includesfunctions.bb-l10n.php on line 484

    Deprecated: Assigning the return value of new by reference is deprecated in C:wampwwwMasr-A7laForumbb-includesbackpressclass.wp-taxonomy.php on line 581

    It’s kinda urgent for me to fix that so please guys does anyone have any solution?

    Thanks a lot

    #99472
    1onely
    Member

    Anyone ?

    #104572
    1onely
    Member

    Anyone ?

    #99458
    Ben L.
    Member

    You could use the same method with a little tweak:

    $forum = bb_get_forum();
    if ( $forum->forum_slug == 'myforum' ) {
    bb_load_template( 'forum-myforum.php' );
    return;
    }

    #104558
    Ben L.
    Member

    You could use the same method with a little tweak:

    $forum = bb_get_forum();
    if ( $forum->forum_slug == 'myforum' ) {
    bb_load_template( 'forum-myforum.php' );
    return;
    }

    #99457
    Pomy
    Participant

    Ben L. Great Tip :)

    It works… One more question..

    Is it possible to make file name according to forum name/slug?

    Its now…. forum-ID.php >> forum-7.php

    I want….. forum-slug/name.php >> forum-myforum.php

    Thank you so much.

Viewing 25 results - 19,026 through 19,050 (of 32,499 total)
Skip to toolbar