Forum Replies Created
-
In reply to: Plugin: [REL] Signature
In functions.php, find the get_profile_info_keys() function …
Much neater to pluginise it like the avatar plugin has done than to hack around in the core files, but that’s the solution now anyway.
I’m not sure how the hook ardentfrost used works specifically but the sensible thing for it to do would be to pass the infokeys array as a parameter (just like the allowed tags hook), in which case you could easily add onto whatever was already in the array. If someone’s interested it might be worth testing, again as the neatest/least problematic way of doing this.
In reply to: bbpress futureNo idea. I doubt they’d announce features before they’re ready – that’s a fairly stupid strategy for software. Check out trac if you want to see what’s being worked on and download the latest SVN releases if you want it early (and potentially buggy).
In reply to: “Last poster” as key masterThis sounds like a bozo problem. Go to your Profile page, click on Edit, and look at the value of the bozo field. If this value is “1”, you require a minor fix: https://bbpress.org/forums/topic/822?replies=10
In reply to: German LanguageYou have to set the language in
config.php
. Open this file and look for line #41. Change itFROM
define('BBLANG', '');
TO
define('BBLANG', 'de');
In reply to: Can’t post. Topic turns yellow. Can’t delete.Maybe the permissions/nonces are screwed up? If bbPress is set to use WP functions it might be worth reuploading those.
In reply to: 404 Error on the edit user linkAn invoice has been sent to your billing address for $215.00 to cover the support costs.
Glad you got your solution!
In reply to: Can’t post. Topic turns yellow. Can’t delete.You should install the bbpress-fix plugin, then change the field to 0 (no quotes) and save. This will hopefully fix things. The plugin only prevents you being marked as bozo, but it won’t unmark you (which is why you have to do that yourself).
Don’t reinstall yet.
In reply to: Can’t post. Topic turns yellow. Can’t delete.Sounds like a bozo problem…? Open the profile of the troubled account, go to the “Edit” page, and see if there’s a 1 in the bozo field. If there is, you need the fix-bbPress plugin. https://bbpress.org/forums/topic/822?replies=10
I might have the wrong end of the stick entirely though.
By the way, Nola, any chance you could help me with some .htaccess code? I’ve been having trouble making it work with WP and got no help on their forums.
In reply to: Freshness LinkedThe only thing better than that is a “go to first new reply” link.
Out of the corner of my eye I thought I saw some code for “views” in a thread, in the 1.0-alpha version. There’s a chance it’ll be in 1.5 maybe?
There’s also my “has a new reply” plugin: https://bbpress.org/plugins/topic/45?replies=5
In reply to: Freshness LinkedNot sure how to do that specifically, however here’s a quick rip of Sam Bauer’s pagination plugin that’ll add a double-forward arrow to the end of each topic name linking to the latest post. Copy it into a text file, save it as something.php and upload.
<?php
/*
Plugin Name: Link to last Post
Plugin URI:
Description: Adds page links to topic lists
Author: fel64
Version: 0.7
Author URI: http://www.loinhead.net/
*/
if (!function_exists('is_tags')) {
function is_tags()
{
return is_tag();
}
}
if (is_front() || is_forum() || is_tags()) {
add_filter('topic_title', 'fel_addlatestlink', 101);
}
function fel_addlatestlink($title)
{
global $topic;
$felgtlpl = get_topic_last_post_link($topic->topic_id);
$title = $title . ' <a href="' . $felgtlpl . '"> » </a>';
return $title;
}
?>In reply to: Syntax questionsMy assumption is that they’re in place for localisation purposes. I don’t know for sure.
In reply to: Topics with no tags, but there ARE tags…Maybe it just recounts occasionally, or did you try recounting tags/topics to fix this earlier on?
Yes, you should be. If you’ve cleared the old cookies for bb and WP, then logging out should work just as well as logging in? Hmm.
but now I can’t log out of bbpress?
This is because when you click “log out”, it clears the NEW version of the cookies, but when checking if you’re logged in it checks both the new and the old version. The old version is never cleared.
To do that, you have to clear your cookies. In FF, pressing Ctrl + Shift + Del gives you access to clear them, in IE you have to go to Tools > Options or something.
But this probably means it’s working!
As long as you integrated from the start, no? Are you using the same database for WP and bb? In your config.php, did you add details for these settings:
bb->wp_table_prefix
bb->wp_home
bb->wp_siteurlAnother way to tell is, did it use your WordPress name for your admin account when you installed?
In reply to: Request for hook: post_usermetaMight be worth making a trac ticket for it here: https://trac.bbpress.org/ Log in with the details you use here.
In reply to: Plugin: bbMenu 1.1I don’t understand, what does this plugin do? Screenshots would help.
re-write the plugin to use jQuery?? (This is used in the next bbPress version)
Does it work with 1.0-alpha, then?
It does, cheers Trent.
In reply to: User Registration time +8 hours (GMT)?You have to put the time in your config.php that is that of the server.
Do you really? Or have I misunderstood this completely?
bbPress constrained you, the person installing bbPress, to set it’s internal timezone to match exactly that of the server it was running on.
That’s ridiculous.
…
With bbPress 0.8, all that has changed. You can set bbPress’ timezone to anything you like completely independent of where you are and where your server is.
In reply to: Subategories and user classesNo, but with the 1.0-alpha release you can add subforums.
Go to the Profile Page, click the Edit link, change the Member Title.
In reply to: Fatal error on my themeWhat’s the new error?
In reply to: Plugin: Page links for bbPressThanks for this Sam, looking at it I also made a plugin using the Simple Onlinelist which will highlight any new posts made since the last time someone logged in. Waiting to have it approved as a plugin so I can upload.
You will have to make changes to some core files to make this work properly, as they are in different subdomains.
Find your bbPress
config.php
file and add these lines://try to sync cookies
$bb->cookiedomain = '.mpm.org.au';
$bb->cookiepath = '/';Now go to your wordpress folder, open
wp-settings.php
.#line 190
FROM
define('COOKIE_DOMAIN', false);
TO
define('COOKIE_DOMAIN', '.mpm.org.au');
Make sure that you make note of this change to
wp-settings.php
. Every time you upgrade wordpress this change will be overriden and you will have to make this change again.In reply to: Fatal error on my themeTegolino, are you also motiongrapher? Because I believe there was someone here called motiongrapher looking for help with motiongraphics.it too.
Why is that line even there? Is it necessary? You may be able to just comment it out.
In reply to: Convert breaks into paragraphs?At a wild guess from memory it’ll be in
/bb-includes/formatingfunctions.php