yourschools
Forum Replies Created
-
Hi Jack, I have been doing some troubleshooting of my own and in my custom Post Type I automatically add a title to the post using this function as we do not want users type their own. I commented it out and it worked. Any idea what the conflict would be? As always thanks for your support
function hp_alert_titles($data, $postarr){
if($data[‘post_type’] == ‘hp_mitchell_area’){ $data[‘post_title’] = ‘Mitchell Area’; }
return $data;
}
add_filter(‘wp_insert_post_data’, ‘hp_alert_titles’, 10, 2);I have also tried disabling every plugin I have, Except for Better Notifications for Worpdress and Postman SMTP but same result.
Yes that is correct, custom post types are showing. I select the equivalent to New Post Published under the CPT but nothing happens.
Thanks Jack, I added a DKIM and configured the SMTP plugin. I am now receiving emails on My New Post Published but I am not receiving on New CPT Publish. I will create a new thread to keep them separate so you can check this resolved. thanks for your continued support.