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: URL links show on printable page  (Read 3047 times)

0 Members and 1 Guest are viewing this topic.

Offline cheryl

  • Newbie
  • *
  • Posts: 1
    • View Profile
URL links show on printable page
« on: 19 September 2009, 19:04 »
Hi there,
Is there a way to NOT show the URL links at the bottom of the page when using the WP-Print plugin?

Thank you!

Offline GaMerZ

  • lesterchan.net
  • Administrator
  • *****
  • Posts: 11,692
    • View Profile
  • WordPress Version: WordPress 3.0.x
  • Theme Name: lesterchan.net v3.4
Re: URL links show on printable page
« Reply #1 on: 20 September 2009, 03:03 »
wp-admin -> Setting -> Print

++ 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 auntypizza

  • Newbie
  • *
  • Posts: 3
  • worthdesigning
    • View Profile
  • WordPress Version: WordPress 3.0.x
  • Theme Name: Initiate
Re: URL links show on printable page
« Reply #2 on: 03 September 2010, 14:06 »
Hi there,
Is there a way to NOT show the URL links at the bottom of the page when using the WP-Print plugin?

Thank you!

Comment out the lines . . . . look for this (in print-posts.php)

<p><?php _e('Article printed from', 'wp-print'); ?> <?php bloginfo('name'); ?>: <strong dir="ltr"><?php bloginfo('url'); ?></strong></p>
<p><?php _e('URL to article', 'wp-print'); ?>: <strong dir="ltr"><?php the_permalink(); ?></strong></p>

Replace with this . . . .

<!-- <p><?php _e('Article printed from', 'wp-print'); ?> <?php bloginfo('name'); ?>: <strong dir="ltr"><?php bloginfo('url'); ?></strong></p>
<p><?php _e('URL to article', 'wp-print'); ?>: <strong dir="ltr"><?php the_permalink(); ?></strong></p> -->

Hope that helps