Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 59,151 through 59,175 (of 64,515 total)
  • Author
    Search Results
  • #61987
    refueled
    Member

    Thanks Trent! I have more bbPress themes on the way!

    #61986
    Trent Adams
    Member

    That is a beauty! I really like that one and might have to come up with a use for it ;)

    Trent

    #61949
    Trent Adams
    Member

    bbPress and WP are easily integrated so that bbPress uses the wp_users table in the database, so what you are trying to accomplish is very easy to do. As for embedding gallery into WP, from personal experience it works fine and permalinks are configurable. I would check https://wordpress.org/support/ for more data on that though, but integrating the 3 should be pretty easy and straight forward! Integration is covered in the “FAQ” link of this forum!

    Trent

    #2699
    refueled
    Member

    I have just released my latest bbPress theme: Misty Morning.

    Demo

    Download

    I also have a matching WordPress theme:

    Demo

    Download

    Let me know what you think!

    #61970
    toxicshocktv
    Member

    I actually already tried that. Here’s my config as of now:

    <?php

    // ** MySQL settings ** //

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

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

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

    define(‘BBDB_HOST’, ‘localhost’); // 99% chance you won’t need to change these last few

    define(‘BBDB_CHARSET’, ‘utf8’); // If you are *upgrading*, and your old config.php does

    define(‘BBDB_COLLATE’, ”); // not have these two contstants in them, DO NOT define them

    // If you are installing for the first time, leave them here

    // 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://www.toxicshock.tv/board/&#8217;;

    // What are you going to call me?

    $bb->name = ‘Toxic Shock TV Forum’;

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

    $bb->admin_email = ‘toxicshocktv@gmail.com’;

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

    $bb->mod_rewrite = ‘false’;

    // 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 = 0;

    // 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: ’64f1b30caafe’

    // 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 = ”; // WordPress table prefix. Example: ‘wp_’;

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

    $bb->wp_siteurl = ”; // 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’ );

    ?>

    #61960
    jamwol
    Member

    anybody? I want to only show the user_nicename field everywhere on bbpress not user_login.

    #61921

    In reply to: Replace word in Post

    livibetter
    Member

    I just finished uploading talkPress 002: A Simple bbPress Plugin – Bad Words Filter. You can watch this here.

    The code mentioned in video is:

    <?php
    /*
    Plugin Name: Bad Words Filter
    Plugin URI: http://www.livibetter.com/
    Description: Removing bad words from post content
    Author: Yu-Jie Lin
    Author URI: http://www.livibetter.com/
    Version: 0.1
    */

    function BadWordsFilter($post_text) {
    // $post_text = str_ireplace('bad', '*****', $post_text);

    $bad_words = array('bad', 'topic', 'cialis');
    foreach($bad_words as $bad)
    // $post_text = str_ireplace($bad, '*****', $post_text);
    $post_text = preg_replace("/\b$bad\b/i", '*****', $post_text);

    return $post_text;
    }

    add_filter('post_text', 'BadWordsFilter');
    ?>

    #61969
    chrishajer
    Participant

    The quick and easy solution is to turn off permalinks in the config until you get the rewrite rules sorted out.

    Would this solution that someone posted today be of use?

    https://bbpress.org/forums/topic/problems-with-navigation-to-profile-page-and-posting?replies=4#post-12589

    #61965
    chrishajer
    Participant
    #2697
    #2696

    Profile links in bbPress are setup off the username of the user. However, if that username has a space or two in it, the profile doesn’t show.

    Example: http://www.smart-kit.com/social/profile/Dr.%20R.L.%20Kaplan

    Is there a way to fix that without editing all the profile usernames?

    #61954

    In reply to: Website links…

    ichimanako
    Member

    Also, _ck_ and fel64 i have another problem. Subforums are showing on the front page, no matter if i put

    if( !$forum->forum_parent )

    on front-page.php

    ( https://bbpress.org/forums/topic/subforums-and-markup?replies=12 )

    #2695
    #61952

    In reply to: i need …

    العاب
    Member

    chrishajer,Thank you!

    1.the FCK wysiwyg editor is very Nice … but how i can install it in my BBpress ?

    2.This sitemap : http://boakes.org/download/bbpress_sitemap.txt

    not working whith 0.8.3

    3.I will try to add this code .

    Thank you agin … By.

    #61951

    In reply to: i need …

    chrishajer
    Participant

    1. You can integrate FCK Editor or TinyMCE if you are looking for a wysiwyg editor.

    http://www.fckeditor.net/

    http://tinymce.moxiecode.com/

    1a. To allow all that type of content, you’re going to need a plugin. Check out this thread:

    https://bbpress.org/forums/topic/plugin-youtube-in-bbpress?replies=18#post-5707

    2. Does the regular sitemap plugin NOT work with 0.8.3? I never tried it. http://boakes.org/download/bbpress_sitemap.txt

    3. To show hot tags, you are going to need to edit the template files for each page, then insert this tag where you want it:

    <p class="frontpageheatmap"><?php bb_tag_heat_map(); ?></p>

     

    Depending on the layout of each of your pages, you might need to create a new div to insert that tag heat map into, or maybe there is room inside an existing div.

    The things you are asking for are going to require a substantial amount of work on your part. It can all be done (probably) but it’s not going to be super quick.

    Good luck.

    #2693

    Topic: i need …

    in forum Installation
    العاب
    Member

    Hello ,

    i’m use BBpress version 0.8.3 and i need some thing to it :

    1. i need wysiwyg editor which i can with it enter an IMG , SWF , WAV , RAM , RM , MPEG and more …

    2.i need google sitemap which work whit 0.8.3

    3.i need to show the hot tags in all pages .

    thanks for all , and i am sory for my bad english

    #2691
    djpumpkin
    Member

    I am looking at WP and bbPress as a way of extending my G2 install functionality.

    I know I can link G2 log-in to WP login, and I know that WP and bbPress can be linked – but will they all play nicely together?

    Also, in gallery2 I use permalinks which enable my users to have a short URL a bit like MySpace. Will this still work in an ’embedded’ situation?

    Thanks

    DJ

    #61923

    In reply to: Excerpts

    Doobus
    Member

    I’ve already looked into that as a viable solution, but WordPress’ back-end just complicates things for new users. bbPress is a lot simpler solution in that a forum is built around the idea of community, I’m just theming it not to look like a forum for advertising purposes, everyone knows that the ctr for forums are terrible. Plus I already gutted Kakumei beyond recognition, can’t turn back now :).

    Anyhoo, anyone know of how to put excerpts?

    #61791

    In reply to: Deleting bogus users

    chrishajer
    Participant

    There has been some talk of looking into the registration process.

    http://comox.textdrive.com/pipermail/bbdev/2007-December/001764.html

    Also, how about the enhanced registration plugin?

    https://bbpress.org/forums/topic/plugin-enhanced-registration?replies=17

    And a while back, someone commented that it took only a few minutes to delete the bad registrations every day. Can’t find a link to that post right now…

    #2689

    Topic: Excerpts

    in forum Plugins
    Doobus
    Member

    I’m in the process of theming bbPress not to look like a forum, but rather a blog with multiple posters :P. The one thing I’m stuck on, and there doesn’t seem to be any documentation on how to do this. How do you put excerpts in the front? The best example would have to be 9rules, I was wondering if that was custom code, or is there a plugin or a simple solution to achieve that? Thanks in advance.

    #2687

    Topic: Replace word in Post

    in forum Plugins
    ruilouis
    Member

    Hello all,

    I tried to realize a plugin that would allow me to replace some words by others in the post. I created the DB contained the words to replace and the word to put instead, i created the function and all is working fine, BUT, I don’t find how to use it on BBPRESS.

    My function is something like

    echo replace_words($TextToBeTransform,$WordToReplace)

    , and the function use the DB to see what is be put instead of the $WordToReplace. As I can see, the post are printed out from the post.php of the template we do use.

    I got this:

    <?php

    $tset="A trial phrase.";

    $WordToBeReplaced="trial";

    ?>

    <div class="threadpost">

    <div class="post">

    <?php echo replace_words( $test,$WordToBeReplaced); post_text()?></div>

    <div class="poststuff">

    <?php printf( __('Posted %s ago'), bb_get_post_time() ); ?>

    ">#

    <?php post_ip_link(); ?> <?php post_edit_link(); ?>

    <?php post_delete_link(); ?></div>

    </div>

    It print me exactly as I want the “A trial phrase” replace trial by “new” (from the DB).

    The problem is that when I want to apply this to the text of the post, post_text(), it won’t work at all. I see that this post_text() is actually applying filters and others to the text, which my cause my function to fail (no error, it just don’t replace the words).

    Could someone tell me where should I apply my own filter replace_words() for it to be taken into account?

    Thank you very much.

    #61902

    In reply to: WP 2.4

    Sam Bauers
    Participant

    And in case anyone wants to keep their passwords hashed in MD5, I’ve got a plugin that’s about to go into the plugin browser that enables that (for bbPress anyway).

    #55385
    aaron1728
    Member

    How should I modify my .htaccess to accomodate a bbpress install in a /forums/ subdirectory? The install worked but permalinks aren’t.

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

    # END WordPress

    #61917
    Trent Adams
    Member

    You have managed to come across a bug since you have a “username” that is a number. bbPress is searching for the 850th user which is that user and not your profile. I will let the “powers above” know. I will try and figure out your user ID number so you can at least see the profile until they fix this ;)

    Trent

    #2686
    850
    Member

    I logged in here on the bbPress forums to view my profile so that I could find my topics that I created a couple weeks ago. When I view my profile, it doesn’t show my posts or topics and my profile information is someone else’s:


    crisdias

    Member Since

    January 21, 2004 (3 years)

    Location

    Rio

    User Activity

    Recent Replies

    No more replies.

    Threads Started

    No more topics posted.


    That’s not me, I’m not from Rio.. and I’ve only been a member for a year or so.

    Also, I’m not able to edit my profile here.

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