Hi Lauren,
I have manually updated Payment Manager plugin. Because Indeed Ultimate Membership Pro plugin causing problem in plugin update process.
there are no options to add license keys for the auto updates.
Plugin “Indeed Ultimate Membership Pro” causing this problem. That plugins creates problem in showing licence key in plugins page. To insert licence keys or check update available or not:
Disable Indeed Ultimate Membership Pro > Insert Keys / Update plugins > Enable Indeed Ultimate Membership Pro.
I tested manually sending an invoice to myself and I got the attached screen. It looks like there’s two checkouts on the page. Not really sure what’s going on with that. Is there a second plugin from the old invoicing system installed?
You have assigned page to Invoicing History & Invoice Checkout which used by old Payment Manager. I have fixed it by separating those pages.
Got another question. Trying to remove the email templates:
To modify email templates by using standard template system
Copy directory “plugins/invoicing/templates/emails/” and paste it under “themes/YOUR CURRENT THEME/invoicing/emails/”
Here you can modify content of files “wpinv-email-footer.php” & “wpinv-email-header.php”
You can add custom style in file “themes/YOUR CURRENT THEME/invoicing/emails/wpinv-email-styles.php”
In case you wan to remove template files via hook just use following code snippet.
function _wpi_custom_remove_wpinv_email_templates() {
remove_action( 'wpinv_email_header', 'wpinv_email_header' );
remove_action( 'wpinv_email_footer', 'wpinv_email_footer' );
}
add_action( 'init', '_wpi_custom_remove_wpinv_email_templates', 10 );
Let us know.
Thanks,
Kiran