Forum Replies Created
-
In reply to: Plugin: Summon user
I hope you’ll continue to populate the plugins browser with your clever works
In reply to: How do I refer to current user’s name?davidbessler,
Your theme needs to have a call to
bb_head()
in its header.php.If you’re using a version of the default header, make sure
bb_head()
is actually being executed on every page load. There was a bug in early versions of bbPress that preventedbb_head()
from being called on anything but topic pages.As an aside, if you’re adding javascript, you should definitely use bb_enqueue_script().
bb_enqueue_script( 'give-it-some-name', '/soruce/file.js');
In reply to: POT file for bbPress 0.74Should the dir be sk or sk_SK?
Are there other sk_?? regions?
In reply to: bbPress 0.8It will be longer than we thought originally
We guessed too optimistically. Oops!
In reply to: little template-functions bugThis should fix it. Thanks!
In reply to: Version Name“Bix” will stay until we next release with a new major release number.
Here’s the explanation: https://bbpress.org/blog/2006/10/bbpress-072/
In reply to: Disallowing RegistrationThat works well. The only thing is that people can still manually POST their own data to your root/registration.php file. Just because you don’t link to it anywhere doesn’t mean it’s gone
In reply to: “This topic is not a support question”so1o has already graciously converted the old core code into a plugin. The initial release can be found https://bbpress.org/plugins/topic/16
I’ve updated things again: https://trac.bbpress.org/changeset/592
(you can still use those other links to grab the most recent data).
The UL at the top of the topic page gets shifted too far over to the right. I don’t know why and have filed a ticket: https://trac.bbpress.org/ticket/541
In reply to: My 5 PluginsYou can also subscribe to the RSS feeds on https://bbpress.org/plugins/ to stay up to date!
I have updated the stylesheets: https://trac.bbpress.org/changeset/591
You can grab the most recent copies here:
http://svn.automattic.com/bbpress/trunk/bb-templates/style.css
http://svn.automattic.com/bbpress/trunk/bb-templates/style-rtl.css
EDIT: It seems there are more bugs than I thought… Still working.
If you look at the top of the default theme’s header (/bb-templates/header.php) you will see:
<link rel="stylesheet" href="<?php bb_stylesheet_uri(); ?>" type="text/css" />
<?php global $bb_locale; if ( ('rtl' == $bb_locale->text_direction) ) : ?>
<link rel="stylesheet" href="<?php bb_stylesheet_uri( 'rtl' ); ?>" type="text/css" />
<?php endif; ?>
Currently, you have a file called he.mo (is that the right name for Hebrew?) in bbPress’ languages directory.
You should also put a file called he.php in that directory that has the following content.
<?php
$text_direction = 'rtl';
?>
Then, bbPress will know that your language is RTL and should include both the style.css and the style-rtl.css automatically.
But, you’re right. There are a bunch of CSS bugs it looks like. I’ll see what I can do to fix them.
In reply to: POT file for bbPress 0.74In reply to: ValidationI don’t think this was ever fixed. Maybe we should switch to transitional.
In reply to: favorites on front pageYes – that’s a great idea
In reply to: SignaturesbbPress core will not do this. A plugin could offer such a feature.
In reply to: Displaying Photos>There’s a plugin for images: https://bbpress.org/plugins/topic/5?replies=14
The
<blockquote>
tag is allowed by default.In reply to: “This topic is not a support question”bbPress 0.80 will not have the topic resolution stuff. There will be a plugin to re-implement it for those that want it.
In reply to: POT file for bbPress 0.74it is!
What should it be tr? tr_TR?
In reply to: POT file for bbPress 0.74wordpress-tr, would you like a directory in the bbpress-i18n repository?
It should work if you include both stylesheets on your pages (the style-rtl one last).
Please let us know how it goes.
In reply to: POT file for bbPress 0.74In reply to: Cannot redeclare bb_int_set_current_user()…That’s a WordPress Plugin, not a bbPress plugin. It should only be installed in your WordPress plugins dir.
In reply to: POT file for bbPress 0.74Yup!
In fact, if anyone wants one now, I can set it up for you.
Also… that’s the first pot file I’ve ever made. Can you please let me know of any issues
In reply to: Error for tags.phpCan anyone please help me debug this problem on PHP4?
See https://bbpress.org/forums/topic/531?replies=17#post-3118