Forum Replies Created
-
In reply to: New Theme – Need Theme Name
Try “EricBarnes”! Nice and clean Theme…!
In reply to: very simple one-thread customization?Copy&Paste in a .htaccess:
DirectoryIndex /forum/topic.php?id=20
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} /forum/index.html
RewriteRule (.*) /forum/topic.php?id=20 [L]
Now (sorry for my bad english, im german) the topic is your forum-frontpage.. (dont forget to delete the “New Topic” links).
quick&dirty
In reply to: Anonymous postingReplace (in anonymous.php):
add_action('bb_new_post', 'bb_anonymous_posting_add_post_poster');
function bb_anonymous_posting_add_post_poster($post_id) {
global $bbdb;
$name = bb_get_current_user_info( 'name' );
$bbdb->query("UPDATE $bbdb->posts SET poster_name = '$name' WHERE post_id = '$post_id'");
}
with
add_action('bb_new_post', 'bb_anonymous_posting_add_post_poster');
function bb_anonymous_posting_add_post_poster($post_id) {
global $bbdb;
$name = bb_get_current_user_info( 'name' );
$bbdb->query("UPDATE $bbdb->posts SET poster_name = '$name' WHERE post_id = '$post_id'");
$bbdb->query("UPDATE $bbdb->posts SET post_status = '1' WHERE post_id = '$post_id'");
}
Now, new Posts are automaticly marked as spam. You can go to your admin area and undelete them (if its not spam)
sorry for my bad english, im german
In reply to: Anonymous postingJust set the Post_status to “1” if the poster is anonymous and check your ACP daily (sorry for my bad english)
In reply to: Anonymous postCreate new Topic: Error ((
In reply to: Users Website in TopicDAMN!
In reply to: Users Website in TopicHi, öffne die template-functions.php im bb-includes Ordner und editiere die funktion “post_author_url()”. Such einfach in der Datei nach dieser Funktion.
Man kann es mit SEO auch übertreiben. Deine User schreiben wertvolle Beiträge (gerade in deinem Bereich ist jede Zeile Gold wert). Lediglich meine Meinung, mach wie du denkst. Hoffe ich konnte behilflich sein
Steven
In reply to: Changing Mod Rewrite rulesOpen bb-includes/template-functions.php and change:
$link = bb_get_option(‘uri’) . “forum/$forum->forum_id” . ( 1 < $page ? “/page/$page” : ” );
to
$link = bb_get_option(‘uri’) . “forum-$forum->forum_id” . ( 1 < $page ? “/page/$page” : ” );
Now open your .htaccess file and change:
RewriteRule ^forum/(.+)/page/?([0-9]{1,})/?$ forum.php?id=$1&page=$2 [QSA,L]
RewriteRule ^forum/(.+)/?$ forum.php?id=$1 [QSA,L]
to
RewriteRule ^forum-(.+)/page/?([0-9]{1,})/?$ forum.php?id=$1&page=$2 [QSA,L]
RewriteRule ^forum-(.+)/?$ forum.php?id=$1 [QSA,L]
bye
In reply to: Post without acoountme too!
In reply to: REQUEST: Enable Guest Postingthe guest posts should be automatically marked as deleted for moderation (if spam = no action, if no spam = undelete) same for new guest topics
In reply to: bbPress new ThemeGreat Work. Please release ist… i need it for 10 news bb’s