Viewing 15 replies - 1 through 15 (of 30 total)
  • Hello there @catchacold

    They should work. MarketPress automatically sends emails to the store owner. Are you still having this issue?

    Thread Starter catchacold

    (@catchacold)

    Yes this still does not work. I forgot to add that we even tried disabling all plugins.

    Is the store admin’s email properly configured in Products => Settings => Messages => Store Admin Email ?

    If so, could you please check your email’s spam folder?

    Thread Starter catchacold

    (@catchacold)

    Believe me when I say this. I am beyond the basics. I need to know where to look at logs.

    In that case you’d have to enable php’s mail logs and check what’s happening there.

    Thread Starter catchacold

    (@catchacold)

    I just find it really strange that the end user email works and not the admin new notification. Like I said it was working for several years and then just stopped at the beginning of the year.

    Thread Starter catchacold

    (@catchacold)

    Oh and to add my contact forms are working properly. It is just the admin new order notification

    Thread Starter catchacold

    (@catchacold)

    You can combine these threads – https://www.ads-software.com/support/topic/no-new-order-otification?replies=1

    Also, is there anyway to “hardcode” this to a email

    ‘store_email’ => get_option(“admin_email”),

    If so how would I do that

    You can take a look at line 3573 of the marketpress.php file:

    add_filter( 'wp_mail_from', create_function('', '$settings = get_option("mp_settings");return isset($settings["store_email"]) ? $settings["store_email"] : get_option("admin_email");') );

    Thread Starter catchacold

    (@catchacold)

    I am actually looking here because I just want to change the new order notification

    //send message to admin
    $subject = __(‘New Order Notification: ORDERID’, ‘mp’);
    $msg = __(“A new order (ORDERID) was created in your store:

    How would I add a email address to that?

    just a few lines below that…
    line 3712:
    $this->mail($store_email, $subject, $msg);
    you can replace $store_email with your email. ??

    Thread Starter catchacold

    (@catchacold)

    Update as soon as I added
    //send message to admin
    mail(‘[email protected]’, ‘Subject’, $message);
    $subject = __(‘New Order Notification: ORDERID’, ‘mp’);
    $msg = __(“A new order (ORDERID) was created in your store:

    mail(‘[email protected]’, ‘Subject’, $message);
    I received a test message from host

    ok. I have notified the plugin developer about this issue.

    Thread Starter catchacold

    (@catchacold)

    Thanks

    Thread Starter catchacold

    (@catchacold)

    Any word on a fix? I am about to wipe the entire store and start over.

Viewing 15 replies - 1 through 15 (of 30 total)
  • The topic ‘Marketpress lite’ is closed to new replies.