briangroce
Forum Replies Created
-
Forum: Plugins
In reply to: WordPress Email Notification Plugin v2.2Currently you can choose on a per-post basis (there’s a drop down to select).
If by default you only wanted to send for specific categories you’d need to change the query in the code.
Forum: Plugins
In reply to: WordPress Category Posts Plugin v1.0Lorelle,
Right now this is very basic, but…
#3…you could add “LIMIT 0, 20” (start at record 0, return 20 records) to the SQL query. If you wanted automatic paged results more coding would need to be done. Good idea.
#4…again, very basic…to display posts from category 3 you just need to put this where you want the list to show up…
<?php wp_cat_posts(3); ?>
What I’m personally doing is using the function multiple times on a page.
I know using it with PHP Exec works…RunPHP should work, but I’ve not tested it.
There will be updates in the future to add more functionality.
Brian
Forum: Plugins
In reply to: WordPress Email Notification Plugin v2.0dave, yes you can enter them yourself.
Forum: Fixing WordPress
In reply to: “Too many open files”I have seen this error as well, but only randomly when writing or editing a post.
Forum: Fixing WordPress
In reply to: “mark all as spam” vs “deletion” ?I was wondering that as well…anyone?
Forum: Plugins
In reply to: WordPress Email Notification Plugin v2.0see /_docs/install.txt in the zip file. All paths are given.
Forum: Plugins
In reply to: WordPress Email Notification Plugin v2.0nibrir,
For the admin pages to work you’d need to change line 17 of wp-content/plugins/wp-email-notification/index.php to match your setup…
include ("$DOCUMENT_ROOT/maillist/wpemn_config.php");
It should send emails when posting regardless of the maillist location.
I need more information (you can get ahold of me off forum) to troubleshoot why it’s not sending with normal posts.
Forum: Fixing WordPress
In reply to: export to PDF alternative hackI was getting the (Warning: Unexpected character in input: ‘\’ (ASCII=92) state=1) as well…
I uploaded the php files as binary instead and that fixed it for me.Forum: Plugins
In reply to: Word Press Email Notification Plugin v1.11.4 is the latest version:
https://www.briangroce.com/archives/2004/07/word-press-email-notification-plugin-v14/Forum: Plugins
In reply to: Plugin/API (add_action(‘publish_post’)FYI: This is how you can do it…
function your_function() {
$prev_status = $_POST['prev_status'];
$post_status = $_POST['post_status'];
if (isset($_POST['publish'])) $post_status = 'publish';
if ($prev_status != 'publish' && $post_status == 'publish') {
Do things here...
}
}Forum: Plugins
In reply to: Word Press Email Notification Plugin v1.1Make sure your table names are correct in the config file and make sure your server is setup to include files from the directory you’re currently in.
Forum: Plugins
In reply to: Word Press Email Notification Plugin v1.1Updated to version 1.2
https://www.briangroce.com/archives/2004/07/word-press-email-notification-plugin-v12/Forum: Plugins
In reply to: Word Press Email Notification Plugin v1.1This is only for nice urls. If you don’t have mod_rewrite just set
$nice_urls = 'no';
and it *should* work for you.Forum: Plugins
In reply to: Word Press Email Notification PluginForum: Plugins
In reply to: Word Press Email Notification Plugin