Search Results for '+.+default+.+'
-
Search Results
-
I love the layout: http://bbpress.org/forums/ The forums on the left, and a big Latest Topics are on the right. Tags and such in the left too. I keep reinstalling my bbPress but no matter what I do, I cannot get my forums to show up like this. See here:
http://covenantvoice.com/forums/
I just want to fix the layout. Any idea on what I’m doing wrong? I’m using the very latest bbPress, 2.1.2.
What can i do to overwrite a bbPress Core function and develop my own function..
Let say i want to overwrite the default bbPress breadcrumb tag.
I found the Core code inside a Core-template and i pasted this code inside a new PHP document changed all the bbp_ names of all functions to bbp_shmoo_ > Saved it.
Loaded this new file from the inc. folder into my themes functions.php with the require_once tag..
Change the PHP code inside my forum template from bbp_breadcrumb(); to bbp_shmoo_breadcrumb(); but this doesn’t work, why does it break my theme ?
I need a before_link and after_link array.
This is what a breadcrumb looks like, by default made with a List because it’s a navigation.
http://twitter.github.com/bootstrap/components.htmlHi everyone.
I’m developing a web site with multilingual support, using WordPress 3.4.2 and the Polylang plugin 0.9.4 . I’d love to add a forum to the site, so I downloaded, installed and activated bbPress 2.1.2 .
The first problem was that bbPress didn’t switch from one language to another, always keeping the default WordPress language. I solved this calling again bbpress()->load_textdomain() before loading the header template:
function cbp_bbPressTranslate(){ bpress()->load_textdomain(); } add_action('get_header','cbp_bbPressTranslate');
This worked great, but soon other problem appeared. If topics and replies doesn’t have translations, they doesn’t show up. I can add translation posts for they from the admin panel, but of course my users can’t. I’ve isolated the problem to the Polylang plugin: switching back to Twenty Eleven theme and deactivating all plugins but Polylang didn’t do anything. Deactivating Polylang showed the topics again.
I’ve tried other multilingual plugins like xili-language, which works great with bbPress, but lacks of customizing menus panel, wich I need on my site.
Anyone can help me? Encouraging words will be welcomed too! 😀
Hi, Can you help? In bbpress my favorites link returns page not found. http://www.thsotestsite.dev/members/admin/forums/favorites/ the rest of forum works fine.
The favorites in BuddyPress work fine http://www.thsotestsite.dev/members/admin/activity/favorites/
And Yes running both Group and site wide forums and are playing nice together for the most part:)
WordPress: Current version
BuddyPress: Current version
bbPress: Current version
Theme: Frisco and BuddyPress Default Both have same results
all running on my dev. server (DesktopServer)Is this a bug or config problem?
can anyone give clue how to fix this?
Thanks
JamesHello BBP Forum,
I got nearly everything set up with the BuddyPress and bbPress forum plugins, however there’s a few tweaks I need to finish it off and I’m trying to figure out which files I need to adjust the html settings to match my custom theme of my other pages.
Going from these directions: http://codex.bbpress.org/legacy/step-by-step-guide-to-creating-a-custom-bbpress-theme/ I created a child from my Alyeska theme and copied the Default bbPress Theme to the child theme folder. This helped get the forum page a little closer to my custom theme style, but still not there yet; the sidebars are missing, the forum BG is white, amongst a few other issues, but it’s getting closer. I’m just not sure where the CSS master file for this page is, I tried editing the two files in the child_theme/bbp/CSS folder but it didn’t make any change: http://ouyagamingsource.com/forums/, any ideas?
Thanks ahead of time!
–Bryan
Hello, i didn’t know a better title but i’ll try to explain what i meant to say.
I don’t understand why it’s very easy to get all info that you need from the Topic Starter and when you need the same info from the last person who has replied on a topic it’s very difficult.
Look at my screenshot and you’ll see what i’m trying to say.
http://i48.tinypic.com/33op6wz.pngEverything on this picture is done by CSS the only images you’ll see are the Gravatars,
At the left side it’s the Gravatar of the Topic Starter with a Hover effect when i took the screenshot.I didn’t use the default PHP code that bbPress provided because it wasn’t very clean so i searched around and found a few simple and easy to understand PHP tags who could help me build my custom lay-out.
php bbp_topic_author_url(); = provides a clean urlphp bbp_topic_author_display_name(); = provides clean text without url
php bbp_topic_author_avatar( $topic_id = 0, $size = 60 ); = provides a gravatar with url
I love those simple codes because i can add and wrap HTML around it and position everything i need on every corner of the website if i would like so..
But when i try to make the same Gravatar at the right side it’s getting difficult because there aren’t a few simple tags i can use to get the same clean code from the last person who has posted inside a topic.
php bbp_author_link( array( 'post_id' => bbp_get_topic_last_active_id(), 'type' => 'avatar', 'size' => 60 ) ); = provides a gravatar with url okayphp bbp_author_link( array( 'post_id' => bbp_get_topic_last_active_id(), 'type' => 'name' ) ); = this doesn't provide clean text but a name + url
It’s a huge bummer because i can’t make the Hover effect on the Gravatar without clean code tags.
I am using BuddyPress 1.6.1, bbPress 2.1.2 and WordPress 3.4.2
I follow the guide here.
In the end, I did the trick pointed out by Sarah Gooding because mywebsite.com/forums was blank right after the above installation
- Created a page called “Forums” with permalink mywebsite.com/forums
- Insert bbPress shortcode [bbp-forum-index] into “Forums” page
My questions are
1) How do I customise page templates for the forum e.g. Forum page, topic page etc.
My current theme is a child theme of twentyeleven and it has the following structure
> themes/bp-twentyeleven/
>
> /activity/
>
> /blogs/
>
> /forums/
>
> index.php
>
> forums-loop.php
>
> /groups/
>
> /members/
>
> /registration/
>
> header.php
>
> sidebar.php
>
> style.css
Notes
- Apparently, bp-twentyevelen/forums/index.php is being ignored.
- The reason for this set up is that I need the site to looks like TwentyEleven and has BuddyPress’ functionality at the same time
2) How do I make sure that bbPress functions will work for my site e.g. do I copy and past all the functions in functions.php of bbPress’ default theme over my theme’s functions.php?
3) How do I ensure that whatever I will get from 1) and 2) (probably from bbPress experts somewhere) will not conflict with BuddyPress’ functionality or my theme?
BuddyPress setting screenshots are here and here.
bbPress settings screenshot is here.
I’m just curious because i would like to edit the author’s gravatar and how it’s showed in the source to get more CSS options.
When i use the bbp_topic_author_avatar() version inside the loop-single-topic.php file it shows a perfect 40 pixels gravatar like explained on the website with all possible bbPress code tags.
Great but when i try to make this gravatar 80 pixels instead of the default 40 there is something wrong because the code doesn’t accept my array when i try do this.'80' )); ?>
Even when i do this it doesn’t work.
80 )); ?>