Title: Print Friendly Options
Last modified: August 30, 2016

---

# Print Friendly Options

 *  Resolved [Manaz](https://wordpress.org/support/users/manaz/)
 * (@manaz)
 * [10 years, 12 months ago](https://wordpress.org/support/topic/print-friendly-options/)
 * Hi, can you add some options for Print Friendly in next versions, because this
   is very important for blog writers. Very thanks…
 * [https://wordpress.org/plugins/add-to-any/](https://wordpress.org/plugins/add-to-any/)

Viewing 6 replies - 1 through 6 (of 6 total)

 *  Plugin Author [micropat](https://wordpress.org/support/users/micropat/)
 * (@micropat)
 * [10 years, 12 months ago](https://wordpress.org/support/topic/print-friendly-options/#post-6263462)
 * That service is already available in AddToAny.
 *  Thread Starter [Manaz](https://wordpress.org/support/users/manaz/)
 * (@manaz)
 * [10 years, 12 months ago](https://wordpress.org/support/topic/print-friendly-options/#post-6263469)
 * Very thanks, I tried but I cannot find. Where can I make from?
 *  Plugin Author [micropat](https://wordpress.org/support/users/micropat/)
 * (@micropat)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/print-friendly-options/#post-6263556)
 * Right after the Print service in Settings > AddToAny > Add/Remove Services.
 *  Thread Starter [Manaz](https://wordpress.org/support/users/manaz/)
 * (@manaz)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/print-friendly-options/#post-6263559)
 * Hi micropat, I know that there is AddToAny Service in plugin. I mean that how
   can I change AddToAny functions after added. For example there are some features
   in [http://www.printfriendly.com/button](http://www.printfriendly.com/button).
   These features are important. For this reason I am also using the other plugin
   for PrintFriendly Buton.
 *  Plugin Author [micropat](https://wordpress.org/support/users/micropat/)
 * (@micropat)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/print-friendly-options/#post-6263577)
 * I see what you mean.
 * You can do that by adding it as a custom service in your theme’s `functions.php`
   like so:
 *     ```
       function addtoany_add_services( $services ) {
           $services['my_printfriendly'] = array(
               'name'        => 'My PrintFriendly',
               'icon_url'    => 'https://pf-cdn.printfriendly.com/images/icons/button-print-grnw20.png',
               'icon_width'  => 62,
               'icon_height' => 20,
               'href'        => 'javascript:(function()%7Bif(window%5B%27priFri%27%5D)%7Bwindow.print()%7Delse%7Bvar%20pfurl%3D%27%27%3Bpfstyle%3D%27nbk%27%3BpfBkVersion%3D%271%27%3Bif(window.location.href.match(/https/))%7Bpfurl%3D%27https://pf-cdn.printfriendly.com/ssl/main.js%27%7Delse%7Bpfurl%3D%27http://cdn.printfriendly.com/printfriendly.js%27%7D_pnicer_script%3Ddocument.createElement(%27SCRIPT%27)%3B_pnicer_script.type%3D%27text/javascript%27%3B_pnicer_script.src%3Dpfurl %2B %27%3Fx%3D%27%2B(Math.random())%3Bdocument.getElementsByTagName(%27head%27)%5B0%5D.appendChild(_pnicer_script)%3B%7D%7D)()%3B'
           );
           return $services;
       }
       add_filter( 'A2A_SHARE_SAVE_services', 'addtoany_add_services', 10, 1 );
       ```
   
 * Then select “My PrintFriendly” at the end of the services in AddToAny settings.
 * Then PrintFriendly’s custom options (JavaScript) can be added to the Additional
   Options box in AddToAny settings. For example:
 *     ```
       var pfHeaderImgUrl = '';
       var pfHeaderTagline = '';
       var pfdisableClickToDel = 0;
       var pfHideImages = 0;
       var pfImageDisplayStyle = 'right';
       var pfDisablePDF = 0;
       var pfDisableEmail = 0;
       var pfDisablePrint = 0;
       var pfCustomCSS = '';
       var pfBtVersion='1';
       ```
   
 *  Thread Starter [Manaz](https://wordpress.org/support/users/manaz/)
 * (@manaz)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/print-friendly-options/#post-6263580)
 * Very very thanks micropat. That is.

Viewing 6 replies - 1 through 6 (of 6 total)

The topic ‘Print Friendly Options’ is closed to new replies.

 * ![](https://ps.w.org/add-to-any/assets/icon.svg?rev=972738)
 * [AddToAny Share Buttons](https://wordpress.org/plugins/add-to-any/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/add-to-any/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/add-to-any/)
 * [Active Topics](https://wordpress.org/support/plugin/add-to-any/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/add-to-any/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/add-to-any/reviews/)

 * 6 replies
 * 2 participants
 * Last reply from: [Manaz](https://wordpress.org/support/users/manaz/)
 * Last activity: [10 years, 11 months ago](https://wordpress.org/support/topic/print-friendly-options/#post-6263580)
 * Status: resolved