<?xml version="1.0" encoding="UTF-8"?><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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: BibleGateway Verse-of-the-Day</title>
	<atom:link href="http://www.zaikos.com/coding/wp-plugins/biblegateway-votd/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.zaikos.com</link>
	<description>Dave&#039;s blog.</description>
	<lastBuildDate>Tue, 19 Jan 2010 05:37:00 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Dave</title>
		<link>http://www.zaikos.com/coding/wp-plugins/biblegateway-votd/comment-page-1/#comment-1804</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Tue, 19 Jan 2010 05:37:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.zaikos.com/blog/?page_id=338#comment-1804</guid>
		<description>The plugin simply inserts the JavaScript code provided by BibleGateway. When the browser reaches that code, it loads the JavaScript from BibleGateway&#039;s web site. That code contains the bible verse and links. As it is now, there&#039;s nothing in the plugin that could be modified to alter the content from BibleGateway&#039;s web site.

One possible solution would be to load the verse from BibleGateway in the back-end, using PHP to open the remote URL. However, if BibleGateway is down or running slow, this will cause significant page load issues or time outs.

The best possible solution I can think of would be to use another JavaScript function that intercepts link clicks and forces them to open in a new window. JQuery could probably do it and there may even be plugins that exist already for WordPress that will take care of it for you. This particular feature is not something I plan to incorporate into the plugin so an alternate solution would be your best bet if you absolutely need the links to open in a new window.</description>
		<content:encoded><![CDATA[<p>The plugin simply inserts the JavaScript code provided by BibleGateway. When the browser reaches that code, it loads the JavaScript from BibleGateway&#8217;s web site. That code contains the bible verse and links. As it is now, there&#8217;s nothing in the plugin that could be modified to alter the content from BibleGateway&#8217;s web site.</p>
<p>One possible solution would be to load the verse from BibleGateway in the back-end, using PHP to open the remote URL. However, if BibleGateway is down or running slow, this will cause significant page load issues or time outs.</p>
<p>The best possible solution I can think of would be to use another JavaScript function that intercepts link clicks and forces them to open in a new window. JQuery could probably do it and there may even be plugins that exist already for WordPress that will take care of it for you. This particular feature is not something I plan to incorporate into the plugin so an alternate solution would be your best bet if you absolutely need the links to open in a new window.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Woolf</title>
		<link>http://www.zaikos.com/coding/wp-plugins/biblegateway-votd/comment-page-1/#comment-1801</link>
		<dc:creator>Woolf</dc:creator>
		<pubDate>Tue, 19 Jan 2010 00:30:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.zaikos.com/blog/?page_id=338#comment-1801</guid>
		<description>Is there a way to make the links from the BibleGateway VOTD Plugin open in a new page rather than in the same page? I tried adding in  target=&quot;_blank&quot; in what I thought were the sections creating the links in the plugin, but this just caused the plug in to fail.</description>
		<content:encoded><![CDATA[<p>Is there a way to make the links from the BibleGateway VOTD Plugin open in a new page rather than in the same page? I tried adding in  target=&#8221;_blank&#8221; in what I thought were the sections creating the links in the plugin, but this just caused the plug in to fail.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave</title>
		<link>http://www.zaikos.com/coding/wp-plugins/biblegateway-votd/comment-page-1/#comment-1059</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Thu, 29 Oct 2009 22:16:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.zaikos.com/blog/?page_id=338#comment-1059</guid>
		<description>This is likely caused by a conflict in CSS code somewhere. The widget encapsulates the BibleGateway verse in a  class named &lt;em&gt;biblevotd&lt;/em&gt; by default. You can use that to exception out conflicts. For example, to completely remove the image BibleGateway inserts to listen to the audio, you can add the following to your style.css file:

&lt;code&gt;.biblevotd img { display: none; }&lt;/code&gt;

You could also also have the speaker appear properly by manually setting the width and height like this:

&lt;code&gt;.biblevotd img { width: 13px; height: 12px; }&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>This is likely caused by a conflict in CSS code somewhere. The widget encapsulates the BibleGateway verse in a  class named <em>biblevotd</em> by default. You can use that to exception out conflicts. For example, to completely remove the image BibleGateway inserts to listen to the audio, you can add the following to your style.css file:</p>
<p><code>.biblevotd img { display: none; }</code></p>
<p>You could also also have the speaker appear properly by manually setting the width and height like this:</p>
<p><code>.biblevotd img { width: 13px; height: 12px; }</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bob Randklev</title>
		<link>http://www.zaikos.com/coding/wp-plugins/biblegateway-votd/comment-page-1/#comment-1053</link>
		<dc:creator>Bob Randklev</dc:creator>
		<pubDate>Wed, 28 Oct 2009 20:46:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.zaikos.com/blog/?page_id=338#comment-1053</guid>
		<description>I&#039;ve installed the plugin and added the widget to the sidebar and the verse and link are showing up but there&#039;s a large hard to view speaker that&#039;s 300 pixels tall throwing the widget section off? 

Is there a way to remove the audio link and image or ???</description>
		<content:encoded><![CDATA[<p>I&#8217;ve installed the plugin and added the widget to the sidebar and the verse and link are showing up but there&#8217;s a large hard to view speaker that&#8217;s 300 pixels tall throwing the widget section off? </p>
<p>Is there a way to remove the audio link and image or ???</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave</title>
		<link>http://www.zaikos.com/coding/wp-plugins/biblegateway-votd/comment-page-1/#comment-788</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Sun, 13 Sep 2009 00:41:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.zaikos.com/blog/?page_id=338#comment-788</guid>
		<description>Hi Chris,

Glad you got everything working!</description>
		<content:encoded><![CDATA[<p>Hi Chris,</p>
<p>Glad you got everything working!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: chris Glover</title>
		<link>http://www.zaikos.com/coding/wp-plugins/biblegateway-votd/comment-page-1/#comment-787</link>
		<dc:creator>chris Glover</dc:creator>
		<pubDate>Sun, 13 Sep 2009 00:18:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.zaikos.com/blog/?page_id=338#comment-787</guid>
		<description>I just wrote to you needing help to get my &quot;bible verse&quot; working.  I just wanted to say that I have it working now, so don&#039;t bother to answer me.  Its working wonderful and I want to thank you, so much, for having this available for everyone.  God bless you, all</description>
		<content:encoded><![CDATA[<p>I just wrote to you needing help to get my &#8220;bible verse&#8221; working.  I just wanted to say that I have it working now, so don&#8217;t bother to answer me.  Its working wonderful and I want to thank you, so much, for having this available for everyone.  God bless you, all</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: chris glover</title>
		<link>http://www.zaikos.com/coding/wp-plugins/biblegateway-votd/comment-page-1/#comment-786</link>
		<dc:creator>chris glover</dc:creator>
		<pubDate>Sat, 12 Sep 2009 23:10:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.zaikos.com/blog/?page_id=338#comment-786</guid>
		<description>The theme I have (WP hybrid news) doesn&#039;t have a sidebar.php file so I chose your option #2. It wasn&#039;t exactly as you said, but I added the code and this is what I have.  Now on my website, it just has what I put in the text widget?  What did I do wrong?  Thank you, so much.

if ( isset($dzvotd_plugin) ) {
	add_shortcode(&#039;bible-votd&#039;, array(&amp;$dzvotd_plugin, &#039;BibleVOTD&#039;)); add_filter(’widget_text’, ‘do_shortcode’);

	add_action(&#039;plugins_loaded&#039;, array(&amp;$dzvotd_plugin, &#039;BibleVOTD_widget_init&#039;));
}</description>
		<content:encoded><![CDATA[<p>The theme I have (WP hybrid news) doesn&#8217;t have a sidebar.php file so I chose your option #2. It wasn&#8217;t exactly as you said, but I added the code and this is what I have.  Now on my website, it just has what I put in the text widget?  What did I do wrong?  Thank you, so much.</p>
<p>if ( isset($dzvotd_plugin) ) {<br />
	add_shortcode(&#8216;bible-votd&#8217;, array(&amp;$dzvotd_plugin, &#8216;BibleVOTD&#8217;)); add_filter(’widget_text’, ‘do_shortcode’);</p>
<p>	add_action(&#8216;plugins_loaded&#8217;, array(&amp;$dzvotd_plugin, &#8216;BibleVOTD_widget_init&#8217;));<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave</title>
		<link>http://www.zaikos.com/coding/wp-plugins/biblegateway-votd/comment-page-1/#comment-339</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Mon, 15 Dec 2008 04:10:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.zaikos.com/blog/?page_id=338#comment-339</guid>
		<description>At the moment the plugin isn&#039;t coded to take advantage of the widget system in WordPress, so it won&#039;t appear in the Widgets section.  There are, however, a couple of easy workarounds.

&lt;u&gt;Option 1 (which I think is the easiest)&lt;/u&gt;:

Edit the sidebar.php file of your theme and add the following (inside the &lt;?php ?&gt; enclosures):

&lt;strong&gt;echo do_shortcode(&#039;[bible-votd]&#039;);&lt;/strong&gt;

Inside the quotations is the shortcode, so you can also change Bible versions.

&lt;u&gt;Option 2 (a little more complicated but more versatile)&lt;/u&gt;:

In the bible-votd.php plugin, add the following code:

&lt;strong&gt;add_filter(&#039;widget_text&#039;, &#039;do_shortcode&#039;);&lt;/strong&gt;

At the end, after the line that reads:

add_shortcode(&#039;bible-votd&#039;, array(&amp;$dzvotd_pluginSeries, &#039;BibleVOTD&#039;));

Then you can use add a Text widget with the shortcode and it will substitute in the verse of the day.

Let me know if you need more detailed instructions.</description>
		<content:encoded><![CDATA[<p>At the moment the plugin isn&#8217;t coded to take advantage of the widget system in WordPress, so it won&#8217;t appear in the Widgets section.  There are, however, a couple of easy workarounds.</p>
<p><u>Option 1 (which I think is the easiest)</u>:</p>
<p>Edit the sidebar.php file of your theme and add the following (inside the &lt;?php ?&gt; enclosures):</p>
<p><strong>echo do_shortcode(&#8216;[bible-votd]&#8216;);</strong></p>
<p>Inside the quotations is the shortcode, so you can also change Bible versions.</p>
<p><u>Option 2 (a little more complicated but more versatile)</u>:</p>
<p>In the bible-votd.php plugin, add the following code:</p>
<p><strong>add_filter(&#8216;widget_text&#8217;, &#8216;do_shortcode&#8217;);</strong></p>
<p>At the end, after the line that reads:</p>
<p>add_shortcode(&#8216;bible-votd&#8217;, array(&amp;$dzvotd_pluginSeries, &#8216;BibleVOTD&#8217;));</p>
<p>Then you can use add a Text widget with the shortcode and it will substitute in the verse of the day.</p>
<p>Let me know if you need more detailed instructions.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: wonderingHow</title>
		<link>http://www.zaikos.com/coding/wp-plugins/biblegateway-votd/comment-page-1/#comment-338</link>
		<dc:creator>wonderingHow</dc:creator>
		<pubDate>Mon, 15 Dec 2008 01:10:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.zaikos.com/blog/?page_id=338#comment-338</guid>
		<description>How would I use this as a widget in a sidebar?</description>
		<content:encoded><![CDATA[<p>How would I use this as a widget in a sidebar?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
