Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 60,151 through 60,175 (of 64,519 total)
  • Author
    Search Results
  • #56549

    In reply to: Strut Your bbPress!

    ptrkmkl
    Member

    Rather simple, but does what I need:

    http://support.newschoollearning.com

    Fits in with the rest of the site quite well.

    #2294
    dens
    Member

    Hi there – recently installed bbPress and picked a placeholder forum name and now I can’t figure out how to change it?

    I would expect to find some “general forum prefs” under the Admin screen of my forum, but no luck.

    any advice?

    #60262
    baptiste
    Member

    Here’s the ticket – hopefully the function or some form of it will get added. Possible improvement would be to limit the depth for forums with deep children

    https://trac.bbpress.org/ticket/733

    #60261
    baptiste
    Member

    http://onthepitch.org/talk/forum/food-and-nutrition

    Not in production yet – still ironing out various bits, adding stuff that’s missing (oh how I miss AJAX posting), etc. But the breadcrumb stuff works for the forum and topic view.

    #60260
    Null
    Member

    Demo?

    #2293
    baptiste
    Member

    I put together some code to implement a real bread crumb trail for BBPress that should support any level of subforums. I’ll open a ticket for the change too, but until it’s in the trunk (hopefully), you can use it by doing the following.

    In bb-includes/template-functions.php, just above the // Forum Loop // line, add the following:

    (UGH – Why if I put code inside code tags is bbpress insisting on parsing it and tossing in backticks everywhere! To see the code, check this file: http://onthepitch.org/talk/bb-includes/template-functions.txt)

    You’ll have to update your template, mainly forum.php and topic.php. Look for the line like this”

    <h3 class="bbcrumb"><a>"><?php bb_option('name'); ?></a> &raquo; <?php forum_name(); ?></h3>

    and replace it with something like this:

    <h3 class="bbcrumb"><?php forum_bread_crumb(); ?></h3>

    And it should work for you.

    #57654
    ajd777
    Member

    This is a little off-topic, but iif you are getting that much spam, you may consider looking at Bad Behavior

    It blocks spambots before they can add content to the database.

    #58446
    mciarlo
    Member

    Thanks guys! We put a lot of work into the forum design. However, we are updating the entire website and the forums are getting a complete re-design (for the better of course). Feel free to stop by in the next few days to check it out =).

    -Michael Ciarlo

    #60230

    In reply to: Gravatar Plugin

    so1o
    Participant

    you can check my website.. i have used gravatar for bbpress…

    http://www.adityanaik.com

    #2291
    ganzua
    Member

    I’d like to add the same tool bar in all my web forms (by the way, it is up with bbpress), tinyMCE, fckeditor… whatever, but the same in all bbpress – wordpress forms.

    Is it possible? so far I only was able of displaying tinyMCE in wp with a plugin.

    #60218
    _ck_
    Participant
    #2289
    _ck_
    Participant

    I began working on this last night:

    http://bbshowcase.org/forums/views/statistics/

    As you should be able to tell it’s far from finished.

    I’m interested in hearing ideas for other statistics you’d like to see.

    I already just realised a list of the 10 oldest/newest member registrations might be interesting.

    Since all those calculations are “expensive” I’ll make it cache them for an hour at a time (perhaps adjustable).

    Also there will be more time/user based calculations once I get useronline released for bbpress.

    Currently bb-topic-views is required for the module.

    I’ll release it for beta test after more work on it tonight.

    #59875
    benbeltran
    Member

    It’s a nice theme, Though I think the views could use a little more line spacing, and maybe a bit of padding between the header/footer and the content. But that’s just me.

    And in a different topic, 8.9 Server Load? Ouch!

    #2287

    Topic: Gravatar Plugin

    in forum Plugins
    wsokc
    Member

    Inspiring from Gravatar plugin in WordPress, I try to find a work around to port that plugin to bbPress plugin, so I dont need to host image avatar files for each user.

    Is there anyone had done this before ?

    #59874
    wsokc
    Member

    Its Nice theme actually

    And for me the size its really neat! and light….

    See in firefox, seems no problemo…

    When its release ?

    Regards

    Raffaell

    #60224
    Trent Adams
    Member

    Any web host can use a slew of stats programs. They are all web based and work well like sitemeter, awestats, webalizer, etc. As well, you just need to add your Google Analytics code off their site to your header.php and your bbPress forum is listed. You don’t need any special software. Just add the script they give you when you signup to your header.php file of your template.

    Trent

    #2285
    Inquirer
    Member

    Google Analytics at http://boakes.org/software/

    Rename the file googleanalytics.php and copy it to your /wp-content/plugins directory.

    Enable it on the plugins page.

    Enter your Google Analytics User Account string (it’ll be something like UA-12345-6. It appears when you “Add a channel”)

    Apparently, you have to signup with Google and receive a User Account string.

    Google Analytics is free to all advertisers, publishers, and site owners.

    Does this free apply to Discussion forums?

    Does anyone have an opinion on Google Analytics or another forum statistics plugin?

    #57653
    rfleigh
    Member

    i dont understand what “define USER_BBDB_NAME, USER_BBDB_USER, USER_BBDB_PASSWORD, and USER_BBDB_HOST” means..

    here is my config.php file. please let me know if this is correct.

    <?php

    // ** MySQL settings ** //

    define(‘USER_BBDB_NAME’, ‘XXXXX’); // The name of the database

    define(‘USER_BBDB_USER’, ‘XXXXX’); // Your MySQL username

    define(‘USER_BBDB_PASSWORD’, ‘XXXXXX’); // …and password

    define(‘USER_BBDB_HOST’, ‘localhost’); // 99% chance you won’t need to change this value

    define(‘BBDB_NAME’, ‘XXXXX’); // The name of the database

    define(‘BBDB_USER’, ‘XXXXXX’); // Your MySQL username

    define(‘BBDB_PASSWORD’, ‘XXXXXX’); // …and password

    define(‘BBDB_HOST’, ‘localhost’); // 99% chance you won’t need to change this value

    // Change the prefix if you want to have multiple forums in a single database.

    $bb_table_prefix = ‘bb_’; // Only letters, numbers and underscores please!

    // The full URL of your bbPress install

    $bb->uri = ‘http://richardfleigh.com/richardfleigh/bbpress/&#8217;;

    // What are you going to call me?

    $bb->name = ‘Richards new bbpress site’;

    // This must be set before you run the install script.

    $bb->admin_email = ‘richard@mediosone.com’;

    // Set to true if you want pretty permalinks, set to ‘slugs’ if you want to use slug based pretty permalinks.

    $bb->mod_rewrite = true;

    // The number of topics that show on each page.

    $bb->page_topics = 30;

    // A user can edit a post for this many minutes after submitting.

    $bb->edit_lock = 60;

    // Your timezone offset. Example: -7 for Pacific Daylight Time.

    $bb->gmt_offset = -5;

    // Change this to localize bbPress. A corresponding MO file for the

    // chosen language must be installed to bb-includes/languages.

    // For example, install de.mo to bb-includes/languages and set BBLANG to ‘de’

    // to enable German language support.

    define(‘BBLANG’, ”);

    // Your Akismet Key. You do not need a key to run bbPress, but if you want to take advantage

    // of Akismet’s powerful spam blocking, you’ll need one. You can get an Akismet key at

    // http://wordpress.com/api-keys/

    $bb->akismet_key = ”; // Example: ‘0123456789ab’

    // The rest is only useful if you are integrating bbPress with WordPress.

    // If you’re not, just leave it as it is.

    $bb->wp_table_prefix = ‘wp_’; // WordPress table prefix. Example: ‘wp_’;

    $bb->wp_home = ‘http://blog.richardfleigh.com/&#8217;; // WordPress – Options->General: Blog address (URL) // Example: ‘http://example.com&#8217;

    $bb->wp_siteurl = ‘http://blog.richardfleigh.com/&#8217;; // WordPress – Options->General: WordPress address (URL) // Example: ‘http://example.com&#8217;

    /* Stop editing */

    if ( !defined(‘BBPATH’) )

    define(‘BBPATH’, dirname(__FILE__) . ‘/’ );

    require_once( BBPATH . ‘bb-settings.php’ );

    ?>

    #2284
    ajd777
    Member

    I’m working on a project that calls for a seamless integration of the two with all the bbPress functions available in WordPress and vise-versa. I have finished nearly everything including adding the bbPress admin menu items to the WordPress panel.

    However, the items don’t actually display because when WordPress checks to see if users can access them, the roles, such as “moderator” aren’t listed.

    Is there a way, in bbPress, to just get a list of the current users capabilities, so it can be filtered into the WordPress list? The project requires that it be done entirely through plugins.

    #2283

    Topic: Girls Can’t WHAT?

    in forum Showcase
    1drummergirl
    Member

    I just updated my bbpress forum after a few months of neglect and I’m looking to pump some new life into it and add some new plugins.

    There’s not near as much activity in the forums as my regular blog, but I do get some folks who would rather post in the forums than on the front page of the site.

    Let me know if anything looks amiss. :)

    http://www.girlscantwhat.com/forums/

    #60066

    In reply to: top 100 bbPress sites

    benbeltran
    Member

    Nice idea! I’ll have to work on making my forums nicer if I want them to appear on that list :D

    #60205
    _ck_
    Participant

    IMHO validation is just a syntax check and the least of bbPress problems right now.

    The most useful doctype for the next decade is:

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

    Get back to me when a browser DOESN’T support that ;)

    Makes life sooo much easier. Then posts can contain <b>, <u>, <s> and <i> and all sorts of standards people have been used to for the last decade instead of reinventing the wheel!

    Now instead go round up a dozen php plugin developers and get them onboard and we’ll have some real momentum :)

    #60201
    _ck_
    Participant

    I’ve been considering making this ability but it really worries me about the volume of email if someone subscribes to many, many topics. Spam filters, not to mention your server host can trigger bans if too much email is being sent.

    But I do have all the routines I need however to build such a plugin based on code from my signatures plugin and ignore member plugin. (Digests are another matter however, that’s a bit of work and requires tracking of last message seen, which is not natively built into bbpress)

    There is just too much to create but too little time to do it though. I’ve got too many little projects going.

    #55654

    In reply to: What’s integration?

    lstelie
    Member

    Hello,

    Another view on integration..

    I’d love to use BBPress as a repository for WP coments (at least some of them).

    When they are a lot of comments, WP is not very usage. FGor example I have a popular post with 141 comments ans loading the page takes a long time and cause errors to google ads. I’d love to use BBPress as a repository for that but I don’t know how import a thred of WP comments as a BBpress forum.

    Luc

    #60142

    In reply to: help with new install!

    Andrew
    Member

    Ah, you were right. With pretty permalinks off it works. Now I have to figure out how to get bbPress to play nice with WordPress. Hmm.

    Thanks much!

Viewing 25 results - 60,151 through 60,175 (of 64,519 total)
Skip to toolbar