Search Results for '+.+default+.+'
-
Search Results
-
Topic: Permalink for Subforums?
Hello!
I can’t seem to find any answers via Google, so maybe you fine folks could help me. I just started delving into bbpress themeing. I’m basically skeletonizing the default bbpress theme so I can start working in depth with it.
The way I have my forums structured is in three category forums, with variable amounts of subforums. The default theme uses bbp_list_forums to return an unordered list of all subforums of a category. I’ve been messing with the arguments and made each list item separated in its own div. My problem with that is only the text inside the div links to the forum, whereas I would like the entire div to be the link.
My arguments look like so:
<?php bbp_list_forums( array( 'before' => '<ul class="bbp-forums-list">', 'after' => '</ul>', 'link_before' => '<li class="bbp-forum"><a href="<?php the_permalink(); ?>"><div class="forum-list-item">', 'link_after' => '</div></a></li>', 'count_before' => '<div class="forum-list-item-count"><span class="forum-list-item-topics">Topics: </span>', 'count_after' => '', 'count_sep' => '<br><span class="forum-list-item-replies">Replies: </span>', 'separator' => '<br>', 'forum_id' => '', 'show_topic_count' => true, 'show_reply_count' => true, )); ?>Any way I can get the permalinks to the individual subforums?
Hi,
I just used this shortcode [bbp-topic-tags] in widget and also in template file and its showing the tags but with <br> tag after each …. tag. Its means all tag clouds are displaying in a long list style and not displaying like wordpress default Tag cloud are displaying.
Is this bug or please help to fix thanks
Hi
I have faced an issue that maybe some people have encountered and for which I did not find much info on the net.Basically the problem was that the bbpress default template that I embedded in my WP template was rendered with supplementary line breaks (<br> and <p> tags). Just as if the wpautop function was reapplied on the forum content included in the template.
I noticed that the problem was existing on Linux if the template files had an Unix EOL : LF
And also existing on Windows (using WAMP) if those same files had a Windows EOL : CR+LF
I found a workaround by making the template files have a Mac End Of Line with : CRBut I am not sure this is a clean solution
Maybe there is something far more simple that I do not knowThanks
I am using the latest 2.4 bbpress version
Is there something that needs to be added to make this new feature work? There is no nesting of replies, nor new added classes to replies that are in response to other replies. My theme is a heavily customized version of the default theme from bbPress 2.0.
We installed http://northstarfamily.org/forums/ for our church and want to have it show both the forum index and the latest topics on the main page.
Also, I think that http://northstarfamily.org/forums/forum/homecoming-and-10th-anniversary/ should show the description and the topics but only shows the topics.
Is this how the default is setup or do I have a possible conflict?
Topic: Edit default forum page
Hello,
First I’d like to thank you for your plugin it will help very much for the new site I’m building.
I would like to know what page is the main forum landing page. I’d like to make a few edits, such as removing the default title “Forum” at the top and replace with my site conformed titles for each page. I would also like to comment out the forum search box.
I am currently wordpress vers 3.6 and I installed bbpress 2.4 today.
Here is the link. http://108.167.136.97/~kitchens/forums/Thank you,
Ross
I apologize in advance if this seems like a duplicate. I’ve read a number of posts on properly creating a BBPress theme, but my CSS refuses to load. Here is how I have things setup.
wp-content/
++++ main-theme-child/
++++ +++ bbpress.php
++++ +++ bbpress-functions.php
++++ +++ bbpress/ <- contains all of the files from the default theme.
++++ +++ css/bbpress.cssFor whatever reason, the css won’t load. Any thoughts?
So, I want to edit the new user admin notification email to include BuddyPress custom profile fields.
This is the email currently:
“New user registration on your site [sitetitle]:
Username: [username]
E-mail: [email]”
Does anybody know how? I have tried a few plugins that are supposed to work, even one that supposedly works with BuddyPress, but I have not been able to get them to work at all. I still get the default email.
Thanks..
After weeks trying to find something that would work, I found the code on wordpress forums to remove completely gravatars (and redirects it was causing.. )
here is it:
function bp_remove_gravatar ($image, $params, $item_id, $avatar_dir, $css_id, $html_width, $html_height, $avatar_folder_url, $avatar_folder_dir) { $default = get_stylesheet_directory_uri() .'/images/mystery-man.jpg'; if( $image && strpos( $image, "gravatar.com" ) ){ return '<img src="' . $default . '" alt="avatar" />'; } else { return $image; } } add_filter('bp_core_fetch_avatar', 'bp_remove_gravatar', 1, 9 ); function remove_gravatar ($avatar, $id_or_email, $size, $default, $alt) { $default = get_stylesheet_directory_uri() .'/images/mystery-man.jpg'; return "<img alt='{$alt}' src='{$default}' height='{$size}' width='{$size}' />"; } add_filter('get_avatar', 'remove_gravatar', 1, 5); function bp_remove_signup_gravatar ($image) { $default = get_stylesheet_directory_uri() .'/images/mystery-man.jpg'; if( $image && strpos( $image, "gravatar.com" ) ){ return '<img src="' . $default . '" alt="avatar" width="60" height="60" />'; } else { return $image; } } add_filter('bp_get_signup_avatar', 'bp_remove_signup_gravatar', 1, 1 );As I am now planning to disable buddypress completely. I am looking for an easy way to let users upload their avatars in bbpress, anyone tried it already?
Hello hello,
This is my first post so sorry if i post it in the wrong place :$
I wanted to hide my forum by default,I achieved this. Having achieved this, my question: Where in earth do I change the friendly “Oh bother! No forums were found here!” message???? Can’t find it anywhere! I am using bbpress 2.4
Thanks in advance
Topic: Forum Archive page conflict
Hi guys,
Have a problem working out how to use the archive page and shortcode to create a forum index.Currently, the default archive page created for forums gives me an unstyled archive page without a H1. My archive page slug is “forum”
So, Instead of this I have decided to make a regular page, name it forum and stick the shortcode for the forum index in. Perfect!! I thought…..
2 The issues remain. Although the index page looks good as a regular page, the breadcrumbs when in a single forum / topic take users back to the archive page, not the new forum index page.
The second is that the archive page actually still exists…. I would like if possible to be able to overwrite access o the old forum archives when creating the forum index.
Basically, I don’t want 2 archive or forum index pages to exist for the site.