<?xml version="1.0" encoding="UTF-8"?><!-- 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>ThemeShaper Forums Tag: custom 404 page</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Fri, 24 May 2013 19:24:02 +0000</pubDate>

<item>
<title>onelittlemoose on "How do I customize 404 page"</title>
<link>http://themeshaper.com/forums/topic/how-do-i-customize-404-page#post-24670</link>
<pubDate>Thu, 05 Jan 2012 17:41:28 +0000</pubDate>
<dc:creator>onelittlemoose</dc:creator>
<guid isPermaLink="false">24670@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;If you're just looking to change the message, as I was, I've discovered a little function that allows you to do just that. &#60;/p&#62;
&#60;p&#62;In my case I wanted to remove the search box in the 404 page and just have a direct link back to the home page.&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;// to customize the message on the 404 page not found
function childtheme_override_404_content() { ?&#38;gt;
   	&#38;lt;?php thematic_postheader(); ?&#38;gt;
	&#38;lt;div class=&#38;quot;entry-content&#38;quot;&#38;gt;
	&#38;lt;p&#38;gt;&#38;lt;?php _e(&#38;#39;Apologies, but we were unable to find what you were looking for.&#38;#39;, &#38;#39;thematic&#38;#39;) ?&#38;gt;&#38;lt;/p&#38;gt;
        &#38;lt;p&#38;gt;&#38;lt;a href=&#38;quot;http://www.mywebaddress.com&#38;quot;&#38;gt;Click here to return to the home page.&#38;lt;/a&#38;gt;&#38;lt;/p&#38;gt;
	&#38;lt;/div&#38;gt;&#38;lt;!-- .entry-content --&#38;gt;
	&#38;lt;?php }
add_action(&#38;#39;thematic_404_content&#38;#39;,&#38;#39;childtheme_override_404_content&#38;#39;)&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Hope this helps.
&#60;/p&#62;</description>
</item>
<item>
<title>jjfossey on "How do I customize 404 page"</title>
<link>http://themeshaper.com/forums/topic/how-do-i-customize-404-page#post-19783</link>
<pubDate>Wed, 16 Mar 2011 21:13:02 +0000</pubDate>
<dc:creator>jjfossey</dc:creator>
<guid isPermaLink="false">19783@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I am using the latest version of Thematic and am trying to change the messaging on the 404.php page, but I am having trouble. I notice that there is a block of code that looks like this:&#60;/p&#62;
&#60;p&#62;&#38;lt;?php&#60;br /&#62;
// action hook for the 404 content&#60;br /&#62;
thematic_404()&#60;br /&#62;
?&#38;gt;&#60;/p&#62;
&#60;p&#62;Can anyone tell me what this is and if it can be edited? If I remove it, the search form disappears. Basically, I want to change the default messaging on the 404 page from &#34;Apologies, but we were unable to find what you were looking for. Perhaps searching will help.&#34; to something else.
&#60;/p&#62;</description>
</item>
<item>
<title>em hr on "How do I customize 404 page"</title>
<link>http://themeshaper.com/forums/topic/how-do-i-customize-404-page#post-8868</link>
<pubDate>Thu, 07 Jan 2010 18:15:49 +0000</pubDate>
<dc:creator>em hr</dc:creator>
<guid isPermaLink="false">8868@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;If you want to see where all the magic happens take a look at this file:  thematic/library/extensions/dynamic-classes.php&#60;/p&#62;
&#60;p&#62;To see how this manifests itself on your site go to any page even a 404 and look at the source code for the &#60;code&#62;&#38;lt;body class=&#38;quot;&#38;quot;&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Glad to help,&#60;br /&#62;
Gene
&#60;/p&#62;</description>
</item>
<item>
<title>tommo77funk on "How do I customize 404 page"</title>
<link>http://themeshaper.com/forums/topic/how-do-i-customize-404-page#post-8866</link>
<pubDate>Thu, 07 Jan 2010 17:19:47 +0000</pubDate>
<dc:creator>tommo77funk</dc:creator>
<guid isPermaLink="false">8866@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;PERFECT, thanks em hr ! Not sure where you got that from but it works. Thanks so much f your help and reply.&#60;/p&#62;
&#60;p&#62;best wishes,&#60;/p&#62;
&#60;p&#62;tom
&#60;/p&#62;</description>
</item>
<item>
<title>em hr on "How do I customize 404 page"</title>
<link>http://themeshaper.com/forums/topic/how-do-i-customize-404-page#post-8859</link>
<pubDate>Thu, 07 Jan 2010 15:04:56 +0000</pubDate>
<dc:creator>em hr</dc:creator>
<guid isPermaLink="false">8859@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi-&#60;/p&#62;
&#60;p&#62;Try:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;.four04 #above-leaderaside {
display: none;
}&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>tommo77funk on "How do I customize 404 page"</title>
<link>http://themeshaper.com/forums/topic/how-do-i-customize-404-page#post-8858</link>
<pubDate>Thu, 07 Jan 2010 14:39:39 +0000</pubDate>
<dc:creator>tommo77funk</dc:creator>
<guid isPermaLink="false">8858@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;   Thanks for the info on this post, I would like to edit 404 page via CSS , so I was looking for the page slug name. I have found info for styling here &#60;a href=&#34;http://themeshaper.com/thematic/guide/?page_id=64&#34; rel=&#34;nofollow&#34;&#62;http://themeshaper.com/thematic/guide/?page_id=64&#60;/a&#62; and this seems to be the ref name, error404.&#60;/p&#62;
&#60;p&#62;When i try &#60;/p&#62;
&#60;p&#62;body.slug-error404 #above-leaderaside {&#60;br /&#62;
display: none;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;it does not work, I have tried numerous other combinations. Is it possible to style this page in this way ?&#60;/p&#62;
&#60;p&#62;Many thanks, best wishes, and happy new year !&#60;/p&#62;
&#60;p&#62;tom
&#60;/p&#62;</description>
</item>
<item>
<title>curobs on "How do I customize 404 page"</title>
<link>http://themeshaper.com/forums/topic/how-do-i-customize-404-page#post-8789</link>
<pubDate>Mon, 04 Jan 2010 22:57:04 +0000</pubDate>
<dc:creator>curobs</dc:creator>
<guid isPermaLink="false">8789@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi Gene, thanks so much, and also for sharing the code! It works fine now.
&#60;/p&#62;</description>
</item>
<item>
<title>em hr on "How do I customize 404 page"</title>
<link>http://themeshaper.com/forums/topic/how-do-i-customize-404-page#post-8785</link>
<pubDate>Mon, 04 Jan 2010 22:32:14 +0000</pubDate>
<dc:creator>em hr</dc:creator>
<guid isPermaLink="false">8785@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi curobs,&#60;/p&#62;
&#60;p&#62;ACk! I included a function from the svn &#60;code&#62;thm_bloginfo()&#60;/code&#62; causing a fatal error when used with the .9.5.1 version. Sorry for the inconvenience.&#60;/p&#62;
&#60;p&#62;Try this code:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;function my_404_content() { ?&#38;gt;
&#38;lt;?php thematic_postheader(); ?&#38;gt;
&#38;lt;div class=&#38;quot;entry-content&#38;quot;&#38;gt;
&#38;lt;?php _e(&#38;#39;Apologies, but we were unable to find what you were looking for. Perhaps searching will help.&#38;#39;, &#38;#39;thematic&#38;#39;) ?&#38;gt;

&#38;lt;/div&#38;gt;
&#38;lt;form id=&#38;quot;error404-searchform&#38;quot; method=&#38;quot;get&#38;quot; action=&#38;quot;&#38;lt;?php bloginfo(&#38;#39;home&#38;#39;) ?&#38;gt;&#38;quot;&#38;gt;
&#38;lt;div&#38;gt;
&#38;lt;input id=&#38;quot;error404-s&#38;quot; name=&#38;quot;s&#38;quot; type=&#38;quot;text&#38;quot; value=&#38;quot;&#38;lt;?php echo wp_specialchars(stripslashes($_GET[&#38;#39;s&#38;#39;]), true) ?&#38;gt;&#38;quot; size=&#38;quot;40&#38;quot; /&#38;gt;
&#38;lt;input id=&#38;quot;error404-searchsubmit&#38;quot; name=&#38;quot;searchsubmit&#38;quot; type=&#38;quot;submit&#38;quot; value=&#38;quot;&#38;lt;?php _e(&#38;#39;Find&#38;#39;, &#38;#39;thematic&#38;#39;) ?&#38;gt;&#38;quot; /&#38;gt;
&#38;lt;/div&#38;gt;
&#38;lt;/form&#38;gt;
&#38;lt;?php }
// end thematic_404_content
add_action(&#38;#39;thematic_404&#38;#39;,&#38;#39;my_404_content&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;-Gene
&#60;/p&#62;</description>
</item>
<item>
<title>curobs on "How do I customize 404 page"</title>
<link>http://themeshaper.com/forums/topic/how-do-i-customize-404-page#post-8777</link>
<pubDate>Mon, 04 Jan 2010 21:01:30 +0000</pubDate>
<dc:creator>curobs</dc:creator>
<guid isPermaLink="false">8777@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi-I applied em hr's function for the custom my_404_content provided above, but am also getting the same syntax error that LQunta reported. Here's the function as it appears in my child function.php file. (if I take these two functions out, the default 404 page appears fine.) Can anyone suggest how to address the &#34;unexpected '}'&#34; error referring to line containing the last &#34;&#38;lt;?php }&#34;? Thanks!&#60;/p&#62;
&#60;p&#62;// Get rid of Default 404 page&#60;br /&#62;
function remove_thematic_404_content() {&#60;br /&#62;
	remove_action('thematic_404','thematic_404_content');&#60;br /&#62;
}&#60;br /&#62;
add_action('init','remove_thematic_404_content');&#60;/p&#62;
&#60;p&#62;// New 404 page content&#60;br /&#62;
function my_404_content() { ?&#38;gt;&#60;br /&#62;
	&#38;lt;?php thematic_postheader(); ?&#38;gt;&#60;br /&#62;
	&#38;lt;div class=&#34;entry-content&#34;&#38;gt;&#60;br /&#62;
	&#38;lt;?php _e('Apologies, but we were unable to find what you were looking for. Perhaps  searching will help.', 'thematic') ?&#38;gt;&#60;/p&#62;
&#60;p&#62;	&#38;lt;/div&#38;gt;&#60;br /&#62;
	&#38;lt;form id=&#34;error404-searchform&#34; method=&#34;get&#34; action=&#34;&#38;lt;?php thm_bloginfo('home', TRUE) ?&#38;gt;&#34;&#38;gt;&#60;br /&#62;
	&#38;lt;div&#38;gt;&#60;br /&#62;
	&#38;lt;input id=&#34;error404-s&#34; name=&#34;s&#34; type=&#34;text&#34; value=&#34;&#38;lt;?php echo wp_specialchars(stripslashes($_GET['s']), true) ?&#38;gt;&#34; size=&#34;40&#34; /&#38;gt;&#60;br /&#62;
	&#38;lt;input id=&#34;error404-searchsubmit&#34; name=&#34;searchsubmit&#34; type=&#34;submit&#34; value=&#34;&#38;lt;?php _e('Find', 'thematic') ?&#38;gt;&#34; /&#38;gt;&#60;br /&#62;
	&#38;lt;/div&#38;gt;&#60;br /&#62;
	&#38;lt;/form&#38;gt;&#60;br /&#62;
	&#38;lt;?php }&#60;br /&#62;
	// end thematic_404_content&#60;br /&#62;
add_action('thematic_404','my_404_content');&#60;br /&#62;
?&#38;gt;
&#60;/p&#62;</description>
</item>
<item>
<title>em hr on "How do I customize 404 page"</title>
<link>http://themeshaper.com/forums/topic/how-do-i-customize-404-page#post-7544</link>
<pubDate>Fri, 30 Oct 2009 11:49:25 +0000</pubDate>
<dc:creator>em hr</dc:creator>
<guid isPermaLink="false">7544@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;lqunta-&#60;/p&#62;
&#60;p&#62;Complexities abound yes you could do all the above:&#60;/p&#62;
&#60;p&#62;-If you're new to thematic you may find using a 404 template that adding 404.php in your child theme is a more straight forward approach.&#60;/p&#62;
&#60;p&#62;-You could have a custom 404.php that uses functions from your functions.php.&#60;/p&#62;
&#60;p&#62;-Or my preferred approach would be could use your child theme's functions.php to remove and rebuild the 404 page content like I demonstrated above.&#60;/p&#62;
&#60;p&#62;-Gene
&#60;/p&#62;</description>
</item>
<item>
<title>lqunta on "How do I customize 404 page"</title>
<link>http://themeshaper.com/forums/topic/how-do-i-customize-404-page#post-7525</link>
<pubDate>Thu, 29 Oct 2009 11:16:25 +0000</pubDate>
<dc:creator>lqunta</dc:creator>
<guid isPermaLink="false">7525@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Greetings All,&#60;/p&#62;
&#60;p&#62;Pardon me if I may be asking a rather simplistic question. Probably, I may not be thinking right today [hello....where did I leave my brains today]!&#60;/p&#62;
&#60;p&#62;If one want's to customize the 404 page, probably as above, should they:&#60;/p&#62;
&#60;p&#62;- have an actual 404.php in the child theme directory?&#60;br /&#62;
- have an actual 404.php in the child theme directory, and, the code in the functions.php page?&#60;br /&#62;
- just have the code in the functions.php page?&#60;/p&#62;
&#60;p&#62;have tried with just the code in the functions.php page, and......no joy!&#60;/p&#62;
&#60;p&#62;Cheers,&#60;br /&#62;
LQunta
&#60;/p&#62;</description>
</item>
<item>
<title>jrobben on "How do I customize 404 page"</title>
<link>http://themeshaper.com/forums/topic/how-do-i-customize-404-page#post-7452</link>
<pubDate>Mon, 26 Oct 2009 06:26:56 +0000</pubDate>
<dc:creator>jrobben</dc:creator>
<guid isPermaLink="false">7452@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Thank you for your effort. I had already took the easy way out and added the 404.php page to my child directory and edited it directly. But I will be implementing your improvements before long.
&#60;/p&#62;</description>
</item>
<item>
<title>em hr on "How do I customize 404 page"</title>
<link>http://themeshaper.com/forums/topic/how-do-i-customize-404-page#post-7426</link>
<pubDate>Sat, 24 Oct 2009 20:32:16 +0000</pubDate>
<dc:creator>em hr</dc:creator>
<guid isPermaLink="false">7426@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I didn't check it for functionality but I cleaned it up a bit so it will parse.&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
/* Add a home link to top memu */
 function childtheme_menu_args($args) {
    $args = array(
	&#38;#39;show_home&#38;#39;=&#38;gt;&#38;#39;Home&#38;#39;,
        &#38;#39;sort_column&#38;#39; =&#38;gt; &#38;#39;menu_order&#38;#39;,
        &#38;#39;menu_class&#38;#39; =&#38;gt; &#38;#39;menu&#38;#39;,
        &#38;#39;echo&#38;#39; =&#38;gt; true
    );
	return $args;
}
add_filter(&#38;#39;wp_page_menu_args&#38;#39;,&#38;#39;childtheme_menu_args&#38;#39;);

/* adds firs 55 words from post to meta description */
function wanna_use_autoexcerpt() {
 	return TRUE;
}
add_filter(&#38;#39;thematic_use_autoexcerpt&#38;#39;, &#38;#39;wanna_use_autoexcerpt&#38;#39;);

/* Register Top Add Wiget */
function add_top_ad() {?&#38;gt;
	&#38;lt;div id=&#38;quot;top_ad&#38;quot;&#38;gt;
	&#38;lt;/div&#38;gt;
&#38;lt;?php }
add_action(&#38;#39;thematic_belowheader&#38;#39;, &#38;#39;add_top_ad&#38;#39;);

/* Get Rid of Default 404 page */
function remove_thematic_404_content() {
	remove_action(&#38;#39;thematic_404&#38;#39;,&#38;#39;thematic_404_content&#38;#39;);
}
add_action(&#38;#39;init&#38;#39;,&#38;#39;remove_thematic_404_content&#38;#39;);

/* New 404 page content */
function my_404_content() { ?&#38;gt;
	&#38;lt;?php thematic_postheader(); ?&#38;gt;
	&#38;lt;div class=&#38;quot;entry-content&#38;quot;&#38;gt;
	&#38;lt;?php _e(&#38;#39;Apologies, but we were unable to find what you were looking for. Perhaps  searching will help.&#38;#39;, &#38;#39;thematic&#38;#39;) ?&#38;gt;

	&#38;lt;/div&#38;gt;
	&#38;lt;form id=&#38;quot;error404-searchform&#38;quot; method=&#38;quot;get&#38;quot; action=&#38;quot;&#38;lt;?php thm_bloginfo(&#38;#39;home&#38;#39;, TRUE) ?&#38;gt;&#38;quot;&#38;gt;
	&#38;lt;div&#38;gt;
	&#38;lt;input id=&#38;quot;error404-s&#38;quot; name=&#38;quot;s&#38;quot; type=&#38;quot;text&#38;quot; value=&#38;quot;&#38;lt;?php echo wp_specialchars(stripslashes($_GET[&#38;#39;s&#38;#39;]), true) ?&#38;gt;&#38;quot; size=&#38;quot;40&#38;quot; /&#38;gt;
	&#38;lt;input id=&#38;quot;error404-searchsubmit&#38;quot; name=&#38;quot;searchsubmit&#38;quot; type=&#38;quot;submit&#38;quot; value=&#38;quot;&#38;lt;?php _e(&#38;#39;Find&#38;#39;, &#38;#39;thematic&#38;#39;) ?&#38;gt;&#38;quot; /&#38;gt;
	&#38;lt;/div&#38;gt;
	&#38;lt;/form&#38;gt;
	&#38;lt;?php }
	/* end thematic_404_content */
add_action(&#38;#39;thematic_404&#38;#39;,&#38;#39;my_404_content&#38;#39;);
?&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>jrobben on "How do I customize 404 page"</title>
<link>http://themeshaper.com/forums/topic/how-do-i-customize-404-page#post-7425</link>
<pubDate>Sat, 24 Oct 2009 20:19:41 +0000</pubDate>
<dc:creator>jrobben</dc:creator>
<guid isPermaLink="false">7425@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi Gene and thanks for the suggestion,&#60;/p&#62;
&#60;p&#62;Just trying to get your version to work then I can modify to call my text and custom page.&#60;/p&#62;
&#60;p&#62;I am having a bit of a problem with the syntax.&#60;/p&#62;
&#60;p&#62;Parse error: syntax error, unexpected '}' in /home/relax/public_html/cookingsalmon/wp-content/themes/byty-cooksalmon/functions.php on line 55&#60;/p&#62;
&#60;p&#62;here is my functions code&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
/* Add a home link to top memu */
 function childtheme_menu_args($args) {
    $args = array(
&#38;#39;show_home&#38;#39;=&#38;gt;&#38;#39;Home&#38;#39;,
        &#38;#39;sort_column&#38;#39; =&#38;gt; &#38;#39;menu_order&#38;#39;,
        &#38;#39;menu_class&#38;#39; =&#38;gt; &#38;#39;menu&#38;#39;,
        &#38;#39;echo&#38;#39; =&#38;gt; true
    );
	return $args;
}
add_filter(&#38;#39;wp_page_menu_args&#38;#39;,&#38;#39;childtheme_menu_args&#38;#39;);
?&#38;gt;
&#38;lt;?php
/* adds firs 55 words from post to meta description */
function wanna_use_autoexcerpt() {
 return TRUE;
}
add_filter(&#38;#39;thematic_use_autoexcerpt&#38;#39;, &#38;#39;wanna_use_autoexcerpt&#38;#39;);
?&#38;gt;
&#38;lt;?php
/* Register Top Add Wiget */
function add_top_ad() {
?&#38;gt;

&#38;lt;div id=&#38;quot;top_ad&#38;quot;&#38;gt;

&#38;lt;/div&#38;gt;

&#38;lt;?php
}

add_action(&#38;#39;thematic_belowheader&#38;#39;, &#38;#39;add_top_ad&#38;#39;);
?&#38;gt;

/* Get Rid of Default 404 page */
function remove_thematic_404_content() {
          remove_action(&#38;#39;thematic_404&#38;#39;,&#38;#39;thematic_404_content&#38;#39;);
{
add_action(&#38;#39;init&#38;#39;,&#38;#39;remove_thematic_404_content&#38;#39;);

/* New 404 page content */
function my_404_content() { ?&#38;gt;
&#38;lt;?php thematic_postheader(); ?&#38;gt;

&#38;lt;div class=&#38;quot;entry-content&#38;quot;&#38;gt;
&#38;lt;p&#38;gt;&#38;lt;?php _e(&#38;#39;Apologies, but we were unable to find what you were looking for. Perhaps  searching will help.&#38;#39;, &#38;#39;thematic&#38;#39;) ?&#38;gt;&#38;lt;/p&#38;gt;
&#38;lt;/div&#38;gt;
&#38;lt;form id=&#38;quot;error404-searchform&#38;quot; method=&#38;quot;get&#38;quot; action=&#38;quot;&#38;lt;?php thm_bloginfo(&#38;#39;home&#38;#39;, TRUE) ?&#38;gt;&#38;quot;&#38;gt;
&#38;lt;div&#38;gt;
&#38;lt;input id=&#38;quot;error404-s&#38;quot; name=&#38;quot;s&#38;quot; type=&#38;quot;text&#38;quot; value=&#38;quot;&#38;lt;?php echo wp_specialchars(stripslashes($_GET[&#38;#39;s&#38;#39;]), true) ?&#38;gt;&#38;quot; size=&#38;quot;40&#38;quot; /&#38;gt;
&#38;lt;input id=&#38;quot;error404-searchsubmit&#38;quot; name=&#38;quot;searchsubmit&#38;quot; type=&#38;quot;submit&#38;quot; value=&#38;quot;&#38;lt;?php _e(&#38;#39;Find&#38;#39;, &#38;#39;thematic&#38;#39;) ?&#38;gt;&#38;quot; /&#38;gt;
&#38;lt;/div&#38;gt;
&#38;lt;/form&#38;gt;
&#38;lt;?php }
/* end thematic_404_content */
add_action(&#38;#39;thematic_404&#38;#39;,&#38;#39;my_404_content&#38;#39;);
?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;line 55 is the &#38;lt;?php }
&#60;/p&#62;</description>
</item>
<item>
<title>em hr on "How do I customize 404 page"</title>
<link>http://themeshaper.com/forums/topic/how-do-i-customize-404-page#post-7390</link>
<pubDate>Sat, 24 Oct 2009 01:53:45 +0000</pubDate>
<dc:creator>em hr</dc:creator>
<guid isPermaLink="false">7390@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi-&#60;/p&#62;
&#60;p&#62;You could:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function remove_thematic_404_content() {
          remove_action(&#38;#39;thematic_404&#38;#39;,&#38;#39;thematic_404_content&#38;#39;);
{
add_action(&#38;#39;init&#38;#39;,&#38;#39;remove_thematic_404_content&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and then add this changing it to suit your needs...&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function my_404_content() { ?&#38;gt;
&#38;lt;?php thematic_postheader(); ?&#38;gt;

&#38;lt;div class=&#38;quot;entry-content&#38;quot;&#38;gt;
&#38;lt;p&#38;gt;&#38;lt;?php _e(&#38;#39;Apologies, but we were unable to find what you were looking for. Perhaps  searching will help.&#38;#39;, &#38;#39;thematic&#38;#39;) ?&#38;gt;&#38;lt;/p&#38;gt;
&#38;lt;/div&#38;gt;

&#38;lt;form id=&#38;quot;error404-searchform&#38;quot; method=&#38;quot;get&#38;quot; action=&#38;quot;&#38;lt;?php thm_bloginfo(&#38;#39;home&#38;#39;, TRUE) ?&#38;gt;&#38;quot;&#38;gt;
&#38;lt;div&#38;gt;
&#38;lt;input id=&#38;quot;error404-s&#38;quot; name=&#38;quot;s&#38;quot; type=&#38;quot;text&#38;quot; value=&#38;quot;&#38;lt;?php echo wp_specialchars(stripslashes($_GET[&#38;#39;s&#38;#39;]), true) ?&#38;gt;&#38;quot; size=&#38;quot;40&#38;quot; /&#38;gt;
&#38;lt;input id=&#38;quot;error404-searchsubmit&#38;quot; name=&#38;quot;searchsubmit&#38;quot; type=&#38;quot;submit&#38;quot; value=&#38;quot;&#38;lt;?php _e(&#38;#39;Find&#38;#39;, &#38;#39;thematic&#38;#39;) ?&#38;gt;&#38;quot; /&#38;gt;
&#38;lt;/div&#38;gt;
&#38;lt;/form&#38;gt;
&#38;lt;?php } // end thematic_404_content

add_action(&#38;#39;thematic_404&#38;#39;,&#38;#39;my_404_content&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;-Gene
&#60;/p&#62;</description>
</item>
<item>
<title>jrobben on "How do I customize 404 page"</title>
<link>http://themeshaper.com/forums/topic/how-do-i-customize-404-page#post-7388</link>
<pubDate>Fri, 23 Oct 2009 21:10:28 +0000</pubDate>
<dc:creator>jrobben</dc:creator>
<guid isPermaLink="false">7388@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Me too,&#60;/p&#62;
&#60;blockquote&#62;&#60;p&#62;
How do I customize the 404 page in Thematic so I can show an image, a site map, or an internal search box? Thanks in advance for any advice you can give me. &#60;/p&#62;&#60;/blockquote&#62;
&#60;p&#62;Using a customized child theme based on the bybt theme.
&#60;/p&#62;</description>
</item>
<item>
<title>iHusband on "How do I customize 404 page"</title>
<link>http://themeshaper.com/forums/topic/how-do-i-customize-404-page#post-5341</link>
<pubDate>Fri, 24 Jul 2009 15:52:03 +0000</pubDate>
<dc:creator>iHusband</dc:creator>
<guid isPermaLink="false">5341@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;It seems I will need more than that WordPress tutorial to customize the Thematic 404 page. So any instruction will be greatly appreciated.
&#60;/p&#62;</description>
</item>
<item>
<title>iHusband on "How do I customize 404 page"</title>
<link>http://themeshaper.com/forums/topic/how-do-i-customize-404-page#post-5340</link>
<pubDate>Fri, 24 Jul 2009 15:46:21 +0000</pubDate>
<dc:creator>iHusband</dc:creator>
<guid isPermaLink="false">5340@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;The WordPress website provides a tutorial for this:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://codex.wordpress.org/Creating_an_Error_404_Page&#34; rel=&#34;nofollow&#34;&#62;http://codex.wordpress.org/Creating_an_Error_404_Page&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>iHusband on "How do I customize 404 page"</title>
<link>http://themeshaper.com/forums/topic/how-do-i-customize-404-page#post-5331</link>
<pubDate>Fri, 24 Jul 2009 03:16:04 +0000</pubDate>
<dc:creator>iHusband</dc:creator>
<guid isPermaLink="false">5331@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;How do I customize the 404 page in Thematic so I can show an image, a site map, or an internal search box? Thanks in advance for any advice you can give me.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
