Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Removing Favorites Feature

It’s in a couple places

In the profile.php, obviously, there’s the bit for managing them. Also in topic.php there’s a lot of code checking to see it a topic is your favorite.

I suspect on topic.php you could comment out this:

<li<?php echo $class;?> id="favorite-toggle"><?php user_favorites_link(); ?></li>

And then on profile.php comment out this:

<p><?php printf(__('You can also <a href="%1$s">manage your favorites</a> and subscribe to your favorites’ <a href="%2$s"><abbr title="Really Simple Syndication">RSS</abbr> feed</a>.'), attribute_escape( get_favorites_link() ), attribute_escape( get_favorites_rss_link() )); ?></p>

That’s all theory, mind.

Skip to toolbar