aronsamma
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
Forum: Plugins
In reply to: [Contact Form 7] Custom 'from' field not working.That’s a great resource. Thank you for sharing that.
Forum: Plugins
In reply to: [Contact Form 7] Custom 'from' field not working.It was actually this one:
https://wordpress.org/plugins/multiple-admin-emails/
I haven’t heard back from the client about whether the emails are coming in correctly now, but I added that plugin not too long ago, and it has this in the code:
function init(){ $this->field_settings = get_option(self::PREFIX."fields"); add_filter('wp_mail_from', array($this, 'setting_from')); add_filter('wp_mail_from_name', array($this, 'setting_from_name')); add_filter('option_admin_email', array($this, 'setting_admin_emails')); }Forum: Plugins
In reply to: [Contact Form 7] Custom 'from' field not working.Thank you!
I think the culprit is the Multiple Admin Emails plugin. I will have to do some more testing to be 100% sure though.
Forum: Themes and Templates
In reply to: [Blain] Adding Pagination for custom post typesOK, I figured some of it out. In my custom template, I used $query as my argument variable, but Blain ONLY accepts $wp_query, like so:
$wp_query = new WP_Query( $args );Now the pagination appears, and looks right, but it doesn’t actually work if I click on one of the other pages yet. I’ll update if I get it figured out.
Viewing 4 replies - 1 through 4 (of 4 total)