Forum Replies Created
-
In reply to: Suggestion
As for the centralized wiki, bbPress is going to change so rapid with major upgrades that the developers have opted to stay out of that idea until we are well into more substantial releases.
I will admit that I plan on helping Pro Forum as much as possible because it is a site dedicated to bbPress, but really doesn’t have to be affiliated with bbPress at all. Later on, if it turns out to be a great resource for bbPress users, it will get around on its own. These things take time to play themselves out.
But like I said before, this really isn’t a support issue and is best discussed in the dev lists.
Trent
In reply to: SuggestionSend some feedback to the dev list as well Brad and you might get a bit more feedback on the issue from the decision makers.
Trent
In reply to: Links in posts lose href information (0.75)If the format isn’t 100%, bbPress has a tendancy to strip the HTML out of the post. It will automatically hyperlink a URL, but if you try doing a simple a href and it strips it, it might have been a missing ” or something. Let us know, but I have no issues with this unless the formatting is not 100% correct.
Trent
In reply to: Plugin: Using the strike tagWouldn’t that be the allowed tags in WordPress, not bbPress forum though right drmike?
Trent
In reply to: ERROR : Are you sure you want to submit this post?It has to be related to this post
Make sure you post your solution when you compare your template versus the default!
Trent
In reply to: ERROR : Are you sure you want to submit this post?I see what you mean. Could you download bb-post.php and upload it again? As well, in your template did you edit any of the following files?
post.php
post-form.php
Trent
In reply to: ERROR : Are you sure you want to submit this post?Still have no register email. I will wait until I get it before I can post anything back.
Trent
In reply to: ERROR : Are you sure you want to submit this post?I am registering a test account to try and see your error. Just waiting on the account creation email. When did the error start appearing? Did you make any changes to your template prior to it happening?
Trent
In reply to: k2 for bbpressI like it! Very nice! I am sure Brad with proforum this!
Trent
In reply to: bbPress 0.75 ReleasedSorry about that as I wasn’t look at the sticky posts, what language are you after? There is some language links in the bbPress Internationalization post as well as maybe search for your language using the search function of the forums!
Trent
In reply to: ERROR : Are you sure you want to submit this post?First off, it hasn’t even been on hour on a Saturday for a volunteer support forum! So what version of bbPress are you using? Did you recently install and plugins or upgrade your bbPress installation. Do you have a URL that we can take a look at?
Trent
In reply to: Plugin: Using the strike tagThe plugin I listed above now is using <del> as the tag. Simple enough to change to <strike> if you want that regardless of standards. It is just changing the word! Use at your own discretion as it is an easier solution than constantly changing the core file of formatting-functions.php
Any suggestions on getting this or other tags included using XHTML, please let me know because I would be a bit lost on that issue! Thanks Chrishajer for pointing that out though, I just am XHTML stupid….
Trent
In reply to: template function listTo be perfectly honest, this talk did occur as you know in this forum and the dev lists. The real reason the documentation will not be as centralized as quickly as we would all like is for a good reason. We are about to roll out many releases quickly on our way to a MAJOR release that doesn’t change much. Once we get there we can slow it down and focus on the docs.
At least that was the majority thoughts! Version at least 1.0 and maybe 1.5
Trent
In reply to: Plugin: Using the strike tagIF <del> tag is XHTML compliant, then we should just use that. I didn’t even realize the strike tag was not compliant. With all the smart browsers out there now, the entire compliance things bugs me a bit……
Trent
In reply to: Plugin: Using the strike tagHere is a little plugin for allowing strike!
<?php
function allow_strike_as_allowed_tags( $tags ) {
$tags['del'] = array();
return $tags;
}
add_filter( 'bb_allowed_tags', 'allow_strike_as_allowed_tags' );
?>
Just save it as allow-strike.php and toss it in your /my-plugins/ folder.
Trent
In reply to: Plugin: Using the strike tagNo reason, it just wasn’t added as one of the default tags. A quick plugin should allow it pretty easily though. Let me see how easy it would be to write…..brb
Trent
In reply to: Serious Server Issues…Just getting your config.php the way it was before is the only deal you have to worry about (short of templates changes you lost). Just create config.php and upload all the files. It will just work.
Trent
In reply to: What do you do for a living?I trade for a living and I mean almost everything and anything, except for my wife and son of course;) Commodities mainly specializing in agriculture, but also in the oil industry. I know a bit about coding and the logic behind code, but I really like to help people out. I love music and that is how I started in the web side of things….
In reply to: Keymaster manually add usersWow! Could you start a new thread for this:
Plugin: Admin Add User
That would help out huge!
Trent
In reply to: template function listThe documentation is limited, but you have a list of all the functions in /my-includes/template-functions.php
Trent
In reply to: Plugin: Simple Onlinelist 1.4Don’t know what you did, but it works great for me!
Trent
In reply to: Plugin: Graphic Display Ranks *UPDATED*Just checked. I would go back and read the documentation one last time
Trent
In reply to: Newsletter by emailIf you are not trying to send ‘content’ from forums, I would do what chrishajer is saying. Integration of bbPress and WP has both using the WP users, so why re-invent the wheel and use the WP plugin!
Trent
In reply to: Session CookiesA plugin would be the best way so that it doesn’t require a core change.
Trent
In reply to: Plugin: Graphic Display Ranks *UPDATED*This is a great plugin! Did you submit it yet?
Trent