This hook is triggered after editing a package from front end. If you want to notify admin after editing a package from front end, you can use this hook.
Two arguments are passed to this hook.
<?php add_action('edit_package_frontend','notify_admin',10,2); ?>
<?php
add_action('edit_package_frontend','notify_admin',10,2);
function notify_admin($package_id, $package_data){
$edit = "<a href='".get_edit_post_link( $package_id)."'>Edit Package</a><br/>";
$view = "<a href='".get_permalink( $package_id )."'>Edit Package</a><br/>";
$message = "Package Title: {$package_data->post_title}<br/>
{$view}<br/>
{$edit}";
wp_mail(get_option("admin_email"), "New Package Added", $message, "From: no-reply@sitename\r\nContent-type: text/html\r\n");
}
?>
For any technical issue, if you are already using pro version please post in pro forum and free version users please post in free forum. Otherwise, if you have any pre-sale or order related query please contact live chat support team. For technical support.