Great plugin and its really light weight. However, my WP site uses a highly customized theme. This plugin puts the 'Print' text automatically. Is there a way to get rid of this and instead put it in a template file?
Thanks.
Great plugin and its really light weight. However, my WP site uses a highly customized theme. This plugin puts the 'Print' text automatically. Is there a way to get rid of this and instead put it in a template file?
Thanks.
I like to know the same thing... I only need it on post pages and manually in some areas.
Got it figured out.
Add this to your theme's functions.php
/* Function to Remove Automatic Placement of Print Button From Printme plugin */
remove_filter( 'the_content', 'printme_add_link' );
Use this function in your single.php or any other template where you want the print option to appear
<?php echo printme_add_link($content); ?>
Thanks Sledge!
Oh, I don't know that there is discussion about my plugin.
It's very useful idea. I will do shortcode for it soon.
Shortcode and php-function were added
This topic has been closed to new replies.