<?xml version="1.0"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>Cutline Theme Support Forums Topic: "Print" and "Email" Formatting</title>
<link>http://cutline.tubetorial.com/forums-archive/</link>
<description>Cutline Theme Support Forums Topic: "Print" and "Email" Formatting</description>
<language>en</language>
<pubDate>Fri, 10 Feb 2012 09:23:15 +0000</pubDate>

<item>
<title>FrankHagan on ""Print" and "Email" Formatting"</title>
<link>http://cutline.tubetorial.com/forums-archive/topic/print-and-email-formatting#post-36</link>
<pubDate>Sat, 01 Sep 2007 18:00:00 +0000</pubDate>
<dc:creator>FrankHagan</dc:creator>
<guid isPermaLink="false">36@http://cutline.tubetorial.com/forums-archive/</guid>
<description>&#60;p&#62;Not a problem, I was doing a search in the background when I posted the message.  They both seem to work well, although figuring out how to override the default link style took me some time.  I guess that because you're calling a new PHP function for each of them, the paragraph style doesn't apply, and the browsers apply the default link style.  It took me longer than it should have to figure out to just put a &#38;lt;span class=&#34;tagged&#34;&#38;gt; element in the appropriate file.
&#60;/p&#62;</description>
</item>
<item>
<title>Franky on ""Print" and "Email" Formatting"</title>
<link>http://cutline.tubetorial.com/forums-archive/topic/print-and-email-formatting#post-29</link>
<pubDate>Sat, 01 Sep 2007 08:50:19 +0000</pubDate>
<dc:creator>Franky</dc:creator>
<guid isPermaLink="false">29@http://cutline.tubetorial.com/forums-archive/</guid>
<description>&#60;p&#62;Sweet, I just wanted to link you those, needed coffee to wake up befoere I could answer tho. :P&#60;br /&#62;
Glad you found them and sorry for being this slow.
&#60;/p&#62;</description>
</item>
<item>
<title>FrankHagan on ""Print" and "Email" Formatting"</title>
<link>http://cutline.tubetorial.com/forums-archive/topic/print-and-email-formatting#post-27</link>
<pubDate>Sat, 01 Sep 2007 07:30:37 +0000</pubDate>
<dc:creator>FrankHagan</dc:creator>
<guid isPermaLink="false">27@http://cutline.tubetorial.com/forums-archive/</guid>
<description>&#60;p&#62;I found a couple of plug ins that work, with some editing.  I'm using:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://lesterchan.net/wordpress/readme/wp-email.html&#34; rel=&#34;nofollow&#34;&#62;http://lesterchan.net/wordpress/readme/wp-email.html&#60;/a&#62;&#60;br /&#62;
&#60;a href=&#34;http://lesterchan.net/wordpress/readme/wp-print.html&#34; rel=&#34;nofollow&#34;&#62;http://lesterchan.net/wordpress/readme/wp-print.html&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Install according to directions.  The links won't match your tags unless you edit the &#34;email.php&#34; in the wp-email plug in folder, and the &#34;print.php&#34; in the wp-print plug in folder.  Here's how to do that, starting with the &#34;email.php&#34; file.  &#60;/p&#62;
&#60;p&#62;Find, in &#34;email.php&#34;:&#60;/p&#62;
&#60;p&#62;case 1:&#60;br /&#62;
$output = '&#38;lt;img class=&#34;WP-EmailIcon&#34; src=&#34;'.$email_icon.'&#34; alt=&#34;'.$email_text.'&#34; title=&#34;'.$email_text.'&#34; style=&#34;border: 0px;&#34; /&#38;gt;&#38;nbsp;&#60;a title=&#34;'.$email_text.'&#34; rel=&#34;nofollow&#34;&#62;'.$email_text.'&#60;/a&#62;';&#60;br /&#62;
break;&#60;/p&#62;
&#60;p&#62;Change to:&#60;/p&#62;
&#60;p&#62;case 1:&#60;br /&#62;
$output = '&#38;lt;span class=&#34;tagged&#34;&#38;gt;&#60;a title=&#34;'.$email_text.'&#34; rel=&#34;nofollow&#34;&#62;&#60;br /&#62;
&#38;lt;img class=&#34;WP-EmailIcon&#34; src=&#34;'.$email_icon.'&#34; alt=&#34;'.$email_text.'&#34; title=&#34;'.$email_text.'&#34; style=&#34;border: 0px;&#34; /&#38;gt;&#38;nbsp; '.$email_text.'&#60;/a&#62;&#38;lt;/span&#38;gt;';&#60;br /&#62;
break;&#60;/p&#62;
&#60;p&#62;In &#34;print.php&#34; find:&#60;/p&#62;
&#60;p&#62;case 1:&#60;br /&#62;
$output = '&#38;lt;img src=&#34;'.$print_icon.'&#34; alt=&#34;'.$print_text.'&#34; title=&#34;'.$print_text.'&#34; style=&#34;border: 0px;&#34; /&#38;gt;&#38;nbsp;&#60;br /&#62;
&#60;a href=&#34;'.$print_link.'&#34; title=&#34;'.$print_text.'&#34; rel=&#34;nofollow&#34;&#62;'.$print_text.'&#60;/a&#62;';&#60;br /&#62;
break;&#60;/p&#62;
&#60;p&#62;Change to:&#60;/p&#62;
&#60;p&#62;case 1:&#60;br /&#62;
$output = '&#38;lt;span class=&#34;tagged&#34;&#38;gt;&#60;a href=&#34;'.$print_link.'&#34; title=&#34;'.$print_text.'&#34; rel=&#34;nofollow&#34;&#62;&#60;br /&#62;
&#38;lt;img src=&#34;'.$print_icon.'&#34; alt=&#34;'.$print_text.'&#34; title=&#34;'.$print_text.'&#34; style=&#34;border: 0px;&#34; /&#38;gt;&#38;nbsp;'.$print_text.'&#60;/a&#62;&#38;lt;/span&#38;gt;';&#60;br /&#62;
break;&#60;/p&#62;
&#60;p&#62;In Admin &#38;gt; Presentation &#38;gt; Theme Editor select &#34;Single Post&#34; to edit &#34;single.php&#34;.  &#60;/p&#62;
&#60;p&#62;Find:&#60;/p&#62;
&#60;p&#62;&#38;lt;p class=&#34;tagged&#34;&#38;gt;&#60;strong&#62;Tags:&#60;/strong&#62; &#38;lt;?php the_category(' &#38;middot; ') ?&#38;gt;&#38;lt;/p&#38;gt;&#60;/p&#62;
&#60;p&#62;After, add:&#60;/p&#62;
&#60;p&#62;&#38;lt;p class=&#34;tagged&#34;&#38;gt;&#60;strong&#62;Tools: &#60;/strong&#62;&#60;br /&#62;
&#38;lt;?php if(function_exists('wp_print')) { print_link(); } ?&#38;gt;&#38;nbsp;&#60;br /&#62;
&#38;lt;?php if(function_exists('wp_email')) { email_link(); } ?&#38;gt;&#60;br /&#62;
&#38;lt;/p&#38;gt;&#60;/p&#62;
&#60;p&#62;Select the &#34;Main Index Template&#34; to edit &#34;index.php&#34;.&#60;/p&#62;
&#60;p&#62;Find:&#60;/p&#62;
&#60;p&#62;strong&#38;gt;Tags:&#60;/strong&#62; &#38;lt;?php the_category(' &#38;middot; ') ?&#38;gt;&#60;/p&#62;
&#60;p&#62;After, add:&#60;/p&#62;
&#60;p&#62;&#38;lt;p class=&#34;tagged&#34;&#38;gt;&#60;strong&#62;Tools: &#60;/strong&#62;&#60;br /&#62;
&#38;lt;?php if(function_exists('wp_print')) { print_link(); } ?&#38;gt;&#38;nbsp;&#60;br /&#62;
&#38;lt;?php if(function_exists('wp_email')) { email_link(); } ?&#38;gt;&#60;br /&#62;
&#38;lt;/p&#38;gt;&#60;/p&#62;
&#60;p&#62;That's the simplified version so you may have to play with the layout a little bit.  My blog at &#60;a href=&#34;http://www.frankhagan.com&#34; rel=&#34;nofollow&#34;&#62;http://www.frankhagan.com&#60;/a&#62; has quite a few things in there besides the 'wp-print' and 'wp-email' plugins.
&#60;/p&#62;</description>
</item>
<item>
<title>FrankHagan on ""Print" and "Email" Formatting"</title>
<link>http://cutline.tubetorial.com/forums-archive/topic/print-and-email-formatting#post-26</link>
<pubDate>Sat, 01 Sep 2007 05:58:10 +0000</pubDate>
<dc:creator>FrankHagan</dc:creator>
<guid isPermaLink="false">26@http://cutline.tubetorial.com/forums-archive/</guid>
<description>&#60;p&#62;1)  I would like to see a CSS for printer friendly formatting.  Or maybe that's a &#34;new page&#34; that you load?  I'm not sure how this is done!&#60;/p&#62;
&#60;p&#62;2)  Also, an &#34;email this&#34; link that would open a window for sending a friend a link to the page.  I think this is in WP already; how would we call it in Cutline?
&#60;/p&#62;</description>
</item>

</channel>
</rss>

