Search Results for 'test'
-
Search Results
-
It’s definitely not ready for production use but the 1.0 alpha in the trunk is looking really good. Sam (and MDA) have been hard at work.
Looks a great deal like WordPress behind the scenes – I mean the new 2.5-2.6 look with rounded everything – but in our familiar and sharp looking green.
BackPress is now powering it which should unify us with WordPress more than ever before and accelerate feature development.
Hey it’s got a dashboard like WordPress now!
I also see they added Display Names to bbPress.
This actually is to my dismay but I guess other people may like them. (Personally for me it will be the first thing I disable – nothing but trouble with pesky childish users).
It also has categories built in: [screenshot]
If you are a power user and know what you are doing, give it a try in a test environment – do NOT overwrite an existing install, it’s not stable yet. Sam says they could use some testing bug reports on TRAC for it.
ps. even more good news is that many of my plugins seem to work hassle-free on it…
Topic: blocking a user does nothing
Right under the place roles are changed is the text:
Inactive users can login and look around but not do anything. Blocked users just see a simple error message when they visit the site.
However, when I made a test account and marked it as blocked, I could still log in with the account and there was no error message.
Why is this a problem and how can I fix this?
P.S. I tried this on a test install of trunk and a test install of 0.9.0.2, both gave the same result.
Edit: I just found out that blocking breaks passwords reversably, and only gives an error message if the user is already logged in.
Topic: Flickr on sidebar
Until now, I never had problems with Flickr rss (I mean these cool latest 75×75 images) because I was using WordPress plugins. But now, I have no idea how to put latest images from Flickr group in my bbPress. I was reading API docs for two days now, and I don’t understand it completely
.
Can anybody help? Or more, anyone have proper plugin?
.
Topic: Adding bbPress to WordPress
I know this is on the forum but for the life of me i just cannot find it. But I need to show the latest threads on my wordpress site.
I remember there was something like adding one line to the wp config file or something like that. does anyone know how to go about doing this and show the latest threads?
thanks
Topic: Show (gr)avatar on frontpage
Hello,
does anyone know how to show the gravatars of the Latest and Original poster on the front page, if so what/where would be the parameters for there dimensions of the image.
I just need to show a 50×50 gravatar of the latest poster on the front page next to the username of the latest poster in the “Latest Poster” column of each topic.
AND
A 50×50 gravatar of the original poster and the username of the original poster right next to the link of the topic, on each row.
Note: http://emptees.com/talk – has a similar thing to what i need, they have the author post avatar on there front page.
Thanks for any help
ok, so I added
require_once('path/to/bbpress/bb-config.php');
to my wp-config.php file. I then added the bbpress discussions code:<table id="latest">
<tr>
<th><?php _e(‘Movie’); ?> — <?php new_topic(); ?></th>
<th><?php _e(‘Posts’); ?></th>
<th><?php _e(‘Last Poster’); ?></th>
<th><?php _e(‘Freshness’); ?></th>
</tr>
<?php if ( $super_stickies ) : foreach ( $super_stickies as $topic ) : ?>
<tr<?php topic_class(); ?>>
<td><?php bb_topic_labels(); ?> <big>“><?php topic_title(); ?></big></td>
<td class=”num”><?php topic_posts(); ?></td>
<td class=”num”><?php topic_last_poster(); ?></td>
<td class=”num”>“><?php topic_time(); ?></td>
</tr>
<?php endforeach; endif; // $super_stickies ?>
<?php if ( $topics ) : foreach ( $topics as $topic ) : ?>
<tr<?php topic_class(); ?>>
<td><?php bb_topic_labels(); ?> “><?php topic_title(); ?></td>
<td class=”num”><?php topic_posts(); ?></td>
<td class=”num”><?php topic_last_poster(); ?></td>
<td class=”num”>“><?php topic_time(); ?></td>
</tr>
<?php endforeach; endif; // $topics ?>
</table>
I added that code to my index.php file in my wordpress theme and this is what I get as the output in the browser:
<table id="latest">
<tr>
<th>Movie — Add New »
</th>
<th>Posts</th>
<th>Last Poster</th>
<th>Freshness</th>
</tr>
</table>
Obviously, there is something wrong. Does anyone know what?