And another PHP warning about a non-existent array key:
wp-content/plugins/precious-metals-automated-product-pricing-pro/WooCommerce_Plugin_Nfusion.php:339
Now:
if ( $_REQUEST['saved'] ) { echo '<div id="message" class="updated fade"><p><strong>settings saved.</strong></p></div>'; }
Correction:
if ( isset( $_REQUEST['saved'] ) ) { echo '<div id="message" class="updated fade"><p><strong>settings saved.</strong></p></div>'; }
It would be great if you could fix these little things or if you have github, I could do a pull request.