Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 60,076 through 60,100 (of 64,515 total)
  • Author
    Search Results
  • #60345
    _ck_
    Participant

    Nice! Looks cairoshell inspired.

    (oh and yay Wales! Go Cardiff! :-)

    #60333
    _ck_
    Participant

    The RSS icon is actually CSS ;-)

    All you need to do is remove it from the stylesheet.

    I guess I could move it to the bottom somewhere.

    #2318
    mbwebdesign
    Member

    I’ve just launched a new BBPress theme for public testing via my website:

    BBPress

    It’s available in 4 colours. Feedback, bug reports etc would be greatly appreciated.

    #60332
    Null
    Member

    The white is much better, like it very much now, great theme

    I can remove the rss icon izi so that wont be a problem

    #60339
    _ck_
    Participant

    Found my fix after some digging.

    edit forum.php

    see where this part is near the top

    </table>
    <?php endif; ?>
    <?php if ( $topics || $stickies ) : ?>

    change it to this:

    </table>
    <? global $forum; $forum = get_forum( $forum_id ); // fix for 0.8.2.1 sub-forum bug ?>
    <?php endif; ?>
    <?php if ( $topics || $stickies ) : ?>

    it’s related to this bug which is fixed in the trunk (supposedly)

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

    #60331
    _ck_
    Participant

    Notepad.exe :-)

    But more seriously some people like TopStyle.

    There is also one or two Firefox plugins that let you change CSS dynamically – as you edit it, the page updates so you can see it in realtime. Very handy.

    #60330
    detrom
    Member

    Hi, very nice theme _ck_

    I´m very noob on php and css, what programs do you use to do themes easily?

    Thanks

    #60329
    _ck_
    Participant

    What do you think of them as white-ish text?

    #60320
    chrishajer
    Participant

    Hmm, searching brought me to this:

    https://bbpress.org/forums/topic/using-rss-feeds?replies=5

    Sounds like you’d be happy with a hack, which is really a bad idea, and this is really better suited to a plugin, but I am still looking for where you’d make the exact change in the core.

    In looking at this, I realized the RSS feeds for my forum are broken, so I’m not much help. Searching the code at trac.bbress.org for things like get_recent_rss_link (which is where the URL for the Recent Posts RSS feed comes from I think doesn’t give me any results. It seems the search there does not search the code, just the tickets? I read the help but it wasn’t telling me what I wanted to hear :)

    Maybe I’ll check out a new copy and grep through it to see where to hack. Sorry I can’t be of more help. I don’t know the answer but I’ll try to help.

    #60328
    _ck_
    Participant

    Yeah I was being lazy on the mouseover as I couldn’t quite decide the right colour but I gave in now and made a decision at least for the meanwhile…

    The title colour is tricky though. I still can’t decide.

    It’s going to have to be lighter though so the thin fonts can be seen.

    #60281
    chrishajer
    Participant

    I use a similar setup with the root folder of my domain as wordpress, then a subfolder for bbpress. So I have:

    http://www.domain.com/

    http://www.domain.com/bbpress

    In my WordPress Control panel under options, both URLs are set to http://www.domain.com with no trailing slash. I noticed in your config this URL has a trailing slash:

    $bb->wp_home = 'http://www.subventions.fr/';

    Maybe that is causing a problem?

    #60327
    Null
    Member

    Looks nice just 2 comments:

    – The background mouseover is still green, would change that to some blue-ish

    – The bold black titles (like latest discussions, views etc) are kinda too hard black for the theme. I would soften these or give them the color that ADD NEW haas now (ofcourse the add new would get a new color too then) I think it would blend in better then the hard black.

    _Null

    #2315
    _ck_
    Participant

    I’ve been getting very burnt out on all the plugin coding/fixing so I decided I needed a break this weekend. Instead I worked on a theme I’ve been meaning to try making.

    It’s not finished yet but wanted to hear some feedback on what I’ve managed so far:

    -= FutureKind theme demo for bbPress =-

    http://bbshowcase.org/forums/?bbtheme=futurekind

    It will have flexible width (ie. 760px, 90% etc.)

    #60280
    adriengeille
    Member

    in fact in wordpress you can set the home page in a different directory as the wordpress folder. That’s what i did. I installed wordpress in the wordpress folder but the homepage (index.php) is in the root directory.

    As soon as i change it and put the address back to wordpress…. i loose all templates with the design…

    The same way i’ve created a folder forum and uploaded the installation files of bbpress into it. Th’ats why i said

    // The full URL of your bbPress install

    $bb->uri = ‘http://www.subventions.fr/forum/&#8217;;

    I tried to change the last part with my wordpress address by deleting wordpress as you recommended but it still doesn’t work but definitely it seems it comes from my wordpress setup… but what can i do?

    #60279
    chrishajer
    Participant

    In fact, in the source of your WordPress site, there are a bunch of links that result in a 404, and they all have wordpress in the URL.

    404 Page Not Found:

    http://subventions.fr/wordpress/

    So, in your WordPress control panel, I suppose this could be wrong:

    Options->General: WordPress address (URL)

    I think your problems exist with the WordPress setup, and they are showing up now with bbPress integration.

    #60278
    chrishajer
    Participant

    This does not appear to be correct:

    $bb->wp_siteurl = 'http://www.subventions.fr/wordpress';

    Your wordpress site comes up at http://www.subventions.fr/ so the wordpress part is superfluous. I think you’ve got a path problem somewhere. Normally you install bbPress like this:

    /var/www/subventions/wordpress/

    maps to http://www.subventions.fr/

    /var/www/subventions/wordpress/forum/

    maps to http://www.subventions.fr/forum/

    forum is a subdirectory of wordpress in a typical integrated setup. Is that your setup? If so, then your config is wrong.

    #60277
    adriengeille
    Member

    ok here is my config.php file

    <?php

    define(‘DB_NAME’, ‘xxx’); // Le nom de la base de donnees

    define(‘DB_USER’, ‘xxx’); // Votre identifiant MySQL

    define(‘DB_PASSWORD’, ‘xxx’); // …et votre mot de passe

    define(‘DB_HOST’, ‘localhost’); // Dans la plupart des cas, vous n’aurez pas a modifier cette ligne

    // Vous pouvez faire plusieurs installation sur une meme base de donnees en leur donnant un prefixe unique

    // 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.subventions.fr/forum/&#8217;;

    // What are you going to call me?

    $bb->name = ‘Le forum des subventions aux entreprises’;

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

    $bb->admin_email = ‘webmaster@subventions.fr’;

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

    $bb->mod_rewrite = ‘slugs’;

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

    // 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 = ‘xxx’; // 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://www.subventions.fr/&#8217;; // WordPress – Options->General: Blog address (URL) // Example: ‘http://example.com&#8217;

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

    $bb->cookiepath = ‘/’;

    $bb->cookiedomain = ‘.subventions.fr’;

    define(‘WP_BB’, true);

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

    /* Stop editing */

    if ( !defined(‘BBPATH’) )

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

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

    ?>

    #60306

    In reply to: Rewriting up one level

    Sam Bauers
    Participant

    Add this to your sites root directory .htaccess file.

    This assumes that your bbPress install is in a subdirectory of your sites root called “forums”.

    These rules need to be added before any WordPress rules.

    The rewrite will work, but bb_repermalink() will change the URL so that it appears as it normally would.

    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^users/([^/]+)/page/([0-9]+)/?$ /forums/profile.php?id=$1&page=$2 [L,QSA]
    RewriteRule ^users/([^/]+)/([^/]+)/?$ /forums/profile.php?id=$1&tab=$2 [L,QSA]
    RewriteRule ^users/([^/]+)/([^/]+)/page/([0-9]+)/?$ /forums/profile.php?id=$1&tab=$2&page=$3 [L,QSA]
    RewriteRule ^users/([^/]+)/?$ /forums/profile.php?id=$1 [L,QSA]
    </IfModule>

    #60310
    _ck_
    Participant
    #60315
    _ck_
    Participant
    #2313
    PetLvr
    Member

    Can someone please advise what my .htaccess should me?

    I have a blog – http://PetLvr.com/blog/ – and this is the .htaccess

    ‘php_value upload_max_filesize 2M

    # BEGIN WordPress

    <IfModule mod_rewrite.c>

    RewriteEngine On

    RewriteBase /blog/

    RewriteCond %{REQUEST_FILENAME} !-f

    RewriteCond %{REQUEST_FILENAME} !-d

    RewriteRule . /blog/index.php [L]

    </IfModule>

    # END WordPress

    I have installed the bbPress at – http://PetLvr.com/blog/forum/

    Everytime I try to post or even see the welcome 1st post, it redirects to the /blog/ front page.

    What needs to be done?

    Thanks!

    HART

    #2312
    kboan23
    Member

    Hello,

    I need a little help, if possible. I am trying to integrate a WordPress blog with BBpress. I have placed BBpress in a subdirectory of WordPress and followed the instructions for sharing cookies. But still, when I go back and forth, I have to continually re-log in to each site.

    When I look at my cookies, they are definitely not the same. For the blog I get this (and one other similar one)

    wordpressuser_b458245343e06b7fa7cd00d37af29401

    For the BBpress, I get this (and one other similar one).

    wordpressuser_4e7fbe834162925f74c6c2e053468ef6

    Any ideas as to what I could have possibly done wrong?

    Thanks,

    Kay

    #60069

    In reply to: top 100 bbPress sites

    mciarlo
    Member

    Oh wow, thats truly a great compliment. Thank you ck!

    #2310
    mr_cynical
    Member

    I want to create a new user role on my forum, as a basis for fiddling with the private forums plugin. Essentially I want to be able to give some users on my forum a specific role (in addition to ‘member’) that will allow them to access specific forums without giving them mod/admin powers. I’ll need more than one new role (it’s for a Guild Wars alliance forum, and each guild needs to have its own private section).

    I’m fairly confident as to how to modify the private forums plugin to enable what I want – all I need to know is how to create the new user roles to enable this.

    I’ve managed to establish that add_role is the bbPress function I want, but (knowing absolutely no php) I have no idea how to use it. Can anyone help me out? Thanks :)

    #2309
    lecolibri
    Member

    I have BB en WP sharing the same database, but loggin in/out is only possible through WP…

    The configuration is as follows:

    WordPress address: http://www.some-directory

    Blog address: http://www.some-directory/blog

    BBPress is installed in:

    http://www.some-directory/discussions

    Of course, $bb->wp_siteurl and $bb->wp_home are set correctly.

    Stange thins is, that when I use a trailing slash after the $bb->wp_siteurl address, I can logout once via BB, but the logout only affects BB and not WP. Furthermore, logging in again is still impossible from within BB.

    Might it be, that I need to set some cookie paths?

    Thanks,

    robert.

Viewing 25 results - 60,076 through 60,100 (of 64,515 total)
Skip to toolbar