Search Results for '+.+default+.+'
-
Search Results
-
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 )); ?>Topic: security
I am new to WordPress/BBPress and am coming from PHPBB.
I am creating a bulletin board using the BBPress plug-in for WordPress. I’m not planning on really using WordPress (yet) for my website. It’s just a few static pages, a css file, and, soon, a forum.
My board will be for just fifty people and I would like to create all the accounts myself so that I don’t have to worry about spam posts from bogus accounts.
- In PHPBB, there is a control panel option to disable the ability to create new accounts? I don’t see that option in WP/BBPress. How would I do that?
- I think I read on this forum that I can make my board invisible to non-members, but that is not a control panel option. What’s the prefered way for a newbie to do that?
Also, I read an article on WP security, Top 5 WP Vulnerabilities and How To Fix Them.
http://www.esecurityplanet.com/open-source-security/top-5-wordpress-vulnerabilities-and-how-to-fix-them.htmlVulnerability # 1: SQL Injection & URL Hacking.
Vulnerability # 2: Access to Sensitive Files.
Vulnerability # 3: Default Admin User Account.
Vulnerability # 4: Default Prefix for Database Tables
Vulnerability # 5: Brute-Force Login Attempts3, 4, and 5 seem pretty obvious to me. However, for help with mitigating the threat of Brute-Force Login Attempts, the author refers to two plug-ins: Limit Login Attempts and Better WP Security. Are these the preferred plug-ins? Although, I really must ask you guys why these two plug-ins aren’t written into the core software in the first place? In fact, shouldn’t the control panel also allow me to limit the creation of new accounts, as well?
I know BBPress, as a plug-in, is new, but WordPress has been around for ten years. Are the features that I list above planned for future releases, or is security not really an issue for the WP community, but rather up to each user?
Before I forget, how do I implement the solutions to the first two vulnerabilities? Do I just copy the code that the author lists into my .htacess file?
I don’t want to sound critical of WP/BBPress, or be the guy who is constantly comparing it to PHPBB. I just want to know the mentality behind it and, really, what I am getting myself into. I had a pretty secure PHPBB board that was easy to set-up and manage, but it was boring and looked like every other PHPBB board out there. I was told that WP/BBPress is customizable (some guy on your board showcases a beautiful board about Stratoliner motorcycles) and more secure than PHPBB. I hope to explore these features without becoming a full-time board developer nor becoming a php guru.
Thanks. I really appreciate this forum. I have been reading all sorts of posts. So if these questions have been answered, please don’t flame me; it’s not for lack of searching.
I am currently trying to customize the default BBPress profile page. For each forum user’s profile I would like to display the user’s description (which for a WordPress user account is called “Biographical Info”. What functions or how can I display this?
Just curious, i’ve worked with bbPress before but it looks like the WordPress Hierarchy is broken by bbPress.
http://codex.wordpress.org/images/1/18/Template_Hierarchy.pngNormally i could make a page template and call it page-forums.php to make sure WP would use this page template for a new page created by the slug forums
But for some strange reason this doesn’t work anymore with bbPress 2.2.1 and WP 3.5 Beta and Twenty Twelve.
How can i make sure WP or bbPress uses a different page template then page.php for showing the forums and category -index on the forums slug?
I’ve tried everything, Copy/Paste the page-front-forums.php from the Extra’s folder to my Theme’s Root -> Created a new page inside my Dashboard and called it Forums… Nope doesn’t work.. Even when i use the Shortcode [bbp-forum-index] on that last created page.. It keeps using the page.php by default..
Anybody who can help ?
Because this it totally not very cool 🙂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
Topic: search stuff
He there… I got my own wp theme, within it a folder called bbpress for overriding files like loop-topic.php. No big deal, everything works great. But… when doing a search in the forums I would like it to use bbpress-search.php in mytheme/bbpress/ and not make use of the default search.php. I need this due styling and I need way less stuff in the results. Just want topic title and a little excerpt that’s it.
So… main question, can I create a bbpress-search.php or something so when I do a search bbpress uses that file for showing it’s results. If so do you have any pointers?
second… why isn’t there a default search function in a forum plugin like this?
third… when is the next version comming and is there a new feature list somewhere? Thanks! Paul
Hi there – I have a forum on a membership site running:
bbpress 2.1.2, buddypress 1.6.1, wordpress 3.4.2
with a premium theme.
The site owners have asked if we can add the ability for users to upload photos and embed video into forum posts. The rich tinyMCE editor doesn’t include the standard media uploader button, and even though in my Settings for bbPress I have the option to embed video/flickr/etc checked, when I paste the code in it defaults to a link instead of the embed object. I’m not very familiar with either bbPress or buddypress, so any help is greatly appreciated. I’ve attached a screenshot of the current forum editor.
Because the site is a membership site and the forums are protected, the link won’t help much but here it is: http://www.innercircletheater.com.
I’m more than happy to pay someone to implement these components. Also, I’ve tried adding the bbpress post tools plugin, but it breaks my theme.
Thanks!
Shannon
Hello,
I am just wondering if this is how it suppose to work. I was testing the user’s page in bbpress and I update my bio and when I hitted the update profile button it seemed that it worked ok. Later on I was in my WordPress user profile when I noticed that most of my settings were reset to defaults. I shouldn’t updated my profile through bbPress? Or there is a bug?
Thanks,
PS: I am using WP 3.4.2 and bbP 2.1.2
