Forum Replies Created
-
In reply to: bbPress.com
Er, that’s TalkPress and I’d guess that it’s not going to be out until either very late this year or early next.
Matt owns the domain but is doing something incredibly unprofessional with it for some reason I can’t fathom.
In reply to: links longer than page width!It would be easier to disable the auto-link entirely for a post when is detected than to parse it out, if that will do. Somehow I missed the original question was scrolling on code, sorry about that but as you found it’s very simple CSS.
Disabling auto-link is something like: (untested)
remove_filter('post_text', 'make_clickable'); add_filter('post_text', 'make_clickable_if_not_code'); function make_clickable_if_not_code($text) { if (strpos($text,'<code>')===false) {return make_clickable($text);} return $text; }
[code] is detected than to parse it out, if that will do. Somehow I missed the original question was scrolling on code, sorry about that but as you found it’s very simple CSS.
Disabling auto-link is something like: (untested)
remove_filter('post_text', 'make_clickable');
add_filter('post_text', 'make_clickable_if_not_code');
function make_clickable_if_not_code($text) {
if (strpos($text,'<code>')===false) {return make_clickable($text);}
return $text;
}In reply to: Theme EditorCorrect me if I am wrong but the “theme editor” in WordPress is simply a remote file editor for templates. Doesn’t do anything special other than let you edit a file directly on your server without having to use FTP (or shell).
While it seems handy, if I am not mistaken it also requires you to chmod 777 your theme folder which is very dangerous on a shared server.
I suppose bbPress will get the feature eventually because it’s so very simple. I would guess it could be ported from the WordPress code in probably an hour.
In reply to: New bbPress BUGGY!!!You definitely need to post examples of bugs you encounter. There are numerous bug fixes in 0.9 vs 0.8
Perhaps you are simply encountering plugin incompatibilities?
“numerous link revisions” ???
How can your url’s change unless you disabled slugs or visa/versa? That much didn’t change in 0.9
In reply to: Reply BugUh oh, it looks like my bb-attachments is modifying other forms which makes no sense.
I’ll have to investigate this.
update: please try 0.1.1, see this post:
https://bbpress.org/plugins/topic/bb-attachments/page/2/?replies=38#post-1223
In reply to: My Private ForumNice site but annoying flying ad.
In reply to: links longer than page width!WP-Chunk ported to bbPress, inserts a break into long links so they wrap:
In reply to: Hardening with file permissions?Note that 755/644 is a false sense of security.
I can write a file in any directory regardless of permissions on a server with posix support (any linux server) by being able to switch the PHP username to yours. However, Safe Mode and/or Open_base_dir will prevent the posix trick from working (unless of course the code is executing from your own directory)
The proper header for the page apparently is not being sent until there is a logged in user.
I’ll see if I can reproduce this. Is it in kakumei theme?
Update: this works fine on my setup:
http://bbshowcase.org/forums/topic/put-your-test-posts-here?bbtheme=kakumei#post-302
You might have something sending whitespace before all the headers can be sent so the page encoding gets broken until the user is logged in. Are there any errors visible when you do a “view source” or any javascript errors?
In reply to: Delete entire thread with one click?Each topic can be deleted at the bottom.
There is also a “mass edit” plugin to delete all posts by a single users, etc.
In reply to: Set Topic IDNot quite sure what you are asking/doing buy try adding
global $topic;
before your code if you find the function don’t know which topic is active.In reply to: Insurgency.cz forumThat’s for a film or game right? Had me nervous for a minute there…
In reply to: bb-twitter – a Twitter pluginBe sure to add it to the plugin browser so more people will see it:
In reply to: User languages?In reply to: Profile hook/filterThe profile page is very difficult if not impossible to hook into as it needs some work (and apparently might change by 1.0)
You’ll have to do template edits.
In reply to: Theme similar to wordpress ?In reply to: Request: Plug-in UpdateNot sure if it’s working with 0.9
https://bbpress.org/plugins/topic/plugin-browser-for-bbpress
In reply to: How to shorten a profile link?mod_rewrite will let you do that if you figure out the correct rule
however you won’t be able to get it shorter than profile/username because just /username could be another page.
In reply to: bbPress Top 100 – May 2008 updateI am getting better at routines to find non-english bbPress sites and have now added a few hundred more sites!
(bbPress is being used in at least two dozen countries!)
In reply to: My only complaint about bbPressI put a ticket into trac about this a few months ago.
https://trac.bbpress.org/ticket/779
Changing the way it functions is not too difficult but it does have to be done via the core so unfortunately I can’t address it via a plugin. At least I dont think I can, not easily.
Oh and forget a captcha ever being built into bbPress/WordPress. It will have to be done via plugin with a hook. Because the moment thousands of people have the same standardized captcha, that’s the moment it will be analysed to be broken by bots. As a plugin the method can be changed on a whim and vary from site to site easily. Besides, I’d rather have people do simple math than an awkward captcha.
In reply to: bbPress Top 100 – May 2008 updateAdd some numbers? Oh you mean to show position #
Well the problem is I tinker with it from time to time.
If I find a new site that’s not in the top 100 I’ll usually just queue it until next time but if it’s a biggie I will rebuild the list right away.
Plus the number of posts is subjective and no indication of quality. I don’t really want to make that part a contest or people will start faking results and I’ll have to delete their listing entirely.
In reply to: Request: Separating Text & SignatureI suspect this is the the same problem as you or someone else had with a non-standard template with bbpress.
Make sure in your
header.php
template that you have<?php bb_head(); ?>
just before the
</head>
or bbPress plugins won’t work properly (like you are seeing now)
In reply to: Request: Separating Text & Signaturegerikg, I can help you with these questions easier if you post them on the plugin page for they are related.
in bb-signatures you can simulate an HR by changing the
border-top
in the CSSgo into the admin menu plugins->signatures and look down in the CSS area and change
border-top:1px solid #aaa;
to whatever you’d like. If you want it thicker, make 1px, 2px or more. If you want a different color, change the #aaa to any other color.In reply to: Indicate unread posts on forumsOkay version 0.8.7 of this can now indicate forums with new posts:
https://bbpress.org/plugins/topic/unread-posts/
You will have to change the optional setting to
true
near the top of the plugin.It defaults to highlighting the title in blue but you can also change the css to append an icon, etc. instead.
In reply to: Indicate unread posts on forumsAfter some thought, it occurs to me I could make some (optional) code that would pre-check all the read topics lists for a user and see if the last topic had changed, and then build a list of forums affected.
Interesting challenge, I might give it a shot.