parthatel, that's a bit beyond the design I had in mind but it's an interesting feature idea for a future version.
bbPress Plugin Browser »
Report Post (0.1.4)
Download
Version: 0.1.4
Last Updated: 2008-4-26
Requires bbPress Version: 0.8.2 or higher
Compatible up to: 0.9
Average Rating





Your Rating
Author: _ck_
-
Posted: 1 year ago #
-
Incredibly cool feature. I love all the immediate data you get in the email. Would be great to a see a future feature to easily add new email addresses, so the admin isn't the only one who gets them if needed.
Posted: 1 year ago # -
It's possible to use the CC ability of the PHP mail routine if you need multiple emails.
Until I get a chance to add that feature, you can hack line 58 where it says
$from = $to;
and make it say$from = $to; $to.=",other@your-email.com,another@other-email.com";Posted: 1 year ago # -
thanks for this. saved me the trouble of finding it myself!
Posted: 1 year ago # -
hum, in post.php , there is no <?php post_edit_link(); ?> :)
bye
Posted: 1 year ago # -
As csseur3 said above, there is no <?php post_edit_link(); ?> in bb-post.php. Any tips here?
Posted: 1 year ago # -
They changed it in 1.0 so just put it after
<?php bb_post_admin(); ?>instead.Posted: 1 year ago # -
_ck_ I am looking at bb-post.php but I am unable to find <?php bb_post_admin(); ?>. Am I looking at the right file? By the way, it seems all the "cool" plugins are made by you. Do you have a donation page? - ApocalyptictTomorrow.com
Posted: 1 year ago # -
The instructions clearly say in your
post.phptemplate file.
My donation page is temporarily down until I find
a replacement for Amazon other than PayPal.Posted: 1 year ago # -
Thanks _ck_! 5/5 Stars!
Posted: 1 year ago # -
Hi,
great plugin but I don't receive report emails. I'm testing it with gmail but it doesn't work.Help me pls :)
Thanks
Posted: 10 months ago # -
I don't have <?php do_action('bb_foot', ''); ?> in my theme footer at http://www.borderwatch.com/talk
Adding it wrecks the theme. Is there any other way to make this plugin work without that code in the footer?
Posted: 8 months ago # -
You should always have the bb_foot action.
If it "wrecks the theme" you need to find what's being inserted into the footer and stop it from happening.Many of my plugins (and others) use bb_foot so that might cause you headaches later if you don't fix it. However if you absolutely must, you could instead call
<?php report_post_form(); ?>Posted: 8 months ago # -
Thanks for the tip _ck_. I'm comfortable with WordPress, but just feeling my way with bbPress.
Your mention of other plugins was the hint I needed.
It wasn't <?php do_action('bb_foot', ''); ?> that caused the problem, but inserted code from Mini Stats and Members Online. I set the show in footer option for those plugins to "false" and all is sweet. Thanks again.
Posted: 8 months ago # -
Those having difficulty in receiving e-mails, go into report-post.php and find the line:
mail( $to, $subject, $message,$headers,"-odb"); // odq = queue only
and remove odq, so it should look like
mail( $to, $subject, $message,$headers); // odq = queue only
This worked for me and I'm now receiving e-mails.
Posted: 7 months ago # -
Sorry I thought I removed that from all my plugins, I've made it the default now.
Posted: 7 months ago # -
great plugin. My theme didn't have a file called post.php but I edited topic.php - worked like a charm - thanks
Posted: 3 months ago #
Add a Comment
You must log in to post.