Search Results for 'forum css'
-
Search Results
-
Topic: bbpress and Artisteer themes
Hi,
Great forum plugin!
I am however experiencing some annoying theme compatibility issues…
My forum page (with [bbp-forum-index] shortcode) was wrongly picking up my theme’s css, instead of the bbpress css.
Resulting in an unusable forum layout.
I have applied the theme compatibility actions by copying the necessary bbp-theme-compat directory/files to my theme root.
By setting the correct bbpress page template via its page attributes, the main forum page (now without shortcode) seems to pick up the bbpress css. But shortcodes are still picking up the wrong css via the default theme page template..
Any suggestions to make shortcodes work with the bbpress css instead of the theme’s css?
Are there any additional css styles available that work with the bbpress theme-compat templates?
I am using wp 3.4.2, bbpress 2.1.2 and my theme is generated with Artisteer 4.
Regard,Tom
So recently my website has switched from just being a forum to becoming an actual website. We chose wordpress as a CMS because it seemed to fit all of our needs.
I’m no PHP programmer, at most I can do HTML/CSS so I need a little help. There’s a comma in my forums sub-forum list. You can visit this page: http://ludosnet.com/bbpress and see there’s an unneeded comma after every subforum. I’d like to know how to remove that. I’m using the 2010 theme with a few of my own customizations.
We’re in the process of importing all of our forums over to bbpress from xenforo, but it’s a rather complicated task. So any help would be appreciated.
Also concerning bbpress what plugins would you recommend to make the software have a few more features?
Topic: Mark topic as closed
I want to customize a topic that is closed. It was easy to find the css class for a topic that was closed, but I cannot for for the life of me find what php file is executing that class. I want to add an extra column with the string “[Resolved]” next to the name of the topic to make it more intuitive for my users. The website with an example of a closed topic is: http://www.compusoftdevelopment.com/forum/forums/forum/submitted-features/
I am running Wp v3.4.2 and bbPress v2.1.2
Hello… using pagelines, and have installed bbpress. Forum seems to be working fine, but the alignment of the header text for the columns… e.g., topic, posts, voices, freshness… is off…not aligned horizontally. If you can let me know how to edit the CSS for this particular piece, I’d really appreciate it. Also, possible to change the column header text? If so, how? THANKS http://www.powelltatewptest.com.php5-22.dfw1-1.websitetestlink.com/?forum=gear-swap Also, seems like the topic title is in the wrong place… should be left-aligned, then “started by” should go underneath.. just like this forum. Thoughts on how to fix?
As much as I hate shameless self-promotion, this is the “Pimp your press” forum so I’m going to let it all out.
I’ve just launched BeeForums, a free hosted bbPress service. It works just like those free forums services for other scripts (SMF, IPB, PHPBB) except it’s all bbPress & WordPress.
Features include one-click forum installation, a selection of (responsive) themes, spam protection, attachments, signatures, CSS editor and more. Plus we have an awesome site mascot 🙂
The links are an ugly teal color:
http://www.legalfriend.com/law-forum/
I think I know which css file to edit, but I can’t find where to edit it. Any ideas?
Does anyone know of a way I could add a CSS class to items that a user has already viewed.
I have some custom code (taken from the bbpress Recent Replies widget) that essentially shows my recent replies on my forum’s home page. This:
$post_types, 'post_status' => join( ',', array( bbp_get_public_status_id(), bbp_get_closed_status_id() ) ), 'posts_per_page' => $max_shown, 'meta_query' => array( bbp_exclude_forum_ids( 'meta_query' ) ) ) ); // Get replies and display them if ( $widget_query->have_posts() ) : echo $before_widget; echo $before_title . $title . $after_title; ?> have_posts() ) : $widget_query->the_post(); ?> <li > post->ID ); $author_link = bbp_get_reply_author_link( array( 'post_id' => $reply_id, 'type' => 'both', 'size' => 100 ) ); echo $author_link. ' on'; echo '<a href="' . esc_url( bbp_get_reply_url( $reply_id ) ) . '" title="' . bbp_get_reply_excerpt( $reply_id, 50 ) . '">' . bbp_get_reply_topic_title( $reply_id ) . '</a>'; echo ''. bbp_get_reply_excerpt( $reply_id, 150 ) . ''; echo '' . get_the_date(), get_the_time().''; ?> <?php echo $after_widget; endif;
is_mb there is just a custom function I wrote to determine whether the page being viewed is the homepage or not. Anyway, I'd love to add a class to the opening LI tag if a user has already viewed that. Any ideas?
Hi all, I want to hide my theme’s breadcrumbs for all the bbpress forum pages, since bbpress breadcrumbs are used for those. I know I simply need the css ‘#breadcrumbs { display: none !important; }’, but what file can i add it to so all forum pages use it? I’m using the bbpress compatibility theme. Many thanks!
Edit: I tried adding it to bbpress.css hoping that it would only affect bbpress post types but it hid them across the whole site.
hey everyone,
installed a base install of bbPress today on a test site:
http://topstory.com.au/forums/
Basically all I want to do is modify the font size down, from 12px to 11px. Can someone tell me where I can do this? I’ve done a lot of frakking around with CSS files with WordPress, but can’t find the right setting in bbPress.
Cheers,
Renai
Topic: Original CSS
Hi,
This may be very basic, so apologise to the wizards in here. I have installed bbpress and would like to keep the original CSS for the bbpress. Right now it automatically adjusts to the theme, and as I have some yellow text in the theme (black bg), it just doesn’t look nice in the forum. I have installed the CSS plugin for bbpress, so I can adjust the CSS directly in the editor, but I assume it must be possible to get the original CSS for the plugin displayed directly?
Thanks!
I want to customize a topic that is closed. It was easy to find the css class for a topic that was closed, but I cannot for for the life of me find what php file is executing that class. I want to add an extra column with the string “[Resolved]” next to the name of the topic to make it more intuitive for my users. The website with an example of a closed topic is: http://www.compusoftdevelopment.com/forum/forums/forum/submitted-features/
I am running Wp v3.4.2 and bbPress v2.1.2
I have a WordPress site (3.4.2) which uses a premium theme that I want to keep. I just activated the BBPress plugin (ver 2.1.2) and created a forum and topic etc. The forum and topic pages appear and look ok, but I would like to customize the template and css that is being used in this. I am finding BBP documentation on this somewhat confusing.
My Plan: I will create my own BBP template based on page.php from my main theme and modify the layout etc.
To implement this new template I create, I am guessing that I can replace $new_template (shown below; code taken from bhp-template-loader.php (wp-content/plugins/bbpress/bbp-includes) with the name of my new template, such as “bbp-new-page.php”). Is this correct?
// bbPress template file exists if ( !empty( $new_template ) ) { // Override the WordPress template with a bbPress one $template = $new_template;
And to modify the css, I can simply hack “bbpress.css” (wp-content/plugins/bbpress/
bbp-theme-compat/css/bbpress.css)?This approach seems really hacky/inelegant however.
On a slightly separate note, it appears that implementing the steps for theme-compatibility (http://codex.bbpress.org/theme-compatibility) are necessary only if you are going to use a single (custom) theme (or child theme?) for both WP and BBP?
Finding it a little confusing to untangle the methods and their purposes in BBP theming.
Thanks to anyone who can help!
Judy Wilson
Nashville TN