Search Results for '+.+default+.+'
-
Search Results
-
I have an issue that seems to be with the theme I am using. When I install bbPress, it doesn’t register a title when I look at my view source code. I also get an “Error 404” message in the breadcrumbs of my site’s theme (NOT in the bbPress breadcrumbs).
I don’t get this when I switch to a default WP theme, so it seems related to my theme (WPzoom’s Manifesto).
I have run a buddypress update plugin thinking this might help, but it doesn’t. I also get this message with BuddyPress compatibility: “Your active theme does not include bbPress template files. Your forums are using the default styling included with bbPress.” (I’m fine with the bbPress default styling, by the way. Just wondering if the first part of that message might relate to my problem in any way.)
Thanks in advance for any suggestions.
I am using custom theme templates from bbPress within my own theme. So no shortcodes or creating pages etc.
What I am trying to do is to show the list of most recent topics below the forum list on the forum homepage.
I am using the following code:
<div id="forum-front" class="bbp-forum-front">
<div class="entry-content">
<?php bbp_get_template_part( 'bbpress/content', 'archive-forum' ); ?>
<br><br>
<h3><?php _e( 'Recent Topics: ', 'bbpress' ); ?></h3><br />
<?php bbp_get_template_part( 'bbpress/content', 'archive-topic' ); ?>
</div>
</div><!-- #forum-front -->This seems to work, however, the pagination for the topics is wrong. Currently it tries to go to /forums/forum/last-forum-title/page/2/
It should go /topics/page/2/
Using the default bbPress templates within my own theme, what would I add to the archive-forum.php file in order to show recent topics with pagination that works right?
*I saw that devpress managed to pull it off, so asked over there as well.
Topic: User Profile link error
If a permanent link to non-default, like /% postname% / or other custom structures, user name if the number (001,999,1234 etc.) can not link to the profile.
I can’t find any options to change the theme from the default. Can anyone help?
Thanks,
Ryan
I’m trying to show a logged-in user’s favorite topics on a single page like the page-front-topics.php template that’s included in the bbpress default theme. I used the exact same syntax as in that file but instead called in another template I created, content-archive-favorites.php, which contains the exact code (minus the containing div) from the user-favorites.php file.
It just shows that the user has no favorites.
Any help would be greatly appreciated!
Has anyone been able to get bbPress 2.0 and the Thesis theme to work together?
I have tried a number of things but I just can’t get it to work.
If I do nothing and rely on the default theme the forum is totally unusable. Not only is there no styling but none of the functionality works (no links appear for a start!).
I have tried creating a child theme as per instructions on this forum, tried using shortcodes and I have also tried copying the relevant parts of the default theme over to the thesis theme folder.
This seems to get slightly better results in the sense that I get the forum functionality, but there is no styling. You can see my current attempt here:
http://www.jezza101.co.uk/forums
It seems to me like part of the theme’s framework is somehow breaking bbPress, there must be some fundamental incompatibility in there somewhere – but I really don’t know enough to debug this.
I have asked over at the Thesis support forum but there seems to be little understanding of what’s going on over there. Is there anyone over here who has any suggestions?
Hi,
I’m currently implementing bbPress compatibility support for my theme (Graphene). I chose to go the route of using the default theme that comes with bbPress 2.0, and just add additional styles to make bbPress compatible with my theme.
Since I’m not using the
add_theme_support( 'bbpress' )
switch in my theme, bbPress displays a persistent nag in the Appearance section of WP Admin:Your active theme does not include bbPress template files. Your forums are using the default styling included with bbPress.
How can I disable this nag? It doesn’t matter that the forums are using the default styling included with bbPress, since the additional custom stylesheet I implemented in the theme takes care of integrating the styling into my theme’s styles.
Thanks!
Howdy,
I’m working on a bbPress Standalone version, Is is possible to restrict to choose some predefined tags during creating a topic?
Lets suppose, I’ve created 100 specific tags for my forums. I don’t want to allow users to add more tags. That’s why I want to add these tags list into template’s “post-form.php” so that user can choose predefined list of my tags then they can choose forums and after that they can add topic.
Like I’m looking the following fields:
—-
Topic title: <input default field>
Post Field: <Input default field>
Pick a section: < drop-down default forums field >
Pick a Tag:<drop-down/checkbox my predefined tags>
Then Submit
—-
I digg into bbPress, and I found the following solution:
http://bbpress.org/forums/topic/limit-tags-to-a-pre-defined-list
It is working fine on Topic page. But I need exact thing but on post form.
Can anyone help me to achieve this?
I will be great thankful!
Topic: Installation help.
Hi there,
I have tried both ways to install and setup. One is to download then FTP upto the server (www.sharkshout.com/forum) and nothing happens when i go there. And also install new plugins which installs the bbPress.
Difference between doing it the two ways?
If i install the plugin i can add the Topics / Forums etc but they dont show anywhere.
Please can someone help shed some light here. Its a fresh new website, clean default template and nothing setup or installed yet.
thanks,
Mark
What I want to achieve:
I’ve installed bbPress as a plugin for WordPress. I want to make a few simple changes to the bbPress bread crumb function:
bbp_breadcrumb();
I need the bread crumb separator to be double right arrows rather than the default single arrow:
I want to replace > with ».
I also want to add “You are here:”
Why I need this:
I need to match the styling and position the Yoast Breadcrumbs. Yoast Breadcrumbs is installed as a plugin for WordPress. It breaks on bbPress pages.
What I’ve tried:
Using conditions and CSS, I disabled the Yoast bread crumbs on bbPress pages. I also disabled the default bbPress bread crumbs but called it just beneath my primary navigation. Effectively, I’ve “moved” the bbPress bread crumbs.
To change the bread crumb separator I’ve researched JavaScript and jQuery string replacements but I’ve been advised that this is “hacky”.
My question:
What’s the conventional way of changing the output of bbPress function?
I can provide additional JavaScript, PHP and CSS code if required.
Live demo:
These two live examples highlights the two types of bread crumbs:
Yoast bread crumbs: http://www.directsponsor.org/forums/
bbPress bread crumbs: http://www.directsponsor.org/news/
Hey guys. I just integrated my WP site to BBPress. Right now I am having some problems with the default “forums” page that was created. The right sidebar is not displaying on that page, but when you go to the topics you can see it. Do you know how to fix this issue? Sorry I am really a beginner in BBPress.
http://www.kurtzky.com/forums/
Thanks in advance!
How can I output the topics loop ordered by # of replies? I know I can grab them via wp_query, but I’m not sure how to also grab voices, latest poster avatar, etc. (to mimic the default topic loop).
Any ideas? Thank you!