Forums about plugins are open

Homepage of forums

Homepage of forums


Thanks to BBPRESS of wordpress team ! Now the forums about plugins are opened (support, exchange, wishes).
Please reserve contact page for general note or question, use comment of a post about the content of a post and go on forum!
As with xili-language for wordpress, I hope it will be possible to extend bbpress with a similar plugin to offer multilingual sub-forums… Will summer time fruitful ?

Here below a very first note for bbpress experts :

To customize theme and style of forum, bbpress offer very similar ways (hook, action, filter,..) to create specific style or add some features. The functions.php file in the theme is also possible. It is here useful because I wanted to add a favicon.ico for the current theme (filled in « my-templates » folder which contains only modified file)…

content of a customized bbpress theme

content of a customized bbpress theme

Here below an example of functions.php :

<?php
/* functions.php for bbpress theme © dev.xiligroup.com - 20090622 */
 
 
add_action( 'bb_head', 'bb_favicon' );
 
function bb_favicon() {
 
?>
<link rel="shortcut icon" href="<?php bb_active_theme_uri(); ?>/favicon.ico" type="image/x-icon"/>
<?php
}
?>
Ce contenu a été publié dans News, Studies. Vous pouvez le mettre en favoris avec ce permalien.

1 réponse à Forums about plugins are open

  1. Joey Reed dit :

    Before I found your post I was trying to add a favicon on my client’s BBpress site. I tried to add the favicon to the header.php file, but of course it didn’t work for me. However, your solution worked perfectly – my favicon popped right up. Thanks so much.

    By the way, do you happen to know of more functions like this that will come in handy to someone customizing BBPress for the first time? Any help is much appreciated.

    Cheers.

Laisser un commentaire