<?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>Support Forum - Topic: how to remove photo delay effect and spinning wheel?</title>
		<link>http://www.kriesi.at/support/topic/how-to-remove-photo-delay-effect-and-spinning-wheel</link>
		<description>Support Forum - Topic: how to remove photo delay effect and spinning wheel?</description>
		<language>en-US</language>
		<pubDate>Fri, 24 May 2013 09:17:43 +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://www.kriesi.at/support/search.php</link>
		</textInput>
		<atom:link href="http://www.kriesi.at/support/rss/topic/how-to-remove-photo-delay-effect-and-spinning-wheel" rel="self" type="application/rss+xml" />

		<item>
			<title>James Morrison on "how to remove photo delay effect and spinning wheel?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-remove-photo-delay-effect-and-spinning-wheel#post-2685</link>
			<pubDate>Thu, 12 Aug 2010 17:30:26 +0000</pubDate>
			<dc:creator>James Morrison</dc:creator>
			<guid isPermaLink="false">2685@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;The point ( . ) is used by PHP to indicate that the content is in addition to existing content.&#60;/p&#62;
&#60;p&#62;eg&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$output = &#38;quot;1,2,3,&#38;quot;;
$output .= &#38;quot;4,5,6&#38;quot;;

return $output;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;would return 1,2,3,4,5,6 whereas:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$output = &#38;quot;1,2,3,&#38;quot;;
$output = &#38;quot;4,5,6&#38;quot;; /* note no period!! */

return $output;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;would only return 4,5,6.&#60;/p&#62;
&#60;p&#62;So, no you don't need it but it doesn't matter if you leave it there so long as you don't define $metatags elsewhere :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>borsato on "how to remove photo delay effect and spinning wheel?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-remove-photo-delay-effect-and-spinning-wheel#post-2674</link>
			<pubDate>Thu, 12 Aug 2010 15:24:40 +0000</pubDate>
			<dc:creator>borsato</dc:creator>
			<guid isPermaLink="false">2674@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Do i have to remove the point? (see ??)&#60;/p&#62;
&#60;p&#62;function khelper_generator()&#60;br /&#62;
{&#60;br /&#62;
$metatags ??= &#34;&#34;;&#60;/p&#62;
&#60;p&#62;pls advise, thks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>James Morrison on "how to remove photo delay effect and spinning wheel?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-remove-photo-delay-effect-and-spinning-wheel#post-2664</link>
			<pubDate>Thu, 12 Aug 2010 14:22:52 +0000</pubDate>
			<dc:creator>James Morrison</dc:creator>
			<guid isPermaLink="false">2664@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;No problem, change this:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function khelper_generator()
{
$metatags .= &#38;quot;\n\n&#38;quot;;
$metatags .= &#38;#39;&#38;lt;!-- Debugging help, do not remove --&#38;gt;&#38;#39;.&#38;quot;\n&#38;quot;;
$metatags .= &#38;#39;&#38;lt;meta name=&#38;quot;Framework&#38;quot; content=&#38;quot;Kpress&#38;quot; /&#38;gt;&#38;#39;.&#38;quot;\n&#38;quot;;
$metatags .= &#38;#39;&#38;lt;meta name=&#38;quot;Theme Version&#38;quot; content=&#38;quot;&#38;#39;.THEMEVERSION.&#38;#39;&#38;quot; /&#38;gt;&#38;#39;.&#38;quot;\n&#38;quot;;
$metatags .= &#38;#39;&#38;lt;meta name=&#38;quot;Framework Version&#38;quot; content=&#38;quot;&#38;#39;.FRAMEWORK_VERSION.&#38;#39;&#38;quot; /&#38;gt;&#38;#39;.&#38;quot;\n&#38;quot;;
$metatags .= &#38;#39;&#38;lt;meta name=&#38;quot;CMS Version&#38;quot; content=&#38;quot;&#38;#39;.get_bloginfo(&#38;#39;version&#38;#39;).&#38;#39;&#38;quot; /&#38;gt;&#38;#39;.&#38;quot;\n\n&#38;quot;;
return $metatags;
}
add_filter(&#38;#39;the_generator&#38;#39;,&#38;#39;khelper_generator&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;to this:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function khelper_generator()
{
$metatags = &#38;quot;&#38;quot;;

return $metatags;
}
add_filter(&#38;#39;the_generator&#38;#39;,&#38;#39;khelper_generator&#38;#39;);&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>borsato on "how to remove photo delay effect and spinning wheel?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-remove-photo-delay-effect-and-spinning-wheel#post-2629</link>
			<pubDate>Wed, 11 Aug 2010 21:30:33 +0000</pubDate>
			<dc:creator>borsato</dc:creator>
			<guid isPermaLink="false">2629@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi James, thanks for your prompt reply!&#60;/p&#62;
&#60;p&#62;1) It's working fine, thks for your advise ! You're right, it was the browser cache :-) &#60;/p&#62;
&#60;p&#62;2) I have this older code: Which part do I have to delete in order to delete the Debug code? pls advise soonest, thks.&#60;/p&#62;
&#60;p&#62;##################################################################&#60;br /&#62;
# removes meta tag &#34;generated by wordpress&#34; for security purpose&#60;br /&#62;
# and add Version number of the theme and theme framework to a meta&#60;br /&#62;
# tag for easier debugging by the author, in case of help requests&#60;br /&#62;
##################################################################&#60;/p&#62;
&#60;p&#62;function khelper_generator()&#60;br /&#62;
{&#60;br /&#62;
	$metatags .= &#34;\n\n&#34;;&#60;br /&#62;
	$metatags .= '&#38;lt;!-- Debugging help, do not remove --&#38;gt;'.&#34;\n&#34;;&#60;br /&#62;
	$metatags .= '&#38;lt;meta name=&#34;Framework&#34; content=&#34;Kpress&#34; /&#38;gt;'.&#34;\n&#34;;&#60;br /&#62;
	$metatags .= '&#38;lt;meta name=&#34;Theme Version&#34; content=&#34;'.THEMEVERSION.'&#34; /&#38;gt;'.&#34;\n&#34;;&#60;br /&#62;
	$metatags .= '&#38;lt;meta name=&#34;Framework Version&#34; content=&#34;'.FRAMEWORK_VERSION.'&#34; /&#38;gt;'.&#34;\n&#34;;&#60;br /&#62;
	$metatags .= '&#38;lt;meta name=&#34;CMS Version&#34; content=&#34;'.get_bloginfo('version').'&#34; /&#38;gt;'.&#34;\n\n&#34;;&#60;/p&#62;
&#60;p&#62;	return $metatags;&#60;br /&#62;
}&#60;br /&#62;
add_filter('the_generator','khelper_generator');
&#60;/p&#62;</description>
		</item>
		<item>
			<title>James Morrison on "how to remove photo delay effect and spinning wheel?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-remove-photo-delay-effect-and-spinning-wheel#post-2595</link>
			<pubDate>Wed, 11 Aug 2010 17:50:57 +0000</pubDate>
			<dc:creator>James Morrison</dc:creator>
			<guid isPermaLink="false">2595@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey,&#60;/p&#62;
&#60;p&#62;1.) If you've removed the code and the images still &#34;pre-load&#34; please clear your cache and try again. CSS / JS files are usually cached by the browser to make subsequent page loads quicker so this may be a local version of the file you're seeing.&#60;/p&#62;
&#60;p&#62;2.) Please be aware that if you have any future problems we may ask you to put the code back temporarily so we can debug. You can remove the Debug code by removing this code from /framework/helper_functions/lots_of_small_helpers.php:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;if (!is_feed())
	{
		$metatags .= &#38;quot;\n\n&#38;quot;;
		$metatags .= &#38;#39;&#38;lt;!-- Debugging help, do not remove --&#38;gt;&#38;#39;.&#38;quot;\n&#38;quot;;
		$metatags .= &#38;#39;&#38;lt;meta name=&#38;quot;Framework&#38;quot; content=&#38;quot;Kpress&#38;quot; /&#38;gt;&#38;#39;.&#38;quot;\n&#38;quot;;
		$metatags .= &#38;#39;&#38;lt;meta name=&#38;quot;Theme Version&#38;quot; content=&#38;quot;&#38;#39;.THEMEVERSION.&#38;#39;&#38;quot; /&#38;gt;&#38;#39;.&#38;quot;\n&#38;quot;;
		$metatags .= &#38;#39;&#38;lt;meta name=&#38;quot;Framework Version&#38;quot; content=&#38;quot;&#38;#39;.FRAMEWORK_VERSION.&#38;#39;&#38;quot; /&#38;gt;&#38;#39;.&#38;quot;\n&#38;quot;;
		$metatags .= &#38;#39;&#38;lt;meta name=&#38;quot;CMS Version&#38;quot; content=&#38;quot;&#38;#39;.get_bloginfo(&#38;#39;version&#38;#39;).&#38;#39;&#38;quot; /&#38;gt;&#38;#39;.&#38;quot;\n\n&#38;quot;;
	}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Cheers,&#60;br /&#62;
James
&#60;/p&#62;</description>
		</item>
		<item>
			<title>borsato on "how to remove photo delay effect and spinning wheel?"</title>
			<link>http://www.kriesi.at/support/topic/how-to-remove-photo-delay-effect-and-spinning-wheel#post-2541</link>
			<pubDate>Wed, 11 Aug 2010 07:46:10 +0000</pubDate>
			<dc:creator>borsato</dc:creator>
			<guid isPermaLink="false">2541@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi, &#60;/p&#62;
&#60;p&#62;1) I would like to completeley remove the jquery photo delay effect and preloading spinning wheel. &#60;/p&#62;
&#60;p&#62;I tried to remove the code as mentioned in a previous post: &#60;/p&#62;
&#60;p&#62;(&#60;a href=&#34;http://www.kriesi.at/support/topic/cache-usage#post-1065&#34; rel=&#34;nofollow&#34;&#62;http://www.kriesi.at/support/topic/cache-usage#post-1065&#60;/a&#62;)&#60;/p&#62;
&#60;p&#62;jQuery('#main').kriesi_image_preloader({delay:100, callback:removeloader});	// activates preloader for non-slideshow images. &#60;/p&#62;
&#60;p&#62;It didn't remove the effect. How can I safely remove this jquery photo delay effect? &#60;/p&#62;
&#60;p&#62;2) How can I remove this debug line from the source code: &#38;lt;meta name=&#34;Framework&#34; content=&#34;Kpress&#34; /&#38;gt;&#38;lt;meta name=&#34;Theme Version&#34; ....content=&#34;1.0&#34; /&#38;gt;&#60;/p&#62;
&#60;p&#62;best regards,
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
