Search Results for 'code'
-
AuthorSearch Results
-
April 30, 2012 at 7:17 pm #113373
In reply to: Creating my own wrapper for bbpress forums, but……
Arion
MemberSure.
I have the Black Label wordpress theme on my site and as such it comes with a fullscreen background image option on every post and page. I bought this theme for this very reason. Now, when I plugged in bbpress, I had to use the shortcodes on the main forum page which was no problem but when I click on the forum or the topic links, I get sent to a page that instead of saying “edit page” in the admin bar, it says “Edit forum” or “Edit topic” and doesn’t allow me to set the background image.
Now I looked into creating a default background image by changing some .css but this sets that image for ALL the pages, (page.php) and though it is overridden by the set background image in the theme, it isn’t pleasing to my eye to have one background image when you open and a second or two later have another one pop up on top of it. So I trashed this option.
Did some research on how I can resolve this problem and found a previous thread here: https://bbpress.org/forums/topic/bbpress-20-shortcodes
Needless to say that it interested me that I could create my own wrapper and have the forums and topics open up in a special page and have a set background for that page alone that won’t affect my other pages.
Well, this is the skinny of my situation. I hope I gave you enough info this time, sorry for not doing it from the get go. Can I do this? Where do I change the default wrapper to my new one? I’m imagining it’s in the function sets. Or perhaps there is an even better solution to my situation. What do yo suggest Brandon?
Oh, and thanks for your time
April 30, 2012 at 5:28 pm #113303In reply to: Are you the developer of bbPress? Take a look here
John James Jacoby
KeymasterHappy to help, but I’m only one person; can’t do it all. It’s way more helpful to everyone (and the project) if you dive into the code and figure it out in your free time rather than relying on mine.
Also, no reason to create one topic and point to your old one. It’s spammy. Closing this one.
April 29, 2012 at 2:52 pm #106572In reply to: How do I make the forum homepage in 2.0?
wexler
MemberGetting the same issue as #smell-bag. Not sure why. Here’s what I’ve tried.
Slug is set to: forum
(went to WP screen options and [x] slug so that option became visible.
I created a blank page and called it: Forum
and added shortcode: [bbp-forum-index]
I set Permalink to: http://mydomain.com/forum/
Under WP settings/forum…
Archive Slugs
Forums base: forums
Topics base: topics
Single Slugs
Forum Prefix [x]
Forum slug: forum
Topic slug: topic
NOTE: I’ve tried combinations/permutations changing these settings and it seems to modify the breadcrumb link of the word: forum
to something other than what my page points to.
If I create the page with a permalink:
then the breadcrumb URL for: forum(s) suggests it will link to:
if I reverse it with the plural version (forums)
then the breadcrumb URL becomes the singular format: forum.
Suggestions?
April 29, 2012 at 7:31 am #113324In reply to: How to install
humanrights4tibet
Member– go to your WordPress admin backend
– go to add new plugin
– either search for bbpress plugin, or if you’ve downloaded the .zip already, go to upload tab and navigate to where you downloaded it to
– press install now
– activate it
Then you get a new section in your dashboard – forums, topics and replies
Off you go
April 28, 2012 at 2:59 pm #112446In reply to: Using WordPress profile rather than bbPress profile
dpmcalister
ParticipantThanks, I’ll look into that
April 28, 2012 at 12:53 pm #112888In reply to: Remove Topic Tags and Topic Type
pimarts
ParticipantAs for the original post in this topic. You can simply hide them with CSS. Something like this should work:
.bbPress #bbp_topic_tags, .bbPress label[for="bbp_topic_tags"], .bbPress .bbp-topic-tags, .bbPress label[for="bbp_forum_id"] {
display:none !important;
}
April 28, 2012 at 12:25 pm #98947pimarts
ParticipantDid any of you begging for this theme tried to mail the guy who runs css-tricks?
Aside from that the CSS is all there, so if you know what you’re doing you could ‘easily’ code it together yourself.
April 28, 2012 at 5:44 am #111557In reply to: Integration issues with Wishlist Member
freesoftwaredown
MemberThis thread solved few of my doubts. Thanks @johnny-rocket
April 28, 2012 at 1:48 am #44242Topic: Creating default object from empty value
in forum Troubleshootingxspace1
Memberhi~ bbPress is really great and I do love it. however, when i transferred my wordpress to a new server. something bad happen.
when I enable the bbPress, an error message shows up:”Warning: Creating default object from empty value in
webwp-contentpluginsbbpressbbp-includesbbp-core-compatibility.php on line 84″I guess it has something to do with this code ‘$bbp->theme_compat->theme = $theme;’
could anyone give me some instruction?
the theme i use is the default Twentyeleven Century.
thanks a lot in advance!
April 27, 2012 at 8:42 pm #113357In reply to: Process to adapt a theme for bbpress?
baldg0at
ParticipantHere’s a real basic rundown of what I did.
Add this to your theme’s functions.php file
add_theme_support( ‘bbpress’ );
Create a Child theme for your current theme — https://codex.wordpress.org/Child_Themes
Copy the files from plugins>bbpress>bbp-themes>bbp-twentyten into your child theme folder.
Go to your WP Admin and activate your child theme
Edit the child theme as needed to match your site. You may be able to get by with just editing yourchildtheme>css>bbpress.css, but you can change any of the theme files to make the forums look however you want.
April 27, 2012 at 5:41 pm #77245kdoole
MemberRather than hacking the core, you should put that code into your theme’s functions.php. That’s what apply_filters and add_filter is for!!!!!!!!!!

Add this to your theme’s functions.php:
add_filter( 'get_topic_title', 'strip_the_title_slashes', 20, 2);
function strip_the_title_slashes( $title, $id ) {
return stripslashes( $title );
}
add_filter( 'get_post_text', 'strip_the_text_slashes', 20, 2);
function strip_the_text_slashes( $text, $id ) {
return stripslashes( $text );
}April 27, 2012 at 7:33 am #113311In reply to: Categories not showing WordPress
Projectredemption
Memberi have thats the thing it saves all my forums and stuff after the reinstall
April 27, 2012 at 7:31 am #110711In reply to: What template does this forum use
mextena
MemberOld custom built theme for BBpress. Most of the Automattic sites are just like that
April 27, 2012 at 5:39 am #113308In reply to: Categories not showing WordPress
Projectredemption
MemberReally need help with this
i need to remove all old files and get new ones
April 27, 2012 at 4:46 am #113307In reply to: Categories not showing WordPress
Projectredemption
MemberHow can i do a complete uninstall of bbpress?
So i can reinstall and everything should work
April 26, 2012 at 10:06 pm #113335POS2012
ParticipantI had built my own theme, but when installing the BuddyPress I did choose to use the default BuddyPress theme.
I will probably edit my theme to work with BuddyPress. It says that I can go through a step by step edit of my theme, so I will try that

Right now I am wrestling the fact that I can not get it into my language. Yet…
April 26, 2012 at 9:11 pm #113333POS2012
ParticipantOk, I tested now on the test-server.
Write my experience here for you who wonder yourself:
I have Wp lasest installed
I had installed and tested bbPress 2.1 the last week
I now installed BuddyPress as a plugin and did the installation without activating the forum.
Then did go back to the BP settings and activated site wide forums. Then voilá the forum was integrated part of BuddyPress.
Way to go!
I like
April 26, 2012 at 8:08 pm #112444In reply to: Using WordPress profile rather than bbPress profile
dpmcalister
ParticipantSorry to “bump” this, but I was really hopeful that someone would be able to help
April 26, 2012 at 3:54 pm #44396lmoon
MemberHi Everyone!
How on earth do I get rid of the brackets that are at the end of every froum title line
ie: General Chat about Moving/Settling In (1, 1)
Viewers don’t know what there for, my client wants them removed and I can’t find the right line of code to do this.
I would really appreciate someones help on this.
THANK YOU
April 26, 2012 at 8:34 am #112725In reply to: Private messaging in bbPress 2?
POS2012
ParticipantIs this a plugin I can test now, or “in the works”?
April 25, 2012 at 10:43 pm #113331In reply to: Can`t find registration field
spelly1337
MemberI only want people to register to the forums
isnt this possible?
April 25, 2012 at 9:40 pm #113330In reply to: Can`t find registration field
POS2012
ParticipantIt is the same as to register in WordPress.
http://yourdomain.com/wp-login.php?action=register
When registered in WP they can participate in the forum. At least my test forum works like that.
April 25, 2012 at 9:19 pm #113250In reply to: Tags widget / function for bbPress 2.0+
POS2012
ParticipantAny developer / code genius that would like to look at this?
April 25, 2012 at 5:43 pm #113286POS2012
ParticipantOk, I had to install the very last WP.
Now it works, but not with the embed code. I need to use the
http:// http://www.youtube.com/watch?v=(videoIDhere)
That is the best also I recon
April 25, 2012 at 5:06 pm #113284POS2012
ParticipantHave you done anything else than installing bbPress 2.1?
Any configuration?
I have tried to paste YouTube original URL and the short embed URL, but none of those are working. I’ll do some more testing with turning off different plugins to see if that affects it.
Thanks for clearing it up
-
AuthorSearch Results