Search Results for 'code'
-
Search Results
-
Topic: wiki bbpress? :)
Hi,
like phpBB, i think it is interesting to open a wiki (with dokuwiki?
)why? because for example, i have many ideas of plugins, but the documentation is too small for i can understand how to do that

so, it is possible or not? :p
please please please :p
Hi,
with this plugin: http://bbpress.org/plugins/topic/live-comment-preview/
with the 1.0 alpha, the ajax effect doesn’t work, i have only the button

the author is here?
i think it is necessary to put a “last visit” field in the profile of developers here lol
Bye!
Topic: Is BBPress Any Good?
In vBulletin, if I want to pay $180, I could get the Porsche (reportedly) of message boards. In phpBB, if I want to grapple with a sizable infrastructure, I could get perhaps the most seasoned of the free forum systems.
What do I get with bbPress? Is it secure? Will it get spammed to death? Is it stable? Is it designed for personal sites or can businesses use it with confidence?
Here’s one very specific question: How do I add a link to bbPress to take people back to my WordPress home page?
BTW, the installation was a breeze.
Topic: Dreampush.com
Come check out my bbpress forum for lucid dreamers!
http://dreampush.com is the main site
http://dreampush.com/forums/ is the bbpress forum
Tell me what you think!
Topic: Design the bb_post_admin
Hi,
i would like to add icons at the function bb_post_admin in post;php
i see that is template-functions. but how to add this within edit the core files?
example, add icon at:
1401 function bb_get_post_edit_link( $post_id = 0 ) {
1402 $bb_post = bb_get_post( get_post_id( $post_id ) );
1403 if ( bb_current_user_can( 'edit_post', $bb_post->post_id ) ) {
1404 $uri = bb_get_uri('edit.php', array('id' => $bb_post->post_id));
1405 $r = "post_id ) ) . "'>". __('Edit') ."";
1406 return apply_filters('bb_get_post_edit_link', $r, get_post_id( $post_id ) );
1407 }
1408 }
in $r
thanks,
bye!
Topic: about sessions
Hi,
i want to add simply sessions in my wordpress’s header (not the completed integration), how to that? like the phpbb session system

bye!
This mini-plugin will fix your layout/graphics
for visitors that insist on using IE 8.0
function fix_ie8() {if (strpos($_SERVER['HTTP_USER_AGENT'],"MSIE 8")) {header("X-UA-Compatible: IE=7");}}
add_action('bb_send_headers','fix_ie8'); // for bbPress
add_action('send_headers','fix_ie8'); // for WordPressEssentially it makes IE8 render like IE7 by sending a special (invisible) header only to IE8 users.
Problem solved.
It blows my mind that a page that can render perfectly in Opera – which is THE standards browser – can be messed up by Microsoft attempting to conform to standards. What a (continued) waste of everyone’s time.
ps. For those that don’t want to install IE8 permanently to just test their sites, this version will run in it’s own virtual box so it doesn’t affect the rest of your system:
. If you know how to code of course – coding plugins for bbPress is a pure pleasure.