zaerl (@zaerl)

Forum Replies Created

Viewing 25 replies - 126 through 150 (of 762 total)
  • In reply to: dropdown menu

    @zaerl

    Participant

    What browser.

    In reply to: dropdown menu

    @zaerl

    Participant

    What browser.

    @zaerl

    Participant

    The IP addresses are saved when users post something and not when they registrate (for obvious reasons.)

    You can delete “silent spam-bots” doing a simple query over bb_users. A user that hasn’t posted anything has the “inactive” status.

    @zaerl

    Participant

    The IP addresses are saved when users post something and not when they registrate (for obvious reasons.)

    You can delete “silent spam-bots” doing a simple query over bb_users. A user that hasn’t posted anything has the “inactive” status.

    @zaerl

    Participant

    How do I check those?

    If they has never posted they are not members.

    @zaerl

    Participant

    How do I check those?

    If they has never posted they are not members.

    In reply to: SQL error!

    @zaerl

    Participant

    Probably you have a very old version of MySQL, something like v3.20 which doesn’t support utf8. What version are you using?

    In reply to: SQL error!

    @zaerl

    Participant

    Probably you have a very old version of MySQL, something like v3.20 which doesn’t support utf8. What version are you using?

    In reply to: dropdown menu

    @zaerl

    Participant

    At 99% you don’t have admin rights. Screenshot please.

    In reply to: dropdown menu

    @zaerl

    Participant

    At 99% you don’t have admin rights. Screenshot please.

    @zaerl

    Participant

    What you’re asking for involve hooking the “bb_get_active_theme_directory” filter (or similar):

    function custom_dir($directory)
    {
    // do something
    // append the slug for example
    global $forum;
    $directory .= $forum->forum_slug . '/'
    }

    if(special case described in my last post) add_filter( 'bb_get_active_theme_directory', 'custom_dir');

    I’m sorry but I can’t help you further, I’m pretty busy right now.

    @zaerl

    Participant

    What you’re asking for involve hooking the “bb_get_active_theme_directory” filter (or similar):

    function custom_dir($directory)
    {
    // do something
    // append the slug for example
    global $forum;
    $directory .= $forum->forum_slug . '/'
    }

    if(special case described in my last post) add_filter( 'bb_get_active_theme_directory', 'custom_dir');

    I’m sorry but I can’t help you further, I’m pretty busy right now.

    @zaerl

    Participant

    No no no.

    /forum.php, near the end:

    $template = 'forum.php';
    if($forum->forum_slug == 'this') $template = 'whatever-you-want.php';
    else if($forum->forum_slug == 'that') $template = 'something-else.php';

    bb_load_template( $template, array('bb_db_override', 'stickies'), $forum_id );

    /topic.php, near the end:

    $template = 'topic.php';
    $forum = bb_get_forum($topic->forum_id);
    if($forum->forum_slug == 'this') $template = 'whatever-you-want.php';
    else if($forum->forum_slug == 'that') $template = 'something-else.php';

    bb_load_template( $template, array('bb_db_override', 'stickies'), $forum_id );

    Keep in mind that this is a rude approach and that everything can be packed in a plugin.

    @zaerl

    Participant

    No no no.

    /forum.php, near the end:

    $template = 'forum.php';
    if($forum->forum_slug == 'this') $template = 'whatever-you-want.php';
    else if($forum->forum_slug == 'that') $template = 'something-else.php';

    bb_load_template( $template, array('bb_db_override', 'stickies'), $forum_id );

    /topic.php, near the end:

    $template = 'topic.php';
    $forum = bb_get_forum($topic->forum_id);
    if($forum->forum_slug == 'this') $template = 'whatever-you-want.php';
    else if($forum->forum_slug == 'that') $template = 'something-else.php';

    bb_load_template( $template, array('bb_db_override', 'stickies'), $forum_id );

    Keep in mind that this is a rude approach and that everything can be packed in a plugin.

    @zaerl

    Participant

    Can you install bbpress on a WordPress 3.0 multisite and have a single forum that powers all websites in the network?

    No. You have to install multiple forums.

    @zaerl

    Participant

    Can you install bbpress on a WordPress 3.0 multisite and have a single forum that powers all websites in the network?

    No. You have to install multiple forums.

    @zaerl

    Participant

    Default theme kakumei does print the IP of poster after the post if you are an administrator.

    @zaerl

    Participant

    Default theme kakumei does print the IP of poster after the post if you are an administrator.

    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.

    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.

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

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

    @zaerl

    Participant

    Delete tags too.

Viewing 25 replies - 126 through 150 (of 762 total)