I was able to show the tab with this code for now, but it still shows that error for bundled products. THX for building this plugin! It’s been great otherwise.
/** Add New Tab for Saved Carts on my Account Page from Share and Save Cart Plugin*/
add_filter( ‘woocommerce_account_menu_items’, ‘add_saved_carts_tab’ );
function add_saved_carts_tab( $items ) {
$items[‘saved-carts’] = ‘Saved Carts’;
return $items;
}`