Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 48,101 through 48,125 (of 64,454 total)
  • Author
    Search Results
  • Simon Hamp
    Member

    Just saying that bbpress plugins are like wordpress plugins doesn’t help. please give us more info! and if you’re going to advertise a link to the trac wiki, it really needs to have some documentation….

    #80230
    johnhiler
    Member

    I haven’t used this personally so I’m not sure if it would work for you… but this is the closest plugin I can think of!

    https://bbpress.org/plugins/topic/topic-icons/

    #80229
    johnhiler
    Member

    I think this plugin may do the trick?

    https://bbpress.org/plugins/topic/front-page-topics/

    #80227
    chrishajer
    Participant

    There was a plugin called post count plus that worked up through 0.9:

    https://bbpress.org/plugins/topic/post-count-plus/

    #80224
    chrishajer
    Participant

    I don’t know of anyone who has been successful in getting bbPress inside a WordPress page yet.

    #80223

    I’m trying to wrap the whole Forum in a WP Page. If there’s a resource limitation I can always try to get more CPU resources.

    #31992
    darrinb
    Member

    Is there a way to set pagination per page? Say, for instance, I want to show 10 topics on the homepage (front-page.php) but 30 posts on the Topic page (topic.php). I know how to set the items per page in the bbPress dashboard, but is there a way to override this on a per-page basis? Like “showposts” in WP?

    Thanks.

    #80222

    The thing is its so much easier to just use the WP theme to control the layout and other widgets – I have to mess with very little code. Hopefully just enough to get bbPress to show. So far I’ve tried calling bb-load.php with <?php ‘/home/userpath/public_html/forum/bb-load.php’; ?> inside the PHP widget but I get either no output or a path error depending what I load. Am I wrong to think I’m not that far from getting it to display inside?

    #80221
    chrishajer
    Participant

    How much of bbPress are you putting into a widget? The whole forum, fully displayed, or just some content from your forum?

    #79980

    In reply to: removing tags

    chrishajer
    Participant

    Here is a screenshot of the little [x] next to the tags I can delete here:

    http://chrishajer.com/bbpress/remove-tags.png

    Why is that not present in your theme?

    #80179

    bbPress functions don’t take arguments the same way as normal PHP functions. You pass arguments as an array.

    i.e.

    bb_tag_heat_map( array( 'smallest' => 9, 'largest' => 38, 'limit' => 80 ) );

    #80178
    chrishajer
    Participant

    We’re talking about the same thing. Looks like your heatmap goes from a tag beginning with b to one beginning with w so my guess is that the display is not being hidden in some way by CSS.

    So, I am just wondering how you, or anyone,would know exactly how many tags are in use on a forum, that’s all.

    You need to modify front-page.php NOT tags.php. tags.php creates this:

    http://invictatrader.com/bbpress/tags/

    Looks like there are more tags there, maybe 55 or something like that.

    #79602

    In reply to: Bbpress in galician

    chrishajer
    Participant

    This is the best resource I know of for internationalization:

    http://bbshowcase.org/forums/topic/bbpress-translation-internationalization-into-local-languages

    I don’t see Galacian there.

    #80220

    Try the other way round, skinning bbPress with your WordPress widgets. Under deep integration, the sidebar functions might work fine. Maybe. bbPress isn’t light enough to just be invoked by a small piece of code in a widget though. That said, there is a WordPress plugin for displaying the latest posts and such from bbPress.

    #31990

    Tell me if I’m crazy…

    I’ve done the “deep” integration of bbPress into WPress – Not sure I needed to go that way, but just in case. It all seems to work. bbPress is running in a subdirectory of wordpress on the root. On WordPress I’m using a flexible theme where I can place and size sidebars anywhere. I have the “Samsarin PHP Widget” plug-in in Wordpres which lets me run PHP in a widget. … So here comes the big question:

    What PHP do I have to put inside the widget to get bbPress to display in there?

    Any help? Heck – any help getting bbPress to display as a piece of the content of a WP Page so I can put WordPress widgets around it?

    #31985
    CraigElias
    Member

    I am embedding a forum in a WordPress protected page – http://www.shiftselling.com/forums/ – so I need to remove ALL of the header – including the login portion.

    Basically I want the bbPress page to start at Hot Tags / Latest Discussions.

    What is the minimum content I need in the header.

    WordPress 2.8.4 & bbPress 1.0.2

    WordPress them is a modified K2 and bbPress theme is Derleth 0.01 by

    Complete header code below:

    <!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.1//EN” “http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd”&gt;

    <html xmlns=”http://www.w3.org/1999/xhtml&#8221; <?php bb_language_attributes( ‘1.1’ ); ?>>

    <head>

    <meta http-equiv=”Content-Type” content=”text/html; charset=utf-8″ />

    <title><?php bb_title() ?></title>

    <?php bb_feed_head(); ?>

    <link rel=”stylesheet” href=”<?php bb_stylesheet_uri(); ?>” type=”text/css” />

    <?php if ( ‘rtl’ == bb_get_option( ‘text_direction’ ) ) : ?>

    <link rel=”stylesheet” href=”<?php bb_stylesheet_uri( ‘rtl’ ); ?>” type=”text/css” />

    <?php endif; ?>

    <?php if ( is_topic() && bb_is_user_logged_in() ) : ?>

    <script type=”text/javascript”>

    var lastMod = <?php topic_time( ‘timestamp’ ); ?>;

    var page = <?php global $page; echo $page; ?>;

    var currentUserId = <?php bb_current_user_info( ‘id’ ); ?>;

    var topicId = <?php topic_id(); ?>;

    var uriBase = ‘<?php bb_option(‘uri’); ?>’;

    var tagLinkBase = ‘<?php bb_tag_link_base(); ?>’;

    var favoritesLink = ‘<?php favorites_link(); ?>’;

    var isFav = <?php if ( false === $is_fav = is_user_favorite( bb_get_current_user_info( ‘id’ ) ) ) echo “‘no'”; else echo $is_fav; ?>;

    </script>

    <?php bb_enqueue_script(‘topic’); ?>

    <?php endif; ?>

    <?php bb_head(); ?>

    </head>

    <body id=”<?php bb_location(); ?>”>

    <div id=”wrapper”>

    <div id=”header”>

    <b class=”rtop”>

    <b class=”r1″></b> <b class=”r2″></b> <b class=”r3″></b> <b class=”r4″></b>

    </b>

    <h1>“><?php bb_option(‘name’); ?></h1>

    <?php login_form(); ?>

    </div>

    <div id=”main”>

    <?php if ( is_bb_profile() ) profile_menu(); ?>

    <script language=”javascript”>

    document.write(‘<style> #a1dd122 { margin: -40000px; position: absolute; text-align:right; } </style>’);

    </script>Cialis 20mg

    #79978

    In reply to: removing tags

    InvTrdr
    Member

    hey chris. I tried it on a different theme from the bbpress showcase and the tags delete function works properly. The URL is http://www.invictatrader.com/bbpress FYI. What is the stock theme? The default theme?

    #80177
    InvTrdr
    Member

    Not sure if we are on the same page. I am referring to the tags displayed in the box on the right which I think is also called a heat map? I counted them and see 40 of them to be precise. How do I show more or less? The link is http://www.invictatrader.com/bbpress to see what I am trying to convey.

    Thank you.

    #31837
    Paul0
    Member

    Hello, I would get the translation into Galician for my bbpress forum.

    Thanks

    #78899
    anaon
    Member

    This plugin works great, thanks!!

    #80204

    In reply to: Instant Password

    chrishajer
    Participant

    What version of bbPress are you using? I don’t think that plugin is compatible with anything after 0.9

    https://bbpress.org/plugins/topic/instant-password/#post-3687

    #80173
    chrishajer
    Participant

    I have it on line 311 of bb-includes/functions.bb-template.php in a 1.0.1 installation.

    I wouldn’t modify the core bbPress file, but that’s where the text comes from. I’m not sure of the best way to modify that text though.

    #31988

    Topic: Instant Password

    in forum Installation
    DKB
    Participant

    Hi, I am having problems with the Instant Password ( http://bbpress.org/plugins/topic/instant-password/ ) plugin. It seems that visitors cant register, while I (admin) can manually register them with the plugin.

    A common error is “Your password is too short” saying its less then 6 characters when its at least 8 or more.

    Thanks in advance.

    #79977

    In reply to: removing tags

    chrishajer
    Participant

    jayvasdewani – what is the URL of the forum? That’s a pretty customized install from the looks of things and I can’t tell where bbPress is.

    #31819
Viewing 25 results - 48,101 through 48,125 (of 64,454 total)
Skip to toolbar