Today I learned about the jQuery Templating Plugin. Looks like something I’ll want to learn about!
jQuery Templating Plugin
Reply
Today I learned about the jQuery Templating Plugin. Looks like something I’ll want to learn about!
Found a Thunderbird plugin which can import and export mail filters: Thunderbird Message Filter Import/Export Enhanced.
Was helping Teejay with his Cock n Bull web-site the other night, and we needed to setup a ‘page’ link in the top main navigation as a ‘link’ to the blog feed. Anyway, we found a WordPress plugin that does that: Page Links To. Pretty handy!
I wanted to configure the “From” email address that WordPress uses when emailing password resets. The way to do this is with a WordPress hook, specifically a filter hook in this case. So, in wp-config.php I added the following code:
add_filter( 'wp_mail_from', 'pcblog_mail_from' ); add_filter( 'wp_mail_from_name', 'pcblog_mail_from_name' ); function pcblog_mail_from() { return 'pcblog@progclub.org'; } function pcblog_mail_from_name() { return 'ProgClub blog'; }