What is the difference between the style.css and style-rtl.css files in the stock theme? If I make changes to the style.css file will that spill over to the style-rtl.css file too? Or are changes supposed to be made to both the files?
Thank you.
What is the difference between the style.css and style-rtl.css files in the stock theme? If I make changes to the style.css file will that spill over to the style-rtl.css file too? Or are changes supposed to be made to both the files?
Thank you.
Hi there, I hope someone can help please.
I’m able to see RSS feeds for each topic in my forum, but is it possible to have a single RSS feed that includes all posts, regardless of topic?
Does anybody have an idea how to implement a plugin, which reacts upon a click on a ‘+’ or ‘-‘ sign within (at the end of) a category header within a forum list (say on frontpage) to display or hide the respective forums listed below the category header?
Eventually extending _ck_’s solution(s):
https://bbpress.org/forums/topic/hiding-subforms-on-your-home-page
https://bbpress.org/forums/topic/plugin-request-exclude-specific-forum-topics-from-front-page-latest#post-9018
with a JavaScript?
Hello,
how would it be possible to exclude posts from a certain forum in the “latest discussions” section?
Like in this forum in your “latest discussions” you get posts from every forum except for “pimp your press”.
I did use the search, but i only found how to hide the category, and not how to prevent “lates discussions” from collecting posts from a certain category. Probably my English isnt good anough and miss the right search keyword.
Thanks for your advices… and patience.
the Process
Hello,
I’m developing a bbpress plugin and I have a task to execute on plugin activation.
I’ve seen that the bb_register_activation_hook functions is deprecated, while i can found the definition of the wp function: register_activation_hook.
however when i use this function inside a plugin, the function cannot be found.
What do I have to do?
here is the code:
<?php
/*
Plugin Name:XXX
Description:XXX
Version 1.0
*/
register_activation_hook(__FILE__, ‘mp_activation’);
register_deactivation_hook(__FILE__, ‘mp_deactivation’);
function mp_activation() {
…
}
function mp_deactivation() {
…
}
?>
I’m trying to get the parent forum name in the title tag.
I made a plug in that takes care of most of it…
<?php
/*
Plugin Name: Better Titles
Author: James Dixson
*/
add_filter('bb_title', 'titlemodify');
function titlemodify( $title ) {
//your code that does something to $title;
switch ( bb_get_location() ) {
case 'topic-page':
$title = get_topic_title() . ' - ' . get_forum_name() . ' — Adventure Canoe Forum' ;
break;
case 'front-page':
$title = bb_option('name') . ' — Canoeing and Paddling Discussion' ;
break;
case 'forum-page':
$find = 'Canoe';
$string = get_forum_name() ;
if(strstr($string,$find)){
$title = get_forum_name() . ' — Adventure Canoe Forum' ;
}else{
$title = 'Canoe ' . get_forum_name() . ' — Adventure Canoe Forum' ;
}
break;
}
return $title;
}
?>
You can see it in action at http://www.adventurecanoe.com/forum
Now what I want to add is something that does this
Parent Forum Name — Forum Name — Forum Title
Basically if you went to the page http://www.adventurecanoe.com/forum/forum/rivers the title tag would read:
Canoeing Destinations — Rivers — Adventure Canoe Forum
I installed both TinyMCE 3.2.7 and the Allow Images plugin on a bbPress 1.0.1, but images and emoticoms (which are images as well) don’t work.
I don’t know what problem it might be. Any hint or help?
(I did fix the annoyance with the <p> tag that TinyMCE has, now I need images to work.)
I’m trying to figure it out, is there an easy way to make sure that ALL my permalinks use the .html file extension instead of the default /profile/username and no extension at all?
Thanks!
I use the Role Manager plug-in to create custom user roles in Word Press, and then use the Reg Level plug-in to allow these customer user roles to have restricted access to certain Word Press categories. This is all working great in Word Press 2.8
Now when I integrated BB Press with WP, the users with these custom roles can view but cannot contribute to the forums. The BB Press admin screen does NOT list these custom roles in order to map them to the BB Press roles.
I there any way to make BB Press recognize these custom roles created by Role Manager?
Keith
How can I complete the from part with a clickable link to the profile of the latest poster?
34 posts, 2 voices - Latest reply from ...
The user name ist Test User – it does contain a space.