Search Results for 'bbpress'
-
Search Results
-
Topic: My forum
This forum I am creating for a small indie game (www.toribash.com) and SMF just didnt cut it. Way too difficult to change core code, and to me, make new plugins!
This is a temporary link, seeing I’m not anywhere NEAR finnished. As you can see I am using the emotions plugin, avatar plugin, PM plugin and a few of my own.
http://veb.bounceme.net/bbpress/
Comments welcome
Topic: Theme – Bloody Gray
This is a wordpress/bbpress integrated theme. This theme will work only when you have integrated wordpress and bbpress. for details visit
http://www.adityanaik.com/blog/bbpress-and-wordpress-integration/
Screenshots
http://www.adityanaik.com/projects/themes/bloody-gray-theme/#bbpress-ss
download the bbpress theme from here
http://www.adityanaik.com/download/bb-my-template.zip
download the wordpress theme here
http://www.adityanaik.com/projects/themes/bloody-gray-theme/
Note: the header in wordpress will need to be changed to add link to forum
Topic: Plugin – Avatar *UPDATE*
New release of my Avatar Plugin (version .73a). Core files no longer have to be adjusted! Just drop the file into your plugins directory, adjust your css file (as shown in the readme) and you’re good to go.
Get the new release here: http://faq.rayd.org/bbpress_avatar/
View use of the Avatar Plugin here: http://www.rayd.org/forums/
BBPress and WordPress = same creators … so a simple question : why, during the install, would be not possible to have 2 buttons radios with …
Option One : create a new DB users
Option Two : use the actual WP DB users
?!
Topic: bbPress PDA Edition Plugin
I have been using Alex King’s Mobile edition for WordPress for quite some time and love it! I was wondering if someone would like to look at the plugin and see how it could work with bbPress. It seems pretty straight forward.
http://alexking.org/projects/wordpress/plugins/wp-mobile.zip
Another plugin called WordPress PDA is similar and might be easy as well.
Interesting stuff! Any takers?
Trent
I have set up a web site integrating WordPress and bbPress.
Integration seems to be working – we have added a link back to the wordpress pages.
What I am noticing is when we link (htttp://www.koma-inu.org/bbpress) in from wordpress to bbpress, even though I am logged in, the front page displays the user name password and login windows. When I click on a topic or forum link, the header displays that I am properly logged in with a welcome message. Is there a way of adding a check to the front page to see that I am logged in already, right from the beginning?
Hi,
Welltried to make a plugin, but it aint working, why not?
Plugin code:
<?phpfunction get_portal_topics () {
global $bbdb;
return $bbdb->query("SELECT * FROM $bbdb->topics WHERE forum_id = 1 ORDER BY topic_time DESC LIMIT 0,10");
}
?>
This has to give a list I need, but turning it into my template it get this error:
Warning: Invalid argument supplied for foreach() in /bbpress/bb-templates/portal-page.php on line 33Template code:
<?php $portal_topics = get_portal_topics() ?><?php foreach($portal_topics as $topic) :
$portal_topic_posts = get_thread( $topic->topic_id); ?>
<h1><a href="<?php topic_link(); ?>"><?php topic_title(); ?></a></h1>
<?php printf(__('%1$s - <a href="%2$s">%3$s</a>'), get_topic_time(), get_user_profile_link($topic->topic_poster), get_topic_author()) ?><br/>
<?php echo $portal_topic_posts[0]->post_text; ?>
<div align="right"><?php printf(__('<a href="%1$s">Comments (%2$s)</a>'), get_topic_last_post_link(), get_topic_posts()) ?></div><br/>
<?php endforeach; ?>
Or my plugin is all wrong, or how I call it…. or both

Thx