Forum Replies Created
-
In reply to: bbPress plugins on bbPress (WordPress Plugin) How?
All plugins to bbPress 2.0 are in fact plugins to WordPress. So look for the plugins here: https://wordpress.org/extend/plugins/
Quick look found this as a signature plugin: https://wordpress.org/extend/plugins/bbp-signature/
In reply to: Where is Forums page?You can use shortcode [bbp-forum-index] and [bbp-topic-index] in any regular page to display the forums and topic listings.
If you have the nice looking permalinks then you can probably just go example.com/forums/
In reply to: shortcodes not working on sidebarsAlso, why attempt to use the shortcode in the sidebar when it would be much better to just use the forum list widget?
In reply to: bbPress Standalone Importer failureI use the bbConverter plugin and copied over all ~40,000 posts and ~1,200 topics from one of my websites (Tartarus) fine.
Well, except the ‘freshness’ time is relative to when converted not the actual posting date (which is copied over).
bbPress 2.0’s built in one has never worked for me.
In reply to: Problem with Ignore User Plugin – BBpress 1.1What’s going on?
In reply to: Intense DebateI’ve been looking into how to make a plugin to bbPress that reads from an email inbox and essentially gives bbPress mailing-list like properties.
In reply to: BBPress 2 plugins on 1.1No.
In reply to: bbPress 2.0 shortcode whitelist and bbcode pluginsFirst one isn’t ready to view yet
O rly?
This works a whole lot better than the built in converter.
The built in one could only handle 15 topics and, this plugin one is doing them all
In reply to: Skeleton – A Responsive WP/bbPress ThemeNot sure why the [bbp-*] shortcodes aren’t working on this page.
In reply to: Anonymous PostingAssuming bbPress 2.0:
You can modify this file (https://plugins.trac.wordpress.org/browser/bbpress/tags/2.0/bbp-themes/bbp-twentyten/bbpress/form-anonymous.php)
Modify the
<input>
tags such that they’retype="hidden"
. Also make thevalue="Anonymous"
for name and something likevalue="anonymous@example.com"
for email.There is _probably_ a better way but this is the first that comes to mind for me.
In reply to: BackPress, what's that?BackPress is a PHP library of core functionality for web applications. It grew out of the immensely popular WordPress project, and is also the core of the bbPress and GlotPress sister-projects.
In reply to: BBpress 2 looks "horrible" on fresh installPerhaps copy the css file from the bbPress folder and put include it at the bottom of your theme’s css file.
I can’t remember how to do css includes -_- Something like..
@include url(/path/style.css);
That _might_ restore the styling…slightly…
Which, I assume would be copying the existing shortcode function, modifying it to see fit.
You could create your own custom shortcode that does it.
In reply to: do_action bbp template notices ?Also, add_action and do_action are in wp-includes/plugin.php.
In reply to: do_action bbp template notices ?Adding an action is add_action(‘bbp_template_notices’, ‘funciton_name’);
I used this bbp_template_notices action hook to print my post toolbar in earlier versions of the plugin. This is because I noticed that the do_action(‘bbp_template_notices’); was (in bbp-twentyten) near the post form, so each time the post form is displayed, the template notices action is run and the post toolbar is displayed.
In reply to: do_action bbp template notices ?It allows for plugins to run a function at certain places during the page generation.
So if someone has a plugin that may generate some notices to the user, then they will add a function to the bbp_template_notices action. This allows them to hook into the action and their function is run each time the do_action(‘bbp_template_notices’); is called in the theme, or rest of WP/bbp.
In my CSS (toolbar.css) all things are constrained to
#post-toolbar
.It doesn’t do any resizing yet, and may never do. But the toolbar’s FAQ does suggest how to set a max-width using style.
I am going to make the CSS more customisable, just a tad.
In reply to: Bbpress 2.0 Beta3, tinyMCEYay! One more user of my plugin
In reply to: Bounty: Inline Editing PluginI can take a look. But I’be got an assignment due Sunday and going skiing for a week on Monday.
In reply to: Post toolbar plugin for bbpress 2Probably.
In reply to: New: Support Forums Plugin^ That would be really cool. I don’t think I’ve seen it yet.
In reply to: New: Support Forums PluginI’m interested… I tend to underestimate my abilities and sell my self short. But my post toolbar has been a big confidence boost.