Search Results for 'code'
-
AuthorSearch Results
-
November 4, 2010 at 8:24 pm #66492
In reply to: TalkPress suggestions
kenburcham
Memberbump.
after reading wordpress and bbpress forums and posts and … finally coming to the realization that what I’m looking for is this “bbpress channels” extension. I’d love to know when it might be available? We’re going to unleash bbpress on hundreds of sites via a multisite server if we can get bbmu to work… I ‘spose I can write my own extension, but it’d be more fun to install and tweak yours.
thanks!
November 4, 2010 at 2:16 pm #94555In reply to: bbPress 2.0 – Updates
wildkyo
MemberThanks Rick Pedley.

Anyone has a demo of the plugin running in a webiste with a child theme?
November 3, 2010 at 10:04 pm #97143In reply to: Justin Tadlock's Forum Plugin for WP
Justin Tadlock
ParticipantThanks to JJJ for pointing this topic out to me.
Right now, my forum plugin isn’t planned for public release. I’d much rather see a community-supported plugin because a lot more can get done. The plugin could simply be better developed and have better support if it’s a community-run project. Make no mistake, a plugin like this is massive amounts of work, more than one person can realistically handle. Honestly, I don’t want to be the only person developing and supporting a forum plugin.
The reasons I’ve been doing my own thing rather than fully devoting my time to bbPress:
1) I just wanted to see if I could do it for fun.
2) I had some projects that needed basic forum functionality that couldn’t wait for alternate solutions.
3) Everybody wants something, mostly things I don’t believe belong in a lightweight forum plugin.
4) I’ve been hesitant to get more involved in bbPress because I don’t want to deal with all the drama here.

I just finished three months of intense writing for a WP plugin book, so my time has been limited for a while. I’ve still got book-related things this month as well. Once this process is done, I plan to devote more time to the bbPress plugin.
What we want:
These are the things I believe most of us want, which is the reasons I put together a plugin and the reasons for the bbPress plugin. This comes down to two things:
* A plugin that easily integrates into the WordPress user/role and login system.
* Forums that can be managed from our WP admins.
It’s basically about being able to run forums without a lot of hassle.
The direction I’d like to see the bbPress plugin go:
* Stick with the philosophy: lightweight and basic.
* Allow plugins to extend anything needed beyond basic forum functionality.
* Use the functions WordPress provides where possible.
* Forget backwards-compatible hooks and functions. Build a new system.
November 3, 2010 at 10:04 pm #102243In reply to: Justin Tadlock's Forum Plugin for WP
Justin Tadlock
ParticipantThanks to JJJ for pointing this topic out to me.
Right now, my forum plugin isn’t planned for public release. I’d much rather see a community-supported plugin because a lot more can get done. The plugin could simply be better developed and have better support if it’s a community-run project. Make no mistake, a plugin like this is massive amounts of work, more than one person can realistically handle. Honestly, I don’t want to be the only person developing and supporting a forum plugin.
The reasons I’ve been doing my own thing rather than fully devoting my time to bbPress:
1) I just wanted to see if I could do it for fun.
2) I had some projects that needed basic forum functionality that couldn’t wait for alternate solutions.
3) Everybody wants something, mostly things I don’t believe belong in a lightweight forum plugin.
4) I’ve been hesitant to get more involved in bbPress because I don’t want to deal with all the drama here.

I just finished three months of intense writing for a WP plugin book, so my time has been limited for a while. I’ve still got book-related things this month as well. Once this process is done, I plan to devote more time to the bbPress plugin.
What we want:
These are the things I believe most of us want, which is the reasons I put together a plugin and the reasons for the bbPress plugin. This comes down to two things:
* A plugin that easily integrates into the WordPress user/role and login system.
* Forums that can be managed from our WP admins.
It’s basically about being able to run forums without a lot of hassle.
The direction I’d like to see the bbPress plugin go:
* Stick with the philosophy: lightweight and basic.
* Allow plugins to extend anything needed beyond basic forum functionality.
* Use the functions WordPress provides where possible.
* Forget backwards-compatible hooks and functions. Build a new system.
November 3, 2010 at 9:04 pm #96395In reply to: Mobile bbPress (using XML-RPC api)
master5o1
Participant^ I have noticed on my HTC Legend that when I look at http://dump.master5o1.com/mobi it shows it differently to http://m.tartarus.co.nz/
Not sure why that is, they’re the same code and the same css.
Tell me if it looks better in http://m.tartarus.co.nz/
November 3, 2010 at 9:04 pm #101495In reply to: Mobile bbPress (using XML-RPC api)
master5o1
Participant^ I have noticed on my HTC Legend that when I look at http://dump.master5o1.com/mobi it shows it differently to http://m.tartarus.co.nz/
Not sure why that is, they’re the same code and the same css.
Tell me if it looks better in http://m.tartarus.co.nz/
November 3, 2010 at 8:57 pm #94554In reply to: bbPress 2.0 – Updates
Rich Pedley
MemberAdding a child theme is incredibly easy, check the really minimal one you can have:
https://codex.wordpress.org/Child_Themes#Example_of_a_basic_Child_Theme
But if you’ve developed a custom one yourself, then adding the necessary files/functions to that theme would be easy as well.
November 3, 2010 at 7:46 pm #94552In reply to: bbPress 2.0 – Updates
Rich Pedley
MemberIf needs be I’ll take a look when the time comes. Child themes aren’t that difficult
November 3, 2010 at 5:38 pm #94550In reply to: bbPress 2.0 – Updates
John James Jacoby
KeymasterThe plugin will have shortcodes and widgets to attempt to ease people in to integrating bbPress into existing themes, but because you can’t easily introduce completely new functionality into a theme that isn’t designed to handle it, there will be limitations to that method.
For the most mileage, you’re better off copying the files out of the bbp-twentyten theme and into your existing child theme and modifying the HTML and CSS to taste. (You are using a child theme, right?
)Topic and reply counts are next on my list of todo’s. They are the biggest source of confusion right now, justifiably so.
November 3, 2010 at 5:35 pm #54452In reply to: Add nofollow to links
cordoval
Memberall the code got messed up while posting on here, I wrapped it between
but would not work properly someone does know how to make it look pretty?November 3, 2010 at 5:33 pm #54451In reply to: Add nofollow to links
cordoval
Memberhi ya’ll
I am sorry I was not back earlier on this post but I have managed to solved everything without touching the core and my method is extensible to whatever you want to do.
//add target=_blank to post links
function bb_target_blank( $text ) {
return preg_replace_callback('||i', 'bb_target_blank_callback', $text);
}
function bb_target_blank_callback( $matches ) {
$text = $matches[1];
return "";
}
add_filter(‘post_text’, ‘bb_target_blank’);
If you require further support then you can always reach to me at cordoval at gmail dot com and you can send me a small token of your appreciation via paypal. Thanks.
November 3, 2010 at 5:02 pm #97142In reply to: Justin Tadlock's Forum Plugin for WP
qprints
MemberCool news
November 3, 2010 at 5:02 pm #102242In reply to: Justin Tadlock's Forum Plugin for WP
qprints
MemberCool news
November 3, 2010 at 3:50 pm #94545In reply to: bbPress 2.0 – Updates
ortixia
Participanti use atathulpa as well, but my site is not live yet. I am just switching it over to the child theme when testing the plug-in.
though topics and posts are showing up as 0 count, the posts are coming up in my forum, i believe, that they are working on this (i saw the code in an earlier post.)
@rich- i am in communication with the sharedaddy people over the plugin, it was mostly ironically funny, because i am finding the sharedaddy to be a bit of curse everywhere.
overall, as i do use atahualpa for my site, i will probably need to move to a different forum platform all together, or use bbpress stand alone. i wonder if the stand alone will continue to be worked on once the plug-in is official.
however, as i have time, i am willing to experiment a bit, because i feel that bbpress is worth the investment.
November 3, 2010 at 9:03 am #94540In reply to: bbPress 2.0 – Updates
OreilleMalade
ParticipantHi,
I’ve just started to test bbpress plug-in on a brand new website :
I installed, activated and created a new forum and a new topic inside this forum.
My problem :
http://windows-mobile.fr/forum >>> 404
http://windows-mobile.fr/topic/test1 >>> 404
(it redirects to http://windows-mobile.fr because of the WP plugin ‘link juice keeper’)
When I check my dashboard I can see :
Forum : test
Topics : 0
Replies : 0
I guess this is the problem. However I don’t understand it because when I look at the topic page it’s correctly linked with its parent forum. Am I just a stupid froggy or what ?

I’m using WP 3.0.1
My theme : Atahualpa Theme by BytesForAll
Any other info needed ?
Thanks for helping !
Best regards to all of you people,
Laurent
November 3, 2010 at 6:28 am #97139In reply to: Justin Tadlock's Forum Plugin for WP
John James Jacoby
KeymasterJust saw Justin’s most recent post on his forums which makes it look like we have some catching up to do!
November 3, 2010 at 6:28 am #102239In reply to: Justin Tadlock's Forum Plugin for WP
John James Jacoby
KeymasterJust saw Justin’s most recent post on his forums which makes it look like we have some catching up to do!
November 3, 2010 at 5:48 am #97138In reply to: Justin Tadlock's Forum Plugin for WP
John James Jacoby
KeymasterI’ve had a check-out for a while, but nothing of his has made it in yet.
Because there are only so many ways to do the same thing, our code is very similar with a few different methods here and there. His code is more mature in a few areas (mapping WordPress meta capabilities, topic/reply counts, additional query caching…) and it’s almost time to cherry pick his code and give props where due.

He started out using taxonomies for forums, but a lack of taxonomy meta thwarted that idea. We talked before either of us made too much progress on how to best do things so we would be loosely compatible with each other. I committed early on to using post types for data storage for everything to allow for easy forward compatibility with things like forum/topic/reply thumbnails, excerpts, revisions, etc… Justin and I both agreed it was the quickest way to go, we put our noses down and wrote some code, and we met a month or two ago in #bbpress on IRC and exchanged more code and ideas.
It was really cool for Justin to volunteer to share his code and approach. He spent countless hours getting things dialed in and that time is going to be greatly appreciated real soon.

It would have been even cooler to have him contribute patches directly to trac, but from what I recall of our talks he had some previous obligations that prevented it. I’m sure if I’m wrong Justin will catch wind and chime in.

Edit: I saw a reply in the above linked topic about him ‘turning over’ code to bbPress, but I don’t really see it like that. His code is always his, and he’s free to continue developing his plugin if he wanted to. No hard feelings.

The bbPress trac is public and the code is visible for everyone to see, versus Justin’s forum code which to my understanding isn’t something he wants openly available for download, or else I imagine he’d probably have it that way. I know from experience that supporting something as large as bbPress on top of other obligations can be a challenge, so I wouldn’t blame him for not wanting to volunteer additional time.
Either way I’m honored to have his respect and be able to have someone attempting to do something similar at the same time. It’s one of the first times in my professional career I’ve had what most people would consider ‘friendly competition’ without ever feeling like we were against each other in any way… not that I’ve ever had unfriendly competition… but you get the idea.
November 3, 2010 at 5:48 am #102238In reply to: Justin Tadlock's Forum Plugin for WP
John James Jacoby
KeymasterI’ve had a check-out for a while, but nothing of his has made it in yet.
Because there are only so many ways to do the same thing, our code is very similar with a few different methods here and there. His code is more mature in a few areas (mapping WordPress meta capabilities, topic/reply counts, additional query caching…) and it’s almost time to cherry pick his code and give props where due.

He started out using taxonomies for forums, but a lack of taxonomy meta thwarted that idea. We talked before either of us made too much progress on how to best do things so we would be loosely compatible with each other. I committed early on to using post types for data storage for everything to allow for easy forward compatibility with things like forum/topic/reply thumbnails, excerpts, revisions, etc… Justin and I both agreed it was the quickest way to go, we put our noses down and wrote some code, and we met a month or two ago in #bbpress on IRC and exchanged more code and ideas.
It was really cool for Justin to volunteer to share his code and approach. He spent countless hours getting things dialed in and that time is going to be greatly appreciated real soon.

It would have been even cooler to have him contribute patches directly to trac, but from what I recall of our talks he had some previous obligations that prevented it. I’m sure if I’m wrong Justin will catch wind and chime in.

Edit: I saw a reply in the above linked topic about him ‘turning over’ code to bbPress, but I don’t really see it like that. His code is always his, and he’s free to continue developing his plugin if he wanted to. No hard feelings.

The bbPress trac is public and the code is visible for everyone to see, versus Justin’s forum code which to my understanding isn’t something he wants openly available for download, or else I imagine he’d probably have it that way. I know from experience that supporting something as large as bbPress on top of other obligations can be a challenge, so I wouldn’t blame him for not wanting to volunteer additional time.
Either way I’m honored to have his respect and be able to have someone attempting to do something similar at the same time. It’s one of the first times in my professional career I’ve had what most people would consider ‘friendly competition’ without ever feeling like we were against each other in any way… not that I’ve ever had unfriendly competition… but you get the idea.
November 3, 2010 at 12:35 am #94535In reply to: bbPress 2.0 – Updates
Mark McWilliams
Memberwildkyo: Is there any date on which you think the plugin will be fully functional? I tried it today and it seems that it still needs much more development.
Still in the early stages yes, I agree, but the barebones of the plugin is actually there (or pretty much there) in my opinion. I have it running locally, and it works a treat, you can post a new topic from the frontend … for some that’d be all they wanted and needed!
I got the impression (somewhere) that JJJ wanted the final release out by the end of the year if I’m not wrong, but please don’t go and quote me on that, I’m very likely wrong!
November 3, 2010 at 12:14 am #97137In reply to: Justin Tadlock's Forum Plugin for WP
Mark McWilliams
MemberWhen Justin announced DevPress.com on his personal blog, the question was raised about the Forum Plugin he’d been working on, to which he replied:
We’re thinking of just contributing all the work back to the bbPress community for their plugin. I’ll post an update as soon as we know the direction we’re going in.
Something like a week later he posted:
The entire code base that we use to run our forums has already been handed over to the bbPress project. I sent JJJ a link to download it a few weeks ago.
As for if JJJ has used any of the code Justin had, I don’t know, chances are both were/would have been pretty similar (but I can’t confirm that!) — Only JJJ and/or Justin could tell us that!

Because of what Justin achieved, I’d love to get him on the ”bbPress (Plugin) Team” and help JJJ get this machine on the road. I myself have it running on a local install, the barebones is GREAT and I can tell you that!
Shame my coding knowledge isn’t as good!Anyway, there’s some info! HAHA
November 3, 2010 at 12:14 am #102237In reply to: Justin Tadlock's Forum Plugin for WP
Mark McWilliams
MemberWhen Justin announced DevPress.com on his personal blog, the question was raised about the Forum Plugin he’d been working on, to which he replied:
We’re thinking of just contributing all the work back to the bbPress community for their plugin. I’ll post an update as soon as we know the direction we’re going in.
Something like a week later he posted:
The entire code base that we use to run our forums has already been handed over to the bbPress project. I sent JJJ a link to download it a few weeks ago.
As for if JJJ has used any of the code Justin had, I don’t know, chances are both were/would have been pretty similar (but I can’t confirm that!) — Only JJJ and/or Justin could tell us that!

Because of what Justin achieved, I’d love to get him on the ”bbPress (Plugin) Team” and help JJJ get this machine on the road. I myself have it running on a local install, the barebones is GREAT and I can tell you that!
Shame my coding knowledge isn’t as good!Anyway, there’s some info! HAHA
November 2, 2010 at 6:44 pm #97082Ashish Kumar (Ashfame)
Participantyou can use instant password plugin to let them choose the password at that time and for auto logging them, you will need some code to get that done.
same goes for chatting stuff
November 2, 2010 at 6:44 pm #102182Ashish Kumar (Ashfame)
Participantyou can use instant password plugin to let them choose the password at that time and for auto logging them, you will need some code to get that done.
same goes for chatting stuff
November 2, 2010 at 6:42 pm #96828Ashish Kumar (Ashfame)
Participantyeah i fixed that by making call wp_title and bb_title conditionally.
hint:
<title>
<?php
if ( function_exists('bb_title') )
bb_title();
else
wp_title();
?>
</title>Also you will need to send headers in deep integration as some users have reported to get 404 errors on all forum pages
-
AuthorSearch Results