Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'code'

Viewing 25 results - 23,601 through 23,625 (of 32,481 total)
  • Author
    Search Results
  • #78598

    Using CSS, I managed to do it with little weirdness. God, kill IE asap ;)

    Thanks buddy!

    #78912
    chrishajer
    Participant

    Look in topic.php and forum.php in your template files, line 3 in the version I checked. Find this:

    <?php bb_forum_bread_crumb(); ?>

    Make it look like this with your separator in place of  *** :

    <?php bb_forum_bread_crumb(array('separator' => ' *** ')); ?>

    That will change the character for you.

    #78842

    In reply to: Font size too small !!

    Mark
    Member

    style.css

    html > body { font-size: 200%; }

    #78841

    In reply to: Font size too small !!

    1onely
    Member

    I want to put a code to enlarge the font size

    I am sorry , I do not speak English

    #78891

    I’m afraid options-wordpress.php is just the bbPress/WordPress options page and a bit of code. bbPress functions are under the includes directories.

    #78769
    annejan
    Member

    I installed bbPress in the root of my website and WordPress is installed in the directory “/w”. Because I use WordPress functions in my bbPress theme I call the wp-blog-header.php in the bb-config.php with the following code:

    if ( !defined('ABSPATH') & !defined('XMLRPC_REQUEST')) {

    define('WP_USE_THEMES', false);

    include_once( '/home/forum/test/html/w/wp-blog-header.php' );

    header("HTTP/1.1 200 OK");

    header("Status: 200 All rosy"); }

    My .htaccess settings for WordPress:

    # BEGIN WordPress

    <IfModule mod_rewrite.c>

    RewriteEngine On

    RewriteBase /w/

    RewriteCond %{REQUEST_FILENAME} !-f

    RewriteCond %{REQUEST_FILENAME} !-d

    RewriteRule . /w/index.php [L]

    </IfModule>

    # END WordPress

    My .htaccess settings for bbPress:

    # BEGIN bbPress

    Options -MultiViews

    <IfModule mod_rewrite.c>

    RewriteEngine On

    RewriteBase /

    RewriteRule ^page/([0-9]+)/?$ /index.php?page= [L,QSA]

    RewriteRule ^forum/([^/]+)/page/([0-9]+)/?$ /forum.php?id=&page= [L,QSA]

    RewriteRule ^forum/([^/]+)/?$ /forum.php?id= [L,QSA]

    RewriteRule ^forum/?$ / [R=302,L,QSA]

    RewriteRule ^topic/([^/]+)/page/([0-9]+)/?$ /topic.php?id=&page= [L,QSA]

    RewriteRule ^topic/([^/]+)/?$ /topic.php?id= [L,QSA]

    RewriteRule ^topic/?$ / [R=302,L,QSA]

    RewriteRule ^tags/([^/]+)/page/([0-9]+)/?$ /tags.php?tag=&page= [L,QSA]

    RewriteRule ^tags/([^/]+)/?$ /tags.php?tag= [L,QSA]

    RewriteRule ^tags/?$ /tags.php [L,QSA]

    RewriteRule ^profile/([^/]+)/page/([0-9]+)/?$ /profile.php?id=&page= [L,QSA]

    RewriteRule ^profile/([^/]+)/([^/]+)/?$ /profile.php?id=&tab= [L,QSA]

    RewriteRule ^profile/([^/]+)/([^/]+)/page/([0-9]+)/?$ /profile.php?id=&tab=&page= [L,QSA]

    RewriteRule ^profile/([^/]+)/?$ /profile.php?id= [L,QSA]

    RewriteRule ^profile/?$ /profile.php [L,QSA]

    RewriteRule ^view/([^/]+)/page/([0-9]+)/?$ /view.php?view=&page= [L,QSA]

    RewriteRule ^view/([^/]+)/?$ /view.php?view= [L,QSA]

    RewriteRule ^rss/?$ /rss.php [L,QSA]

    RewriteRule ^rss/topics/?$ /rss.php?topics=1 [L,QSA]

    RewriteRule ^rss/forum/([^/]+)/?$ /rss.php?forum= [L,QSA]

    RewriteRule ^rss/forum/([^/]+)/topics/?$ /rss.php?forum=&topics=1 [L,QSA]

    RewriteRule ^rss/topic/([^/]+)/?$ /rss.php?topic= [L,QSA]

    RewriteRule ^rss/tags/([^/]+)/?$ /rss.php?tag= [L,QSA]

    RewriteRule ^rss/tags/([^/]+)/topics/?$ /rss.php?tag=&topics=1 [L,QSA]

    RewriteRule ^rss/profile/([^/]+)/?$ /rss.php?profile= [L,QSA]

    RewriteRule ^rss/view/([^/]+)/?$ /rss.php?view= [L,QSA]

    RewriteCond %{REQUEST_FILENAME} !-f

    RewriteCond %{REQUEST_FILENAME} !-d

    RewriteRule ^.*$ /index.php [L]

    </IfModule>

    # END bbPress

    I hope you can help me. Thanks!!

    #76786

    Okay, so every plugin seems to work fine. Except for BBcode Buttons. I have installed BBcode Lite for bbPress, then uploaded BBcode Buttons and activated it.

    The description of the plugin states: “Automatically adds an easy access button toolbar above the post textarea to allow quick tags in BBcode. “

    Well, no such thing appears for me.

    I run on the original, default theme so it should not be a problem.

    #78872

    Lucky :P I have the same problem across two different installs that I access from two different machines using two different browsers (two of each, seriously), so I don’t think caching is the underlying cause.

    #78839

    In reply to: Font size too small !!

    1onely
    Member

    Is there another way?

    Code example ؟

    #76783
    gerikg
    Member

    Plugins

    1. bbPress Attachments + Allow Images

    3. BBcode Buttons + BBcode Lite for bbPress

    #21160

    Hello!

    I reccently had a problem with my site being hacked. I used SMF back then as forum, but when I got in to business of re-building the forum I got the advice to switch to bbPress (since I already used WordPress). The installation was smooth and it went fine.

    However, now when it is up I miss a couple of functions that I guess I need to install plugins to have. I want…

    1) …the users to be able to post images. The img-tag isn’t allowed from what I can see.

    2) …that all user would have a postcounter by the left field where their name is shown.

    3) …a possiblity to have buttons to display the tags for those who can’t write code. The usual mark a word, press a button and voilá! The word is bold.

    Those are the most pressing matters. Have you any suggestions to what plugins I should use?

    Thanks in advance!

    #78597

    It’s IE, I’m not suprised. Try setting the width using CSS rather than the size attribute.

    form.login input { width: 100px; } in the stylesheet

    #78832
    kirpiit
    Member

    The users admin table (1) does not seem to show any number. Where am I supposed to check those data, please?

    More generally, is it that likely that a new forum gets so easily corrupted?

    If so, what about an already running forum? Isn’t it a threat?

    —-

    (1) /bb-admin/users.php

    #78768

    Where have you installed WordPress and bbPress relative to each other, and what actually are your .htaccess settings for WordPress?

    Mine is just:

    # BEGIN WordPress
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    # END WordPress

    which seems to hand over nicely to the forums that are under /forums/ with their own .htaccess file

    #31683
    kirpiit
    Member

    So, I’m installing and testing my new forum, these days.

    I have 3 users registered for now: 1 is me as Key Master, the other 2 are me again :-) with fake identities just for testing purposes.

    Anonymous posting is (or should, how to check?) be forbitten, for obvious reasons.

    Now, if I go to this thread http://www.kirpi.it/r/topic/scatola I see that an anonymous unregistered poster seems to have contributed to the forum.

    How it such a behaviour explained and how it is avoided, please?

    Note: the post was actually made by me. I personally posted the image and the IP address is definitely the one from which I was working. But I did I manage to post anonymously?

    #78827

    https://trac.bbpress.org/changeset/2349

    That would explain why my trunk build fixed itself :)

    #78826
    honestscott
    Participant

    Or you can edit bb_get_topic_move_dropdown() and just remove $before and $after from $r. ;)

    Hi,

    Where do I find that file to edit?

    I think Sam has a fix coming in 1.0.3?

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

    You’re right…those are the brackets I am talking about…looks so weird, when everything else looks great.

    Thanks for the help!

    #78782

    In reply to: comments_popup_link

    johnnydoe
    Member

    you guys should be rewarded as the estimated inventory of the bbpress community, kudos :)

    btw, thank’s for the “whole” code and your precision in your replies kawauso, i’ll keep that in mind.

    #78864

    In post.php, change <?php printf( __('Posted %s ago'), bb_get_post_time() ); ?> to <?php printf( __('Posted %s'), bb_get_post_time(array('format'=>'datetime')) ); ?>. You need to change the option datetime_format to change how the date/time is formatted, not sure where that’s set, so the All Options plugin might help.

    #78798
    SharpMouth
    Member

    Ashfame, I followed your tutorial for integrating WP with bbPress. That didn’t work, so I decided to install bbPress byitself without integration. But its still not working :(

    #78006
    kirpiit
    Member

    It works!

    :-)

    Thank you!

    By the way, the “This topic is resolved” sentence at the top of this thread should be reversible. I could not find a way to “reopen” it though.

    #78005

    @kirpi.it Try .post img { max-width: 100%; overflow: hidden; }, probably the missing overflow: hidden bit

    Yay for finding this thread though, so much cleaner than the JS solution I was using :)

    #78862

    The edit equivalent hook is edit_form

    #78004
    kirpiit
    Member

    My theme is a very slightly edited Kakumei.

    The very last lines in style.css read

    #thread .post img {

    max-width: 100%;

    }

    Yet posted images do not resize as they are expected to.

    Please see http://www.kirpi.it/r/topic/limit-width-of-images as an example.

    What could it be, please?

    Puzzled

    :-|

    #78418

    All but the top three post links of the Relevant Posts section seem fine for me. That makes absolutely no sense, since they’re all using the same link function though. It implies that somehow, $bb_post = bb_get_post( get_post_id( $post_id ) ); (line 1638, functions.bb-template.php) isn’t being set properly for those… so yes, I’m guessing it’s either a bug or something’s wrong with some posts in your database. Could you confirm whether that’s consistently happening on other posts in searches too?

Viewing 25 results - 23,601 through 23,625 (of 32,481 total)
Skip to toolbar