Shape 5

Wordpress Club Themes => Touch of Soul - Club => : dmock9999 September 04, 2012, 08:32:57 AM



: Remove Edit and Uncategorized links
: dmock9999 September 04, 2012, 08:32:57 AM
At the bottom of each post, there is a Edit and Uncategorized link.  How do I remove it universally on all posts?


: Re: Remove Edit and Uncategorized links
: Tristan Rineer September 04, 2012, 08:46:05 AM
The "Edit" link only shows if you are logged in.

"Uncategorized" means that the post/page hasn't been added to any categories yet.

If you really want to hide that section of the page just add the following code to the bottom of style.css:

:
div.entry-utility {
    display:none;
}

That will make the whole section disappear.


: Re: Remove Edit and Uncategorized links
: dmock9999 September 04, 2012, 10:56:42 AM
Thanks, good answer!