Forum Replies Created
-
anonymous posting – There’s a plugin available.
attached images – Allow-images Plugin or ck’s Attachment plugin (which is in development but is available for use)
video – bbVideo automatically embeds videos from YouTube and other video websites. If you want people to load avi, mpg, etc, then you will probably need to use ck’s attachement plugin (which is in development but is available for use)
banning option – hmmm… how would you ban somebody without registration? IP Address?
no registration – how is this different from Anonymous posting?
moderation – part of bbPress to an extent
unlimited sub forums – part of bbPress
report option – I haven’t seen anything like this… nice idea though
accept tos before entering certain forums – There’s a new Terms of Service plugin that might be modified for your needs
log by ip – part of bbPress
resize images or videos to right size – maybe the Lightbox2 plugin for images? Not sure about video…
In reply to: Emoticons For bbPress?Maybe we should chip in some money for _ck_ to make a really nice emoticon plugin. Some of my forum users would probably chip in as well.
In reply to: Ajax Quote (or “Quote Extended”):Are you planning on writing instructions and adding it to the plugin directory? I’m sure many would appreciate official releases of both this one and PM Extended.
In reply to: Private Messaging ExtendedThanks Detective. Obviously I’m not skilled in PHP.
The original PM plugin is in desperate need of an update, IMHO, and I was hoping this would be it. However, I didn’t consider that it would even change the database. I guess I’ll stick with the old version for now, but would love for somebody (since I am not a programmer) to come up with some sort of PM import.
Also, I was using the latest version of Joshua’s PM plugin (v0.80)
In reply to: Ajax Quote (or “Quote Extended”):Thanks. Obviously I’m not skilled in PHP, so I’m kinda lost. Like you mentioned with Private Messages, it’s probably best to do a clean install. Maybe I can find time over the holiday tomorrow.
In reply to: Private Messaging ExtendedI get this error at the top of the pm.php page:
bbPress database error: [Unknown column 'del_receiver' in 'where clause']
SELECT * FROM bb_privatemessages WHERE id_receiver = '1' AND del_receiver= '0' ORDER BY created_on DESC
bbPress database error: [Unknown column 'del_sender' in 'where clause']
SELECT * FROM bb_privatemessages WHERE id_sender = '1' AND del_sender = '0' ORDER BY created_on DESCAlso, all previous Private Messages are missing.
In reply to: Ajax Quote (or “Quote Extended”):This appears in the quote box when I load a page:
<br />
<b>Fatal error</b>: Call to undefined function bb_quote_message() in <b>/home/zzz/zzz.com/forums/bb-templates/kakumei/post-form.php</b> on line <b>10</b><br />In reply to: Private Messaging ExtendedThanks for this! Any recommendations for upgrading from the original Private Message plugin?
In reply to: Emoticons For bbPress?You can just download WordPress and upload the smilies to a new directory. Then just change the plugin to point to the new directory at this line:
#
$wp_smiliesreplace[] = " <img src='/wp-includes/images/smilies/$img' alt='$smiley_masked' class='wp-smiley' /> ";
#
}In reply to: [New Plugin] Live Comment PreviewI’m getting mySQL errors… see here for more info:
https://bbpress.org/plugins/topic/live-comment-preview/#post-813
In reply to: Page BugIt’s not going to tell you much because it’s a private forum. However, if you’d like to have a test login, send me an email at kamera [at] gmail [dot] com.
In reply to: Content censorThis is being covered here:
In reply to: Is there an Approve Registration plugin?Perhaps we can pool some cash together and pay somebody to write it?
In reply to: User-editable Custom TitlesI think I need a little help with this one. I’m running 0.9.0.2 now.
Here’s the section in functions.php:
function get_profile_info_keys() {
return apply_filters( 'get_profile_info_keys', array(
'user_email' => array(1, __('Email')),
'user_url' => array(0, __('Website')),
'from' => array(0, __('Location')),
'occ' => array(0, __('Occupation')),
'interest' => array(0, __('Interests')),
) );
}
function get_profile_admin_keys() {
global $bbdb;
return apply_filters( 'get_profile_admin_keys', array(
$bbdb->prefix . 'title' => array(0, __('Custom Title'))
) );
}So if I move that section up to get_profile_info_keys, it should look like this, correct?
function get_profile_info_keys() {
global $bbdb;
return apply_filters( 'get_profile_info_keys', array(
'user_email' => array(1, __('Email')),
'user_url' => array(0, __('Website')),
'from' => array(0, __('Location')),
'occ' => array(0, __('Occupation')),
'interest' => array(0, __('Interests')),
$bbdb->prefix . 'title' => array(0, __('Custom Title')),
) );
}That pretty much removes everything from get_profile_admin_keys, so do I just take that entire section out?
Thanks for the helping hand…
In reply to: Emoticons For bbPress?Thanks for the tip. Didn’t work for me.
That worked! Thanks _ck_!!
Thanks to Sam, I learned that the Freshness column links to the latest post, so fel64’s Page plugin is no longer necessary.
However, when I activate _ck_’s Front Page Posts plugin, the freshness column links to a page without any posts.
_ck_ (or anybody who wants to troubleshoot) can contact me for a login and password for my forum. kamera [at] gmail will do the trick.
In reply to: Go to last post in topicI use this little plugin and my users love it. However, it stops working when using _ck_’s “Change Number of Front Page Topics” plugin.
Not sure which one is causing the problem, but thought it would be worth posting here, in case somebody wants to troubleshoot it.
However, fel64’s “Page” plugin doesn’t work after activating this one:
glanceup: Just cut and paste it into a plugin template. Here’s what I did (apologies to _ck_ if the headers aren’t quite right):
<?php
/*
Plugin Name: Fix Number of Front Page Topics
Plugin URI: https://bbpress.org/forums/topic/how-to-restrict-number-of-latest-discussions-on-front-page
Description: Fix Number of Front Page Topics
Author: _ck_
Author URI: http://bbshowcase.org/
Version: 0.1
*/
// fix number of front page topics
function bb_custom_topic_limit($limit) {
switch (bb_get_location()) :
case 'front-page': $limit=5; break;
case 'forum-page': $limit=10; break;
case 'tag-page': break;
case 'topic-page': $limit=15; break;
case 'feed-page': break;
case 'search-page': break;
case 'profile-page': break;
case 'favorites-page': break;
case 'view-page': $limit=10; break;
case 'stats-page': break;
case 'login-page': break;
default: $limit=15;
endswitch;
return $limit;
}
add_action( 'bb_get_option_page_topics', 'bb_custom_topic_limit',200);
// required to fix for custom topic limits to calculate correct page jumps
function fix_post_link ($link,$post_id) {
global $topic;
remove_action( 'bb_get_option_page_topics', 'bb_custom_topic_limit' );
if ($topic && $topic->topic_last_post_id==$post_id) {
$topic_id=$topic->topic_id;
$page=get_page_number( $topic->topic_posts );
} else {
$bb_post = bb_get_post( get_post_id( $post_id ) );
$topic_id=$bb_post->topic_id;
$page = get_page_number( $bb_post->post_position );
}
return get_topic_link( $topic_id, $page ) . "#post-$post_id";
}
add_filter( 'get_post_link','fix_post_link',10, 2);
?>In reply to: Is my Post Preview Plugin ready enough?Ok, finally found the release:
https://bbpress.org/plugins/topic/live-comment-preview/#post-813
In reply to: Is my Post Preview Plugin ready enough?Working fine in Firefox 2.0.0.14.
Are you going to release this?
In reply to: Emoticons For bbPress?Still no luck getting Comment Quicktags for bbPress to work in the latest bbPress install.
In reply to: Emoticons For bbPress?I wasn’t having any luck using Comment Quicktags for bbPress with v0.9.0.1. I’ll give it another shot tonight though.
In reply to: Emoticons For bbPress?This looks great! Thank you.
Now if we can get WP-Grins converted to bbPress, we’d have clickable smilies…