All Good Things Must Come To An End

As you all know, I have been doing WordPress plugins and supporting it for the past 6 years. These 6 years of my life, I have been through my polytechnic education, my national service as well as my university education.

I just graduated from university in December 2009 and have been looking for full-time jobs. I am offered a full-time job and will be starting work on 1st February 2010.

I regret to say that I am NOT ABLE to provide support for my plugins anymore due to my full-time job commitment. I will leave this forum open and let the community help one another.

However, I WILL still update my plugins whenever I can and you still can report bugs to me via email and I will try to fix it.


Author Topic: Remove tags in Announcement  (Read 1243 times)

0 Members and 1 Guest are viewing this topic.

Offline lauramac

  • Newbie
  • *
  • Posts: 17
    • View Profile
Remove tags in Announcement
« on: 18 October 2009, 19:15 »
Hi again,
I was wondering if it was possible to remove the "print this" plugin as well as the share/add to any, and the tags and categories for the announcement only? Is this possible?

Thanks!

Laura
www.positiveattitudequotes.com

Offline GaMerZ

  • lesterchan.net
  • Administrator
  • *****
  • Posts: 11,536
    • View Profile
  • WordPress Version: WordPress 2.9.x
  • Theme Name: lesterchan.net v3.4
Re: Remove tags in Announcement
« Reply #1 on: 18 October 2009, 19:34 »
As I am not using Share This I have no idea. For print, you can use this code:

Code: [Select]
if(!is_announcement()) { print_link(); }

++ lesterchan.net - Lester Chan's Website

I regret to say that I am not able to provide support for my plugins anymore due to my full-time job commitment. I will leave this forum open and let the community help one another.

Offline lauramac

  • Newbie
  • *
  • Posts: 17
    • View Profile
Re: Remove tags in Announcement
« Reply #2 on: 20 October 2009, 16:05 »
Hi, thanks for getting back to me. Just a quick question about where I place that piece of code? I
m totally new at this!

Thanks!

Laura

Offline GaMerZ

  • lesterchan.net
  • Administrator
  • *****
  • Posts: 11,536
    • View Profile
  • WordPress Version: WordPress 2.9.x
  • Theme Name: lesterchan.net v3.4
Re: Remove tags in Announcement
« Reply #3 on: 20 October 2009, 16:08 »
Place that code anywhere you want to place the link? Read the wp-print readme.html and look at the tabs on top. Instead of placing the code specified in the readme, used the one I pasted.

++ lesterchan.net - Lester Chan's Website

I regret to say that I am not able to provide support for my plugins anymore due to my full-time job commitment. I will leave this forum open and let the community help one another.

Offline lauramac

  • Newbie
  • *
  • Posts: 17
    • View Profile
Re: Remove tags in Announcement
« Reply #4 on: 21 October 2009, 19:21 »
Hi, I read your reply. I think you misunderstood. Right now, the link is working. I have an announcement post at the top of the page.  I don't want the print link to show up in that one. What code should I place (and where) so that this link does not show up, only on announcement posts?

Thanks!

Laura
www.positiveattitudequotes.com

Offline GaMerZ

  • lesterchan.net
  • Administrator
  • *****
  • Posts: 11,536
    • View Profile
  • WordPress Version: WordPress 2.9.x
  • Theme Name: lesterchan.net v3.4
Re: Remove tags in Announcement
« Reply #5 on: 21 October 2009, 19:26 »
Try
Code: [Select]
if(is_announcement()) { print_link(); }

++ lesterchan.net - Lester Chan's Website

I regret to say that I am not able to provide support for my plugins anymore due to my full-time job commitment. I will leave this forum open and let the community help one another.