<?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 - Tag: functions.php - Recent Posts</title>
		<link>http://www.kriesi.at/support/tags/functionsphp</link>
		<description>Support Forum - Tag: functions.php - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Wed, 19 Jun 2013 11:59:19 +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/tags/functionsphp" rel="self" type="application/rss+xml" />

		<item>
			<title>Dude on "Layout of Cart Table when using German Market Extension 2.0.2"</title>
			<link>http://www.kriesi.at/support/topic/layout-of-cart-table-when-using-german-market-extension-202#post-118977</link>
			<pubDate>Mon, 17 Jun 2013 12:47:35 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">118977@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi! &#60;/p&#62;
&#60;p&#62; Thanks - actually I'm working on a &#34;german market&#34; integration plugin which will also take care of the colspan value. &#60;/p&#62;
&#60;p&#62; Regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Heike on "Layout of Cart Table when using German Market Extension 2.0.2"</title>
			<link>http://www.kriesi.at/support/topic/layout-of-cart-table-when-using-german-market-extension-202#post-118964</link>
			<pubDate>Mon, 17 Jun 2013 11:02:25 +0000</pubDate>
			<dc:creator>Heike</dc:creator>
			<guid isPermaLink="false">118964@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi there,&#60;/p&#62;
&#60;p&#62;just a remark to the closed topic &#60;a href=&#34;http://www.kriesi.at/support/topic/layout-on-cart-page&#34; rel=&#34;nofollow&#34;&#62;http://www.kriesi.at/support/topic/layout-on-cart-page&#60;/a&#62;:&#60;br /&#62;
when updating German Market v 2.0.2, the layout of the cart table might be messed up (reason: Added filter for colspan in cart). There is a quick fix by the developers of the extension, which can be found on their support ( &#60;a href=&#34;http://marketpress.de/support/topic/mwst-wird-nach-update-im-warenkorb-nicht-mehr-angezeigt-und-layoutveranderungen/#post-10547&#34; rel=&#34;nofollow&#34;&#62;http://marketpress.de/support/topic/mwst-wird-nach-update-im-warenkorb-nicht-mehr-angezeigt-und-layoutveranderungen/#post-10547&#60;/a&#62; ):&#60;br /&#62;
For this fix must be implemented in the functions.php of the theme (i.e. Replete), I just thought it might be helpful to find it here too:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;add_filter( &#38;#39;wgm_cart_colspan_value&#38;#39;, &#38;#39;mp130612&#38;#39; );
function mp130612() {
    echo 7;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Good luck
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Child theme functions.php file"</title>
			<link>http://www.kriesi.at/support/topic/child-theme-functionsphp-file#post-118096</link>
			<pubDate>Thu, 13 Jun 2013 14:27:42 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">118096@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi! &#60;/p&#62;
&#60;p&#62; This thread will help you: &#60;a href=&#34;http://www.kriesi.at/support/topic/override-the-global-avia_config-within-child-functionsphp&#34; rel=&#34;nofollow&#34;&#62;http://www.kriesi.at/support/topic/override-the-global-avia_config-within-child-functionsphp&#60;/a&#62; &#60;/p&#62;
&#60;p&#62; Regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>zasites on "Child theme functions.php file"</title>
			<link>http://www.kriesi.at/support/topic/child-theme-functionsphp-file#post-118077</link>
			<pubDate>Thu, 13 Jun 2013 13:40:24 +0000</pubDate>
			<dc:creator>zasites</dc:creator>
			<guid isPermaLink="false">118077@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hello - I have created a child theme for Flashlight and it contains a style.css file as well as a functions.php file. I want to change the default height of blog post images. In the main functions.php file, I have found it here:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$avia_config[&#38;#39;imgSize&#38;#39;][&#38;#39;blog&#38;#39;] 		= array(&#38;#39;width&#38;#39;=&#38;gt;430, &#38;#39;height&#38;#39;=&#38;gt;9999, &#38;#39;crop&#38;#39;=&#38;gt;false);		// image for blog posts&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;The thing is, I don't want to make the change in the main functions.php file in case of future updates. So I'd like to make the change in my child theme functions.php file, but doing so doesn't seem to make any difference. This is what I have:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php

$avia_config[&#38;#39;imgSize&#38;#39;][&#38;#39;blog&#38;#39;]  = array(&#38;#39;width&#38;#39;=&#38;gt;430, &#38;#39;height&#38;#39;=&#38;gt;300, &#38;#39;crop&#38;#39;=&#38;gt;false); // image for blog posts

?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Any idea what I am missing? Thanks in advance!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>techmyocn on "Override the global $avia_config within child functions.php"</title>
			<link>http://www.kriesi.at/support/topic/override-the-global-avia_config-within-child-functionsphp#post-117618</link>
			<pubDate>Tue, 11 Jun 2013 14:35:32 +0000</pubDate>
			<dc:creator>techmyocn</dc:creator>
			<guid isPermaLink="false">117618@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks. That worked.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Override the global $avia_config within child functions.php"</title>
			<link>http://www.kriesi.at/support/topic/override-the-global-avia_config-within-child-functionsphp#post-117617</link>
			<pubDate>Tue, 11 Jun 2013 14:17:47 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">117617@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Probably you need to use a hook to overwrite the avia_config array after the main theme functions.php is loaded - try:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function avia_change_image_size_array() {
	global $avia_config;
	$avia_config[&#38;#39;imgSize&#38;#39;][&#38;#39;page&#38;#39;] = array(&#38;#39;width&#38;#39;=&#38;gt;620, &#38;#39;height&#38;#39;=&#38;gt;200);
}
add_action( &#38;#39;init&#38;#39;, &#38;#39;avia_change_image_size_array&#38;#39;);&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>techmyocn on "Override the global $avia_config within child functions.php"</title>
			<link>http://www.kriesi.at/support/topic/override-the-global-avia_config-within-child-functionsphp#post-117610</link>
			<pubDate>Tue, 11 Jun 2013 14:08:39 +0000</pubDate>
			<dc:creator>techmyocn</dc:creator>
			<guid isPermaLink="false">117610@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;When a youtube video appears under &#34;Blog Layout - Full sized entries&#34; on the blog - the height becomes 200px. I need it to be 350px. I believe this is where i neeed to edit that&#60;br /&#62;
'$avia_config['imgSize']['page'] 		= array('width'=&#38;gt;620, 'height'=&#38;gt;200);		// image for pages'&#60;/p&#62;
&#60;p&#62;My question is... how can I override the global $avia_config; within my child's function.php so it will not be overwritten.&#60;/p&#62;
&#60;p&#62;Thank you for your time.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>spyros on "Delete Enfold Theme by Kriesi"</title>
			<link>http://www.kriesi.at/support/topic/delete-enfold-theme-by-kriesi#post-117190</link>
			<pubDate>Sat, 08 Jun 2013 18:24:02 +0000</pubDate>
			<dc:creator>spyros</dc:creator>
			<guid isPermaLink="false">117190@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;It works. Thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Delete Enfold Theme by Kriesi"</title>
			<link>http://www.kriesi.at/support/topic/delete-enfold-theme-by-kriesi#post-117181</link>
			<pubDate>Sat, 08 Jun 2013 15:33:40 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">117181@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;If you aren't comfortable writing a function, you can just add [nolink] at the end of your custom text in the copyright field in the theme options.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>spyros on "Delete Enfold Theme by Kriesi"</title>
			<link>http://www.kriesi.at/support/topic/delete-enfold-theme-by-kriesi#post-117166</link>
			<pubDate>Sat, 08 Jun 2013 11:45:28 +0000</pubDate>
			<dc:creator>spyros</dc:creator>
			<guid isPermaLink="false">117166@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I read in footer.php:&#60;/p&#62;
&#60;p&#62;// you can filter and remove the backlink with an add_filter function&#60;br /&#62;
// from your themes (or child themes) functions.php file if you dont want to edit this file&#60;br /&#62;
// you can also just keep that link. I really do appreciate it ;)&#60;br /&#62;
$kriesi_at_backlink =	apply_filters(&#34;kriesi_backlink&#34;, &#34; - &#60;a href='http://www.kriesi.at'&#62;Enfold Theme by Kriesi&#60;/a&#62;&#34;);&#60;/p&#62;
&#60;p&#62;Can you write me code for functions.php in child theme for removing or editing of this line? Maybe it is totally beginner question but I am beginner in child theme options. Thanks for help!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Delete Enfold Theme by Kriesi"</title>
			<link>http://www.kriesi.at/support/topic/delete-enfold-theme-by-kriesi#post-116732</link>
			<pubDate>Thu, 06 Jun 2013 15:46:37 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">116732@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi Gurmit,&#60;/p&#62;
&#60;p&#62;Both of the above methods will work for you but the [nolink] will allow you to not modify the actual theme files which is often user preferred for easier updating later.&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>kcharity on "Delete Enfold Theme by Kriesi"</title>
			<link>http://www.kriesi.at/support/topic/delete-enfold-theme-by-kriesi#post-116728</link>
			<pubDate>Thu, 06 Jun 2013 15:22:57 +0000</pubDate>
			<dc:creator>kcharity</dc:creator>
			<guid isPermaLink="false">116728@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Just add the following shortcode at the end of your Copyright line in the theme options footer section.&#60;br /&#62;
&#60;code&#62;[nolink]&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;The full line will read something like this:&#60;br /&#62;
&#60;code&#62;© Copyright 2013 - &#60;a href=&#34;http://www.kriesi.at&#34;&#62;My Awesome Site&#60;/a&#62; [nolink]&#60;/code&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Delete Enfold Theme by Kriesi"</title>
			<link>http://www.kriesi.at/support/topic/delete-enfold-theme-by-kriesi#post-116606</link>
			<pubDate>Thu, 06 Jun 2013 09:05:50 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">116606@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Edit footer.php then find this code on line 85&#60;/p&#62;
&#60;p&#62;&#60;code&#62;$kriesi_at_backlink =	apply_filters(&#38;quot;kriesi_backlink&#38;quot;, &#38;quot; - &#38;lt;a href=&#38;#39;http://www.kriesi.at&#38;#39;&#38;gt;Enfold Theme by Kriesi&#38;lt;/a&#38;gt;&#38;quot;);&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;You can change the value:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;$kriesi_at_backlink =	apply_filters(&#38;quot;kriesi_backlink&#38;quot;, &#38;quot; - &#38;lt;a href=&#38;#39;http://www.myawesomewebsite.com&#38;#39;&#38;gt;My Awesome Website&#38;lt;/a&#38;gt;&#38;quot;);&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Or you can remove it.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Gurmit on "Delete Enfold Theme by Kriesi"</title>
			<link>http://www.kriesi.at/support/topic/delete-enfold-theme-by-kriesi#post-116570</link>
			<pubDate>Thu, 06 Jun 2013 07:50:14 +0000</pubDate>
			<dc:creator>Gurmit</dc:creator>
			<guid isPermaLink="false">116570@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I would like to have just the © Copyright on my website footer without the mention of the Enfold theme. How would I do that? Please help.&#60;/p&#62;
&#60;p&#62;So grateful,&#60;/p&#62;
&#60;p&#62;Gurmit
&#60;/p&#62;</description>
		</item>
		<item>
			<title>andresfelipe on "Customize Copyright in Footer"</title>
			<link>http://www.kriesi.at/support/topic/customize-copyright-in-footer#post-109147</link>
			<pubDate>Mon, 06 May 2013 03:49:46 +0000</pubDate>
			<dc:creator>andresfelipe</dc:creator>
			<guid isPermaLink="false">109147@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thank you Dude! That was simple.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ismael on "Customize Copyright in Footer"</title>
			<link>http://www.kriesi.at/support/topic/customize-copyright-in-footer#post-109024</link>
			<pubDate>Sun, 05 May 2013 12:57:48 +0000</pubDate>
			<dc:creator>Ismael</dc:creator>
			<guid isPermaLink="false">109024@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi erinruff,&#60;/p&#62;
&#60;p&#62;Again, edit footer.php. Go to Appearance &#38;gt; Editor &#38;gt; click Footer (footer.php). Find this code&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;span class=&#38;#39;copyright&#38;#39;&#38;gt;&#38;amp;copy; &#38;lt;?php _e(&#38;#39;Copyright&#38;#39;,&#38;#39;avia_framework&#38;#39;); ?&#38;gt; - &#38;lt;a href=&#38;#39;&#38;lt;?php echo home_url(&#38;#39;/&#38;#39;); ?&#38;gt;&#38;#39;&#38;gt;&#38;lt;?php echo get_bloginfo(&#38;#39;name&#38;#39;);?&#38;gt;&#38;lt;/a&#38;gt; - &#38;lt;a href=&#38;#39;http://www.kriesi.at&#38;#39;&#38;gt;Wordpress Theme by Kriesi.at&#38;lt;/a&#38;gt;&#38;lt;/span&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Replace it with &#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;span class=&#38;#39;copyright&#38;#39;&#38;gt;&#38;amp;copy; &#38;lt;?php _e(&#38;#39;Copyright&#38;#39;,&#38;#39;avia_framework&#38;#39;); ?&#38;gt; - &#38;lt;a href=&#38;#39;&#38;lt;?php echo home_url(&#38;#39;/&#38;#39;); ?&#38;gt;&#38;#39;&#38;gt;&#38;lt;?php echo get_bloginfo(&#38;#39;name&#38;#39;);?&#38;gt;&#38;lt;/a&#38;gt;&#38;lt;/span&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Click &#34;Update File&#34; when you're done. Remove browser cache then reload the page.&#60;/p&#62;
&#60;p&#62;Can you give us a link to your website?&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Ismael
&#60;/p&#62;</description>
		</item>
		<item>
			<title>erinruff on "Customize Copyright in Footer"</title>
			<link>http://www.kriesi.at/support/topic/customize-copyright-in-footer#post-109017</link>
			<pubDate>Sun, 05 May 2013 12:41:55 +0000</pubDate>
			<dc:creator>erinruff</dc:creator>
			<guid isPermaLink="false">109017@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Any clues to why I cannot find any of these codes in my files? Sorry still lost on this...
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Customize Copyright in Footer"</title>
			<link>http://www.kriesi.at/support/topic/customize-copyright-in-footer#post-108952</link>
			<pubDate>Sun, 05 May 2013 05:44:41 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">108952@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;andresfelipe - I think you're using Enfold? If yes you can usethe theme option panel to change the copyright text. If you want to remove the Kriesi backlink see: &#60;a href=&#34;http://themeforest.net/item/enfold-responsive-multipurpose-theme/discussion/4519990?page=14#comment_3834747&#34; rel=&#34;nofollow&#34;&#62;http://themeforest.net/item/enfold-responsive-multipurpose-theme/discussion/4519990?page=14#comment_3834747&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>andresfelipe on "Customize Copyright in Footer"</title>
			<link>http://www.kriesi.at/support/topic/customize-copyright-in-footer#post-108933</link>
			<pubDate>Sun, 05 May 2013 00:28:04 +0000</pubDate>
			<dc:creator>andresfelipe</dc:creator>
			<guid isPermaLink="false">108933@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Any updates on this?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>andresfelipe on "Customize Copyright in Footer"</title>
			<link>http://www.kriesi.at/support/topic/customize-copyright-in-footer#post-108816</link>
			<pubDate>Sat, 04 May 2013 04:25:22 +0000</pubDate>
			<dc:creator>andresfelipe</dc:creator>
			<guid isPermaLink="false">108816@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hou would I change this  using CSS or functions.php  in my child theme. I quote from the php footer; &#60;/p&#62;
&#60;p&#62;you can filter and remove the backlink with an add_filter function&#60;br /&#62;
			// from your themes (or child themes) functions.php file if you dont want to edit this file
&#60;/p&#62;</description>
		</item>
		<item>
			<title>erinruff on "Customize Copyright in Footer"</title>
			<link>http://www.kriesi.at/support/topic/customize-copyright-in-footer#post-108800</link>
			<pubDate>Fri, 03 May 2013 22:24:57 +0000</pubDate>
			<dc:creator>erinruff</dc:creator>
			<guid isPermaLink="false">108800@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks but still no change?...
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Devin on "Customize Copyright in Footer"</title>
			<link>http://www.kriesi.at/support/topic/customize-copyright-in-footer#post-108517</link>
			<pubDate>Thu, 02 May 2013 19:57:08 +0000</pubDate>
			<dc:creator>Devin</dc:creator>
			<guid isPermaLink="false">108517@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi erinruff,&#60;/p&#62;
&#60;p&#62;In your footer.php file you should have this block of code:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;span class=&#38;#39;copyright&#38;#39;&#38;gt;&#38;amp;copy; &#38;lt;?php _e(&#38;#39;Copyright&#38;#39;,&#38;#39;avia_framework&#38;#39;); ?&#38;gt; - &#38;lt;a href=&#38;#39;&#38;lt;?php echo home_url(&#38;#39;/&#38;#39;); ?&#38;gt;&#38;#39;&#38;gt;&#38;lt;?php echo get_bloginfo(&#38;#39;name&#38;#39;);?&#38;gt;&#38;lt;/a&#38;gt; - &#38;lt;a href=&#38;#39;http://www.kriesi.at&#38;#39;&#38;gt;Wordpress Theme by Kriesi.at&#38;lt;/a&#38;gt;&#38;lt;/span&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;If all you want to do is remove the backlink, change it to exactly thi:&#60;br /&#62;
&#60;code&#62;&#38;lt;span class=&#38;#39;copyright&#38;#39;&#38;gt;&#38;amp;copy; &#38;lt;?php _e(&#38;#39;Copyright&#38;#39;,&#38;#39;avia_framework&#38;#39;); ?&#38;gt; - &#38;lt;a href=&#38;#39;&#38;lt;?php echo home_url(&#38;#39;/&#38;#39;); ?&#38;gt;&#38;#39;&#38;gt;&#38;lt;?php echo get_bloginfo(&#38;#39;name&#38;#39;);?&#38;gt;&#38;lt;/a&#38;gt;&#38;lt;/span&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Regards,&#60;/p&#62;
&#60;p&#62;Devin
&#60;/p&#62;</description>
		</item>
		<item>
			<title>erinruff on "Customize Copyright in Footer"</title>
			<link>http://www.kriesi.at/support/topic/customize-copyright-in-footer#post-108506</link>
			<pubDate>Thu, 02 May 2013 18:46:11 +0000</pubDate>
			<dc:creator>erinruff</dc:creator>
			<guid isPermaLink="false">108506@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Thanks Peter for some reason there are still no changes, no sure what I am missing here... I used fire bug on this section and when I removed Wordpress Theme by Kriesi.at it solved the problem. Issue is I cannot find this text in my coding? Sorry for being so confused, thought this would be a quick change&#60;/p&#62;
&#60;p&#62;&#38;lt;span class=&#34;copyright&#34;&#38;gt;&#60;br /&#62;
© Copyright -&#60;br /&#62;
&#60;a href=&#34;http://basketsforeducation.org/&#34;&#62;BASKETS FOR EDUCATION&#60;/a&#62;&#60;br /&#62;
-&#60;br /&#62;
&#60;a href=&#34;http://www.kriesi.at&#34;&#62;Wordpress Theme by Kriesi.at&#60;/a&#62;&#60;br /&#62;
&#38;lt;/span&#38;gt;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Customize Copyright in Footer"</title>
			<link>http://www.kriesi.at/support/topic/customize-copyright-in-footer#post-108480</link>
			<pubDate>Thu, 02 May 2013 16:49:51 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">108480@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey! &#60;/p&#62;
&#60;p&#62; I modified footer.php for you. Copy/paste the code from here: &#60;a href=&#34;https://gist.github.com/InoPlugs/b9e81a6a8f1356e5857e&#34; rel=&#34;nofollow&#34;&#62;https://gist.github.com/InoPlugs/b9e81a6a8f1356e5857e&#60;/a&#62; into your footer.php file. &#60;/p&#62;
&#60;p&#62; Regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>erinruff on "Customize Copyright in Footer"</title>
			<link>http://www.kriesi.at/support/topic/customize-copyright-in-footer#post-108391</link>
			<pubDate>Thu, 02 May 2013 13:04:32 +0000</pubDate>
			<dc:creator>erinruff</dc:creator>
			<guid isPermaLink="false">108391@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;I am sorry I am still not getting this&#60;br /&#62;
I would like it to say Copyright-Baskets For Education-&#60;/p&#62;
&#60;p&#62;I changed the coding to be as seen below?... Still getting the same text as in the demo. Thanks!&#60;br /&#62;
&#38;lt;span class='copyright'&#38;gt;&#38;copy; &#38;lt;?php _e('Copyright','basketsforeducation'); ?&#38;gt; - &#60;a&#62;'&#38;gt;&#38;lt;?php echo get_bloginfo('name');?&#38;gt;&#60;/a&#62; - &#60;a href='http://www.basketsforeducation.org'&#62;&#60;/a&#62;&#38;lt;/span&#38;gt;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dude on "Customize Copyright in Footer"</title>
			<link>http://www.kriesi.at/support/topic/customize-copyright-in-footer#post-108201</link>
			<pubDate>Wed, 01 May 2013 13:24:41 +0000</pubDate>
			<dc:creator>Dude</dc:creator>
			<guid isPermaLink="false">108201@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hey! &#60;/p&#62;
&#60;p&#62;In footer.php search for &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;a href=&#38;#39;http://www.kriesi.at&#38;#39;&#38;gt;Wordpress Theme by Kriesi.at&#38;lt;/a&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and replace it with any custom text of your choice&#60;/p&#62;
&#60;p&#62; Best regards,&#60;br /&#62;
Peter
&#60;/p&#62;</description>
		</item>
		<item>
			<title>erinruff on "Customize Copyright in Footer"</title>
			<link>http://www.kriesi.at/support/topic/customize-copyright-in-footer#post-108195</link>
			<pubDate>Wed, 01 May 2013 13:06:07 +0000</pubDate>
			<dc:creator>erinruff</dc:creator>
			<guid isPermaLink="false">108195@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi I am trying to customize the copyright in the footer so it does not say wordpress theme by kriesi at the end. I saw some other posts about making changed to this in the footer php file but I am not having any luck. Could you please explain what part of the coding needs to be changed? Thank you!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Nick on "Custom Post Excerpts To Appear on The Homepage"</title>
			<link>http://www.kriesi.at/support/topic/custom-post-excerpts-to-appear-on-the-homepage#post-105071</link>
			<pubDate>Wed, 10 Apr 2013 12:14:01 +0000</pubDate>
			<dc:creator>Nick</dc:creator>
			<guid isPermaLink="false">105071@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Not sure what that code is. Don't use it. Please install this plugin, it will create the field that you want and assign it to the page/post/cpt or all of them. The field will be created and you will see it the next time you edit or add new posts,...&#60;/p&#62;
&#60;p&#62;A simple and ultra friendly API lets you easily retrieve the content and paste it straight into wherever you want it to display. &#60;a href=&#34;http://wordpress.org/extend/plugins/advanced-custom-fields/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/advanced-custom-fields/&#60;/a&#62; 700,000 users of this free plugin can't be wrong.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Nick
&#60;/p&#62;</description>
		</item>
		<item>
			<title>spectrecom on "Custom Post Excerpts To Appear on The Homepage"</title>
			<link>http://www.kriesi.at/support/topic/custom-post-excerpts-to-appear-on-the-homepage#post-104912</link>
			<pubDate>Tue, 09 Apr 2013 11:26:52 +0000</pubDate>
			<dc:creator>spectrecom</dc:creator>
			<guid isPermaLink="false">104912@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;This is the website - &#60;a href=&#34;http://www.spectrecom.co.uk/&#34; rel=&#34;nofollow&#34;&#62;http://www.spectrecom.co.uk/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>spectrecom on "Custom Post Excerpts To Appear on The Homepage"</title>
			<link>http://www.kriesi.at/support/topic/custom-post-excerpts-to-appear-on-the-homepage#post-104899</link>
			<pubDate>Tue, 09 Apr 2013 08:38:04 +0000</pubDate>
			<dc:creator>spectrecom</dc:creator>
			<guid isPermaLink="false">104899@http://www.kriesi.at/support/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I am trying to create excerpts to appear on my homepage beneath my blog posts, which are appearing using the columns within the template builder.&#60;/p&#62;
&#60;p&#62;Having looked on the support forum I found these lines of code&#60;/p&#62;
&#60;p&#62;For the functions.php - &#60;/p&#62;
&#60;p&#62;function custom_excerpt_length( $length ) {&#60;br /&#62;
	return 50;&#60;br /&#62;
}&#60;br /&#62;
add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );&#60;/p&#62;
&#60;p&#62;function new_excerpt_more($more) {&#60;br /&#62;
return ' ...';&#60;br /&#62;
}&#60;br /&#62;
add_filter('excerpt_more', 'new_excerpt_more');&#60;/p&#62;
&#60;p&#62;and for the loop-index.php - &#60;/p&#62;
&#60;p&#62;&#38;lt;!-- if there is an individual excerpt, show it, otherwise do nothing --&#38;gt;&#60;br /&#62;
&#38;lt;?php if(!empty($post-&#38;gt;post_excerpt)) {&#60;br /&#62;
echo '&#38;lt;div id=&#34;textauszug&#34;&#38;gt;';&#60;br /&#62;
the_excerpt();&#60;br /&#62;
echo '&#38;lt;/div&#38;gt;';&#60;br /&#62;
} ?&#38;gt;&#60;/p&#62;
&#60;p&#62;&#38;lt;?php&#60;br /&#62;
if(strpos($avia_config['layout'], 'medium_image sidebar') !== false) echo $slider-&#38;gt;display_small('blog');&#60;br /&#62;
if(!is_single()){&#60;br /&#62;
				the_excerpt(__('Read more  ?','avia_framework'));&#60;br /&#62;
echo '&#60;a href=&#34;'. get_permalink().'&#34;&#62;'.__('Read more  →','avia_framework').'&#60;/a&#62;';&#60;br /&#62;
}else{&#60;br /&#62;
the_content(__('Read more  ?','avia_framework'));&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;When I placed these codes in the editor they took no, effect - only making my blog disappear. Is there a particular place within the .php files I need to put them? I just placed at the bottom.&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
