Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'code'

Viewing 25 results - 29,851 through 29,875 (of 32,522 total)
  • Author
    Search Results
  • #58783
    Trent Adams
    Member

    It was just a conditional that you put around the plugin call in your template that was giving me issues. I removed the conditional call and it worked 100% ;)

    Trent

    #58782
    drmike
    Member

    So should we hold off on this one then or what?

    or are you just causing problems again, Trent? ;)

    #51128

    In reply to: drupal integration

    drmike
    Member

    I thought you guys were? ;)

    #58715

    under_title looks like a pretty lame hook; I doubt you can trust it’s existence in every theme and it may get removed entirely in some later version of bbPress.

    If you need to add content to a topic page there, I’d just edit your custom theme.

    #58829

    In reply to: Edit topic subject

    creatiu
    Member

    Sorry I saw that is very simple… you can delete this topic if you want :-)

    #57786
    Nola1974
    Participant

    Am I the only one that notices that that link goes to a blogger blog? :)

    #57618
    miliak
    Member

    I’ve just set up a bbpress forum and everything seemed to work one day, then the next it stopped. All registrations and new posts would lead to a blank page. I couldn’t find the problem in the code, reinstalled a few times, and eventually I found out it was because of akismet. For some reason, it was flagging new registrations and posts as spam or something. It would leave the page blank, so I never knew what was going on.

    I’ve removed the API key from my config.php and everything works fine. My forum is currently unlinked because I’m still setting up. But I would like to get akismet working before the spam hits it ;)

    #58789

    In reply to: How to disable rss ?

    Trent Adams
    Member

    It is built into the code. You could disable the ‘call’ for the feed in topic.php if you really wanted to and/or the files that generate it (rss.php, etc)!

    Trent

    #56539

    In reply to: Strut Your bbPress!

    snakefoot
    Member

    Created a forum using the bbpress along with WP integration.

    http://smallvoid.com/forum/

    I’m very surprised of how much of the HTML-markup is part of the bbpress-core and not just kept in the theme code. It is impossible to create a XHTML compatible forum without modifying the core-files. But I guess quirks mode works okay.

    *EDIT* Guess I should have created my own thread, but too late now :)

    muzikdudenc
    Member

    I would be intrested in helping Beta Test plugins.

    Email my username at yahoo dot com :)

    #58639
    gspark
    Member

    for some reason this code although works in pulling in WP header/footer i notice that i cannot access the admin, is this the correct code ?

    $bb->WP_BB = true;

    require_once( ‘../wp-blog-header.php’ );

    update: ok i worked it out, needed the full path :)

    #58713
    M
    Member

    Another something I never knew I always wanted! Thanks. :)

    #58778
    fel64
    Member

    What we really need to know is what code you were running. Would be a strange one if it was the latest release; that sort of problem should affect everybody. I’d also be surprised if that was the latest, but if it was you should be prepared for that. Did you maybe modify that file yourself?

    Sam Bauers
    Participant

    I suppose that’s OK. :)

    #58780
    Rhys Wynne
    Participant

    No worries Trent, glad you could test this!

    I have gone about submitting it (forgot a readme file, it can wait until the morning :D), but will include one tomorrow.

    #58733
    fel64
    Member

    Ahh, and, in equal measure, woops.

    define('COOKIE_DOMAIN', '.audreysargent.com.net');

    should read

    define('COOKIE_DOMAIN', '.audreysargent.com');

    That .net meant that the cookie could not be set. Sorry.

    #56538

    In reply to: Strut Your bbPress!

    Trent Adams
    Member

    You guys know that you can start your own threads for your sites right ;)

    Trent

    #58711
    fel64
    Member

    Thank you very much. I didn’t realise it would be as simple as removing a filter, that’s cool :)

    #58583

    In reply to: Slugs and Duplicates

    You can use the script attached to that ticket: https://trac.bbpress.org/ticket/671

    It will only work once you upgrade to the next version of bbPress (it’s not out yet :) ) or if you’re running the “unstable” code in the repository.

    Follow the instructions in the last comment.

    #58710

    Make a new file in your my-plugins/ directory with the following code in it. Then activate the plugin in your bbPress’ admin panels.

    <?php
    /*
    Plugin Name: No ?replies
    Description: Get rid of the ?replies=# ugliness in topic links
    Plugin URI: https://bbpress.org/forums/topic/getting-rid-of-replies
    Author: fel64
    Version: 1.0
    */

    remove_filter( 'get_topic_link', 'bb_add_replies_to_topic_link' );

    ?>

    #2018
    Kahil
    Member

    I have already checked the config.php file for whitespace at the beginning and end, but there was nothing there. Thats all I know to check for that…

    Warning: Cannot modify header information – headers already sent by (output started at /home/content/k/a/h/kahil/html/Your_Kahil/forum/bb-includes/db.php:151) in /home/content/k/a/h/kahil/html/Your_Kahil/forum/bb-includes/functions.php on line 1833

    That is what I get for one thing… i get one for line 168 on pluggable.php

    I don’t know what to do or what changed… :(

    Please help…

    Thank you,

    Kahil

    #58728
    fel64
    Member

    Just tried, but haven’t had any of the expected emails in the last few hours. Hopefully it’ll come through soon.

    I think I see what you mean. But that’s very strange. Are you logged in? If you are, attempting to access wp-login.php should redirect you to the admin panel – not just in the act of logging in, but whenever anyone that is logged in tries to get there.

    Can you check your cookie info? In FF that’s Tools > Options > Privacy > Show Cookies, find cookies for your site and then look at the domain and path settings.

    #56705

    In reply to: Plugin: Avatar Upload

    Kahil
    Member

    For those of you who have your wordpress and bbpress installs together and would like have the avatars display in the wordpress side as well…

    Here is some code you can add… This is what I use in the sidebar over at yourkahil.com

    <?php global $user_identity;

    get_currentuserinfo();

    if ($user_identity == ”) {

    echo(‘Welcome Guest’);

    } else {

    echo(‘<img src=”/forum/avatars/’ . strtolower($user_identity) . ‘” alt=”avatar” />’);

    }

    ?>

    This will work if you would like to display the avatar outside of the loop in bbpress as well. All you have to do is change the image source line to reflect where you have your avatars stored…

    Hope that helps some people!!!

    #58720
    gspark
    Member

    I’ll do it for $$$ :)) pay me

    #58725
    fel64
    Member

    That should do :)

    Put this in your wp-config.php:

    define('COOKIE_DOMAIN', '.audreysargent.com.net');

    and this in bb’s config.php:

    $bb->cookiedomain = '.audreysargent.com';
    $bb->cookiepath = '/';

    Hopefully that’ll be all.

Viewing 25 results - 29,851 through 29,875 (of 32,522 total)
Skip to toolbar