<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>WP Marketing &#187; Forum: WP plugin: Hana Code Insert - Recent Posts</title>
		<link>http://wpmarketing.org/forum/forum/wp-plugin-hana-code-insert</link>
		<description>Wordpress for Internet and Affiliate Marketing</description>
		<language>en-US</language>
		<pubDate>Wed, 10 Mar 2010 19:53:13 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://wpmarketing.org/forum/search.php</link>
		</textInput>
		<atom:link href="http://wpmarketing.org/forum/rss/forum/wp-plugin-hana-code-insert" rel="self" type="application/rss+xml" />

		<item>
			<title>tagriffith on "Hanna Code Insert"</title>
			<link>http://wpmarketing.org/forum/topic/hanna-code-insert#post-129</link>
			<pubDate>Tue, 02 Mar 2010 15:50:06 +0000</pubDate>
			<dc:creator>tagriffith</dc:creator>
			<guid isPermaLink="false">129@http://wpmarketing.org/forum/</guid>
			<description>&#60;p&#62;How can you insert the Hanna Code into a theme template? I want to use this code to put a flash web banner on one of the StudioPress themes and it does not recognize it as code in the php template.&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>hanadaddy on "Can&#039;t get plugin to work"</title>
			<link>http://wpmarketing.org/forum/topic/cant-get-plugin-to-work#post-128</link>
			<pubDate>Sat, 27 Feb 2010 11:20:44 +0000</pubDate>
			<dc:creator>hanadaddy</dc:creator>
			<guid isPermaLink="false">128@http://wpmarketing.org/forum/</guid>
			<description>&#60;p&#62;Unfortunately ,  the flash video players included with Hana flv player can't play youtube video.&#60;/p&#62;
&#60;p&#62;The &#60;a href=&#34;http://www.youtube.com/watch?v=aQtfpXkzHTI&#34; rel=&#34;nofollow&#34;&#62;http://www.youtube.com/watch?v=aQtfpXkzHTI&#60;/a&#62; link is not a direct URL for the Flv video file.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>tareyton100s on "Can&#039;t get plugin to work"</title>
			<link>http://wpmarketing.org/forum/topic/cant-get-plugin-to-work#post-127</link>
			<pubDate>Tue, 16 Feb 2010 15:40:17 +0000</pubDate>
			<dc:creator>tareyton100s</dc:creator>
			<guid isPermaLink="false">127@http://wpmarketing.org/forum/</guid>
			<description>&#60;p&#62;I really want to use this plugin because it allows the clickable link as required by Youtube TOS. I don't have that with JW Player that I'm using.&#60;/p&#62;
&#60;p&#62;I'd give you my website URL but it wouldn't do any good as I've deactivated the Hana FLV Plugin so my users can see my videos. When I tested the Hana FLV Plugin I kept getting a &#34;200-stream not found&#34; message. I know the URL is good. Here's the code I used in the post:&#60;/p&#62;
&#60;p&#62;[hana-flv-player video=&#34;http://www.youtube.com/watch?v=aQtfpXkzHTI&#34; width=&#34;530&#34; height=&#34;380&#34; description=&#34;Woman reporter lets go on live tv&#34; player=&#34;4&#34; autoload=&#34;true&#34; autoplay=&#34;true&#34; loop=&#34;false&#34; autorewind=&#34;true&#34; clickurl=&#34;http://www.youtube.com/watch?v=aQtfpXkzHTI&#34; clicktarget=&#34;_blank&#34; /]&#60;/p&#62;
&#60;p&#62;I didn't make any modifications to my theme files. Do I need to? Thanks for your help.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>gravel22 on "Add video in post with a url"</title>
			<link>http://wpmarketing.org/forum/topic/add-video-in-post-with-a-url#post-109</link>
			<pubDate>Wed, 20 Jan 2010 17:37:24 +0000</pubDate>
			<dc:creator>gravel22</dc:creator>
			<guid isPermaLink="false">109@http://wpmarketing.org/forum/</guid>
			<description>&#60;p&#62;Thank you this is really great and complete answer, &#60;/p&#62;
&#60;p&#62;Have a good day !
&#60;/p&#62;</description>
		</item>
		<item>
			<title>hanadaddy on "Add video in post with a url"</title>
			<link>http://wpmarketing.org/forum/topic/add-video-in-post-with-a-url#post-104</link>
			<pubDate>Tue, 19 Jan 2010 23:40:40 +0000</pubDate>
			<dc:creator>hanadaddy</dc:creator>
			<guid isPermaLink="false">104@http://wpmarketing.org/forum/</guid>
			<description>&#60;p&#62;Hello, nice website.&#60;/p&#62;
&#60;p&#62;Yes you can use custom fields and use as the video file.&#60;/p&#62;
&#60;p&#62;First add below routine in your theme&#38;#39;s &#60;code&#62;single.php&#60;/code&#62; file. Make sure you add below lines after &#60;code&#62;the_post();&#60;/code&#62; is called.&#60;br /&#62;
The custom field from the post is only accessible after &#60;code&#62;the_post()&#60;/code&#62; is called.&#60;/p&#62;
&#60;p&#62;Note that I used &#38;#39;video&#38;#39; as the custom field name to remember easily.&#60;/p&#62;
&#60;pre&#62;
&#38;lt;?php

$tarray= get_post_custom_values(&#38;#39;video&#38;#39;);
if (isset($tarray[0])) { $video=$tarray[0]; }

echo &#38;quot;video:$video&#38;quot;;

if (function_exists(&#38;#39;hana_flv_player_template_call&#38;#39;)){
$hana_arg=&#38;quot;
video=&#38;#39;$video&#38;#39;
player=&#38;#39;2&#38;#39;
width=&#38;#39;180&#38;#39;
height=&#38;#39;150&#38;#39;
more_2=\&#38;quot;showStopButton: false, showScrubber: false, showVolumeSlider: false,showMuteVolumeButton: false,
showFullScreenButton: false, showMenu: false, controlsOverVideo: &#38;#39;locked&#38;#39;,controlBarBackgroundColor: -1,
controlBarGloss: &#38;#39;none&#38;#39;, usePlayOverlay:false \&#38;quot;
&#38;quot;;
echo hana_flv_player_template_call($hana_arg);

}
?&#38;gt;
&#60;/pre&#62;
&#60;p&#62;Then you will update the post and add the custom field with name &#60;code&#62;video&#60;/code&#62; and the value which should be the URL of the video file.&#60;/p&#62;
&#60;p&#62;Then visit the website!&#60;/p&#62;
&#60;p&#62;See the below screen capture for better explanation. Picture worth better than thousand words.&#60;/p&#62;
&#60;p&#62; &lt;a class=&#039;bb_attachments_link&#039; href=&#039;http://wpmarketing.org/forum/?bb_attachments=104&amp;bbat=10&#039;&gt;&lt;img  src=&#039;http://wpmarketing.org/forum/?bb_attachments=104&amp;bbat=10&amp;inline&#039; /&gt;&lt;/a&gt; &lt;a class=&#039;bb_attachments_link&#039; href=&#039;http://wpmarketing.org/forum/?bb_attachments=104&amp;bbat=11&#039;&gt;&lt;img  src=&#039;http://wpmarketing.org/forum/?bb_attachments=104&amp;bbat=11&amp;inline&#039; /&gt;&lt;/a&gt; &lt;a class=&#039;bb_attachments_link&#039; href=&#039;http://wpmarketing.org/forum/?bb_attachments=104&amp;bbat=12&#039;&gt;&lt;img  src=&#039;http://wpmarketing.org/forum/?bb_attachments=104&amp;bbat=12&amp;inline&#039; /&gt;&lt;/a&gt;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>hanadaddy on "Definitions VANISHED!"</title>
			<link>http://wpmarketing.org/forum/topic/definitions-vanished#post-102</link>
			<pubDate>Tue, 19 Jan 2010 23:04:32 +0000</pubDate>
			<dc:creator>hanadaddy</dc:creator>
			<guid isPermaLink="false">102@http://wpmarketing.org/forum/</guid>
			<description>&#60;p&#62;Oh no.&#60;/p&#62;
&#60;p&#62;'Remove all' is a button to remove all entries once and for all.&#60;/p&#62;
&#60;p&#62;It is an emergency button created  awhile ago when a user reported something went wrong and the setting page went garbled up. So I created this button just to remove all entries when such case occurs.&#60;/p&#62;
&#60;p&#62;I am sorry but there is no way to restore the data.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>rshourbaji on "Definitions VANISHED!"</title>
			<link>http://wpmarketing.org/forum/topic/definitions-vanished#post-100</link>
			<pubDate>Tue, 19 Jan 2010 17:48:46 +0000</pubDate>
			<dc:creator>rshourbaji</dc:creator>
			<guid isPermaLink="false">100@http://wpmarketing.org/forum/</guid>
			<description>&#60;p&#62;We are just getting started with v2.2.  Have no idea what happened, and by no means did I hit the &#34;remove all&#34; button or link.  But suddenly all of the inserts I had defined simply vanished.   Any ideas as to how it may have happened?&#60;/p&#62;
&#60;p&#62;Thanks!&#60;/p&#62;
&#60;p&#62;Radi
&#60;/p&#62;</description>
		</item>
		<item>
			<title>gravel22 on "Add video in post with a url"</title>
			<link>http://wpmarketing.org/forum/topic/add-video-in-post-with-a-url#post-97</link>
			<pubDate>Tue, 19 Jan 2010 01:08:35 +0000</pubDate>
			<dc:creator>gravel22</dc:creator>
			<guid isPermaLink="false">97@http://wpmarketing.org/forum/</guid>
			<description>&#60;p&#62;Hi !&#60;/p&#62;
&#60;p&#62;First I'll thank you for the great flv player, really class all the way, thank you so much !&#60;/p&#62;
&#60;p&#62;My website here : &#60;a href=&#34;http://www.musixplore.ca/retour&#34; rel=&#34;nofollow&#34;&#62;http://www.musixplore.ca/retour&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I want the video player always at the same place in all of my post but I want to be able to change the video URL for each of my post.&#60;/p&#62;
&#60;p&#62;So I add theses lines in my single-video.php page into the editor.&#60;/p&#62;
&#60;p&#62;&#60;blockquote&#62;&#38;lt;?php&#60;/p&#62;
&#60;p&#62;if (function_exists('hana_flv_player_template_call')){&#60;br /&#62;
$hana_arg=&#34;&#60;br /&#62;
video='HERE I DONT WANT TO ADD ANY VIDEO URL !!!'&#60;br /&#62;
splashimage='$splashimage'&#60;br /&#62;
player='2'&#60;br /&#62;
width='180'&#60;br /&#62;
height='150'&#60;br /&#62;
more_2=\&#34;showStopButton: false, showScrubber: false, showVolumeSlider: false,showMuteVolumeButton: false,&#60;br /&#62;
showFullScreenButton: false, showMenu: false, controlsOverVideo: 'locked',controlBarBackgroundColor: -1,&#60;br /&#62;
controlBarGloss: 'none', usePlayOverlay:false \&#34;&#60;br /&#62;
&#34;;&#60;br /&#62;
echo hana_flv_player_template_call($hana_arg);&#60;/p&#62;
&#60;p&#62;}&#60;br /&#62;
?&#38;gt;&#60;/blockquote&#62;&#60;/p&#62;
&#60;p&#62;I just dont know how to code this to make a custom field when I post a new article.&#60;/p&#62;
&#60;p&#62;Hope you understand what I want.&#60;/p&#62;
&#60;p&#62;PS: Ive tried the $videolink thing that I found on an other post and it's not working.&#60;/p&#62;
&#60;p&#62;Ill be really glad if you figure my problem and Ill donate money if you help me !&#60;/p&#62;
&#60;p&#62;Have a good day, &#60;/p&#62;
&#60;p&#62;Gravel22 from Quebec !
&#60;/p&#62;</description>
		</item>
		<item>
			<title>hanadaddy on "Hana Code Insert Timing Out"</title>
			<link>http://wpmarketing.org/forum/topic/hana-code-insert-timing-out#post-94</link>
			<pubDate>Tue, 12 Jan 2010 23:36:25 +0000</pubDate>
			<dc:creator>hanadaddy</dc:creator>
			<guid isPermaLink="false">94@http://wpmarketing.org/forum/</guid>
			<description>&#60;p&#62;Hello ,&#60;br /&#62;
How many entries do you have ? Do those entries contain large amount of texts? It is not recommended to use too many entries with Hana Code Insert Plugin. Try to increase the memory_limit size of your php.ini.  &#60;/p&#62;
&#60;p&#62;If you are using typical shared hosting account, you can easily setup a new wordpress installation. Try start with a new setup and test with Hana Code Insert Plugin.&#60;/p&#62;
&#60;p&#62;Thank you.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jheuyard on "Hana Code Insert Timing Out"</title>
			<link>http://wpmarketing.org/forum/topic/hana-code-insert-timing-out#post-93</link>
			<pubDate>Thu, 07 Jan 2010 17:52:18 +0000</pubDate>
			<dc:creator>jheuyard</dc:creator>
			<guid isPermaLink="false">93@http://wpmarketing.org/forum/</guid>
			<description>&#60;p&#62;We have been using the Hana Code Insert plugin very happily for some time now but a few months ago we started experiencing an issue. Whenever we try to save changes by clicking the &#34;update entries&#34; button the browser spins for a bit before timing out and displaying a blank page for the plugin. We are however able to insert a new entry.&#60;/p&#62;
&#60;p&#62;My guess is the issue is related to file size. I attempted to increase the max file size in our php.ini file within the plugin folder with no luck.&#60;/p&#62;
&#60;p&#62;Any suggestion you can provide would be appreciated.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>hanadaddy on "Hana Code Insert v2.2"</title>
			<link>http://wpmarketing.org/forum/topic/hana-code-insert-v22#post-16</link>
			<pubDate>Sun, 04 Oct 2009 14:17:00 +0000</pubDate>
			<dc:creator>hanadaddy</dc:creator>
			<guid isPermaLink="false">16@http://wpmarketing.org/forum/</guid>
			<description>&#60;p&#62;&#60;strong&#62;v2.2 (10/04/2009)&#60;/strong&#62; : &#60;/p&#62;
&#60;p&#62;&#60;strong&#62;1. PHP code content evaluation&#60;/strong&#62;&#60;br /&#62;
Some modification on PHP evaluation that you can use &#60;code&#62;&#38;lt;?php&#60;/code&#62; and &#60;code&#62;?&#38;gt;&#60;/code&#62; within the entry content for PHP evaluation. &#60;/p&#62;
&#60;p&#62;So, in the previous version, if you wanted PHP code output, you could not use &#60;code&#62;&#38;lt;?php&#60;/code&#62; and &#60;code&#62;?&#38;gt;&#60;/code&#62;. But now you can use them inside the entry item.&#60;/p&#62;
&#60;p&#62;Previously you could only define PHP codes only.&#60;/p&#62;
&#60;pre&#62;
print &#34;&#38;lt;div style='border:1px dotted red; padding: 5px;'&#38;gt;&#34;;
print date(&#34;m/d/Y H:i:s&#34;);
print &#34;&#38;lt;/div&#38;gt;&#34;;
&#60;/pre&#62;
&#60;p&#62;But now, below code will work too.&#60;/p&#62;
&#60;pre&#62;
&#38;lt;div style='border:1px dotted red; padding: 5px;'&#38;gt;
&#38;lt;?php print date(&#34;m/d/Y H:i:s&#34;);?&#38;gt;
&#38;lt;/div&#38;gt;
&#60;/pre&#62;
&#60;p&#62;&#60;strong&#62;2. Custom ShortCode&#60;/strong&#62;&#60;br /&#62;
Also extra feature for custom short code is added. You can define your own custom short code prefix and post fix. So you don't have to use &#60;code&#62;[hana-code-insert]&#60;/code&#62; shortcode any more.&#60;/p&#62;
&#60;p&#62;If defined, custom short code format can be used instead of &#60;code&#62;[hana-code-insert name=&#38;#39;Entry Name&#38;#39; /]&#60;/code&#62;. For example, if you define &#60;code&#62;{{&#60;/code&#62; for start indicator, &#60;code&#62;}}&#60;/code&#62; for end indicator, you can use &#60;code&#62;{{Entry Name}}&#60;/code&#62;. But beware, your new shortcode format may conflict with other plugins and cause one or more plugins to fail. &#60;/p&#62;
&#60;p&#62;There are some restrictions. &#60;code&#62;^&#60;/code&#62; and &#60;code&#62;\&#60;/code&#62; characters are not allowed. And start and end indicators should not be used part of entry name. HTML comment tag is a good candidate for the customs shortcodes indicators. (Start indicator &#60;code&#62;&#38;lt;!--&#60;/code&#62; , End indicator : &#60;code&#62;--&#38;gt;&#60;/code&#62;) In this way, even if the Hana Code Insert is disabled, these shortcodes will not show this way.&#60;/p&#62;
&#60;p&#62;Some of the tested custom Short Codes&#60;/p&#62;
&#60;pre&#62;
===================
[[testing123]]
===================
~~testing123~~
===================
{{testing123}}
===================
This time it uses html comment.
&#38;lt;!-- testing123 --&#38;gt;
===================

[hana-code-insert name='testing123' /]
&#60;/pre&#62;
&#60;p&#62;I am planning to implement Text Widget Support and enhancement in the Admin settings screen in the next version. (Additional description to recognize code snippet better, Search Fuction, etc..)&#60;/p&#62;
&#60;p&#62;Enjoy! Let me know if you experience any problem.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>hanadaddy on "To download Hana Code Insert Plugin, please check this link"</title>
			<link>http://wpmarketing.org/forum/topic/to-download-hana-code-insert-plugin-please-check-this-link#post-3</link>
			<pubDate>Wed, 05 Aug 2009 03:07:31 +0000</pubDate>
			<dc:creator>hanadaddy</dc:creator>
			<guid isPermaLink="false">3@http://wpmarketing.org/forum/</guid>
			<description>&#60;p&#62;&#60;a href=&#34;http://wpmarketing.org/plugins/hana-code-insert/&#34;&#62;http://wpmarketing.org/plugins/hana-code-insert/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Hana code insert plugin can be used to insert special html or javascript or php snippet in a post. You can may insert special contact form, Adsense AD, Amazon AD, Paypal donation button, etc...&#60;/p&#62;
&#60;p&#62;Thank you.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
