2013-10-03, 05:14 PM
Here's what I recommend. Remove the option from your theme then cancel it through PHPMyAdmin.
Step #1
Go to ACP>Templates & Styles>Templates>YOUR THEME>Forumdisplay Templates>forumdisplay_threadlist
Find and Remove:
Step # 2
Go to Showthread Templates>Showthread
Find and Remove:
Step # 3
Go to User Control Panel Templates>usercp
Find and Remove:
Step # 4
Go to usercp_nav_misc template
Find and Remove:
Final Step
Backup your database before running the query below.
Go to PHPMyAdmin>YOUR DATABASE>SQL
And run the following queries:
And
Good Luck!
Step #1
Go to ACP>Templates & Styles>Templates>YOUR THEME>Forumdisplay Templates>forumdisplay_threadlist
Find and Remove:
<a href="usercp2.php?action={$add_remove_subscription}subscription&type=forum&fid={$fid}&my_post_key={$mybb->post_code}">{$add_remove_subscription_text}</a>
Step # 2
Go to Showthread Templates>Showthread
Find and Remove:
<li class="subscription_{$add_remove_subscription}"><a href="usercp2.php?action={$add_remove_subscription}subscription&tid={$tid}&my_post_key={$mybb->post_code}">{$add_remove_subscription_text}</a></li>
Step # 3
Go to User Control Panel Templates>usercp
Find and Remove:
{$latest_subscribed}
Step # 4
Go to usercp_nav_misc template
Find and Remove:
<tr><td class="trow1 smalltext"><a href="usercp.php?action=subscriptions" class="usercp_nav_item usercp_nav_subscriptions">{$lang->ucp_nav_subscribed_threads}</a></td></tr>
<tr><td class="trow1 smalltext"><a href="usercp.php?action=forumsubscriptions" class="usercp_nav_item usercp_nav_fsubscriptions">{$lang->ucp_nav_forum_subscriptions}</a></td></tr>
Final Step
Backup your database before running the query below.
Go to PHPMyAdmin>YOUR DATABASE>SQL
And run the following queries:
TRUNCATE TABLE mybb_forumsubscriptions;
And
TRUNCATE TABLE mybb_threadsubscriptions;
Good Luck!