How would I remove the add/renew tab from the member.html {include file="member_menu.inc.html"} {if $smarty.get.tab eq "add_renew"} {include file="member_add_renew.html"} {elseif $smarty.get.tab eq "payment_history"} {include file="member_payment_history.html"}
That was pre 3.2.3. Now you need to add a site.inc.php file with: TabMenu::getInstance()->remove(new TabMenu_Tab(null, null, 'add_renew')); David
David, if I add that to site.inc.php, I get the error: Fatal error: Call to undefined method TabMenu::remove() in /home/business/public_html/members/site.inc.php on line 3 What do I need to include to make it work?
Contact us in helpdesk and request latest tab.inc.php It will be inclded in next release and is not available yet.