<?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: form</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Fri, 24 May 2013 01:50:44 +0000</pubDate>

<item>
<title>iCristiano on "submit form action"</title>
<link>http://themeshaper.com/forums/topic/submit-form-action#post-23370</link>
<pubDate>Fri, 07 Oct 2011 08:33:51 +0000</pubDate>
<dc:creator>iCristiano</dc:creator>
<guid isPermaLink="false">23370@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi friends,&#60;/p&#62;
&#60;p&#62;I have a blog page in my site, but don´t want to show the single page for each post, just the main blog page. I have comments for each post at this main page. The problem is that, when somebody comments something, the submit button send the user to the single page of that post!&#60;/p&#62;
&#60;p&#62;Is that a way to change it? To keep him on the same page, just actualizing the comments...&#60;/p&#62;
&#60;p&#62;Thanks for your help!&#60;br /&#62;
iCristiano
&#60;/p&#62;</description>
</item>
<item>
<title>Jonny Janiero on "Default text input value"</title>
<link>http://themeshaper.com/forums/topic/default-text-input-value#post-18783</link>
<pubDate>Fri, 28 Jan 2011 19:44:21 +0000</pubDate>
<dc:creator>Jonny Janiero</dc:creator>
<guid isPermaLink="false">18783@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;hmmm try&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;div class=&#38;quot;username&#38;quot;&#38;gt;
&#38;lt;?php $username = esc_attr(stripslashes($user_login)); ?&#38;gt;
&#38;lt;label for=&#38;quot;user_login&#38;quot;&#38;gt;&#38;lt;?php _e(&#38;#39;Username&#38;#39;); ?&#38;gt;: &#38;lt;/label&#38;gt;
&#38;lt;input type=&#38;quot;text&#38;quot; name=&#38;quot;log&#38;quot; value=&#38;quot;&#38;lt;?php echo $username; ?&#38;gt;&#38;quot; onfocus=&#38;quot;if (this.value == &#38;#39;&#38;lt;?php echo $username; ?&#38;gt;&#38;#39;) {this.value = &#38;#39;&#38;#39;;}&#38;quot; onblur=&#38;quot;if (this.value == &#38;#39;&#38;#39;) {this.value = &#38;#39;&#38;lt;?php echo $username; ?&#38;gt;&#38;#39;;}&#38;quot; size=&#38;quot;20&#38;quot; id=&#38;quot;user_login&#38;quot; tabindex=&#38;quot;11&#38;quot; /&#38;gt;
&#38;lt;/div&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;just so you know, i haven't tested this (thinking out loud)&#60;/p&#62;
&#60;p&#62;hope this helps
&#60;/p&#62;</description>
</item>
<item>
<title>joshuaiz on "Default text input value"</title>
<link>http://themeshaper.com/forums/topic/default-text-input-value#post-18749</link>
<pubDate>Thu, 27 Jan 2011 16:14:01 +0000</pubDate>
<dc:creator>joshuaiz</dc:creator>
<guid isPermaLink="false">18749@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I want to add default text to the input box for a login form but I don't know where to put it. In the code below, there is already something in the value field so I guess I just need to know how to add the default text of 'Username' to show up in the input box along with the &#38;lt;?php echo esc_attr(stripslashes($user_login)); ?&#38;gt; function.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;div class=&#38;quot;username&#38;quot;&#38;gt;
					&#38;lt;label for=&#38;quot;user_login&#38;quot;&#38;gt;&#38;lt;?php _e(&#38;#39;Username&#38;#39;); ?&#38;gt;: &#38;lt;/label&#38;gt;
					&#38;lt;input type=&#38;quot;text&#38;quot; name=&#38;quot;log&#38;quot; value=&#38;quot;&#38;lt;?php echo esc_attr(stripslashes($user_login)); ?&#38;gt;&#38;quot; size=&#38;quot;20&#38;quot; id=&#38;quot;user_login&#38;quot; tabindex=&#38;quot;11&#38;quot; /&#38;gt;
				&#38;lt;/div&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I'm sure this is pretty straightforward but any help would be appreciated.
&#60;/p&#62;</description>
</item>
<item>
<title>Jonny Janiero on "Form Backgrounds"</title>
<link>http://themeshaper.com/forums/topic/form-backgrounds#post-18173</link>
<pubDate>Fri, 07 Jan 2011 22:07:26 +0000</pubDate>
<dc:creator>Jonny Janiero</dc:creator>
<guid isPermaLink="false">18173@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;did you add the background to the following body tag from default.css?&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;body, input, textarea {
    font:15px Georgia,serif;
    line-height:22px;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;if so, you need keep 'input' and 'textarea' seperate. &#60;/p&#62;
&#60;p&#62;e.g&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;body {
    background-image:blah;
}

input, textarea {
    background:#fff;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;hope this helps
&#60;/p&#62;</description>
</item>
<item>
<title>violetabella on "Form Backgrounds"</title>
<link>http://themeshaper.com/forums/topic/form-backgrounds#post-18170</link>
<pubDate>Fri, 07 Jan 2011 18:33:57 +0000</pubDate>
<dc:creator>violetabella</dc:creator>
<guid isPermaLink="false">18170@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi! I was wondering if there is a simple way to default all forms and buttons (like comment forms, etc) to have a white background? right now they are using my page background which has a pattern. Thanks!
&#60;/p&#62;</description>
</item>
<item>
<title>darkbrew on "Form customization problem"</title>
<link>http://themeshaper.com/forums/topic/form-customization-problem#post-12806</link>
<pubDate>Fri, 04 Jun 2010 09:35:39 +0000</pubDate>
<dc:creator>darkbrew</dc:creator>
<guid isPermaLink="false">12806@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Thanks for the response Devin. Actually Wordpress support is the 1st place I posted it but still don't have a response. &#60;/p&#62;
&#60;p&#62;The only plugin currently active is the FCKEditor, everything else is inactive. Anyway thanks for the link as well, I will go check it out now.
&#60;/p&#62;</description>
</item>
<item>
<title>Devin on "Form customization problem"</title>
<link>http://themeshaper.com/forums/topic/form-customization-problem#post-12794</link>
<pubDate>Thu, 03 Jun 2010 23:03:11 +0000</pubDate>
<dc:creator>Devin</dc:creator>
<guid isPermaLink="false">12794@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;It's not really a thematic question.  I'd ask in the WordPress forums: &#60;a href=&#34;http://wordpress.org/support/&#34;&#62;http://wordpress.org/support/&#60;/a&#62; or see if the plug-in has a forum. If you need immediate help you could also try &#60;a href=&#34;http://wpquestions.com&#34;&#62;http://wpquestions.com&#60;/a&#62;.&#60;/p&#62;
&#60;p&#62;My guess is that there is an options page you could edit, or that you can look in the plug-in code and change it.
&#60;/p&#62;</description>
</item>
<item>
<title>darkbrew on "Form customization problem"</title>
<link>http://themeshaper.com/forums/topic/form-customization-problem#post-12763</link>
<pubDate>Thu, 03 Jun 2010 05:05:39 +0000</pubDate>
<dc:creator>darkbrew</dc:creator>
<guid isPermaLink="false">12763@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;This issue is quite pressing as well...without solving this I can't publish the site...please let me know if you need more info or is there another site where I can get help...
&#60;/p&#62;</description>
</item>
<item>
<title>darkbrew on "Form customization problem"</title>
<link>http://themeshaper.com/forums/topic/form-customization-problem#post-12720</link>
<pubDate>Tue, 01 Jun 2010 02:41:05 +0000</pubDate>
<dc:creator>darkbrew</dc:creator>
<guid isPermaLink="false">12720@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi all,&#60;/p&#62;
&#60;p&#62;Second Noob post here. I need to edit the fields in a form located on the website. I'm using Wordpress+Theme+Ckeditor plugin. I have looked and looked and I can't find which php file I need to make changes to. Unfortunately this is not something I can find doing a google search so please help!&#60;/p&#62;
&#60;p&#62;Form is here &#60;a href=&#34;http://www.condobangkok.org/wordpress/?page=property_submit&#34; rel=&#34;nofollow&#34;&#62;http://www.condobangkok.org/wordpress/?page=property_submit&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Another issue here is that I need to change what the Publish button says. Meaning if you fill out the property submit form (you can use any data) and then click on Review your Listing, the next page has the option to Edit, Cancel or Pay and Publish. I would like to change the text 'Pay and Publish' to just 'Publish'. I have used the firebug inspector to try and find where I could change this and I just can't find what I need to edit.&#60;/p&#62;
&#60;p&#62;Thanks in advance,&#60;/p&#62;
&#60;p&#62;DB
&#60;/p&#62;</description>
</item>
<item>
<title>elshaddai on "Hooks for comment form/list?"</title>
<link>http://themeshaper.com/forums/topic/hooks-for-comment-formlist#post-10348</link>
<pubDate>Mon, 01 Mar 2010 17:22:07 +0000</pubDate>
<dc:creator>elshaddai</dc:creator>
<guid isPermaLink="false">10348@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I had to rearrange the comments template for a current project, essentially flipping the comments form so that it was above the comments list. The only solution that I could figure out was to copy the comments.php file to my child theme folder and edit it such that the form code was pasted above the list code. &#60;/p&#62;
&#60;p&#62;Is this the correct approach for now? Or are there hooks for these two components that could be reshuffled in a child functions file rather than directly editing the core file?
&#60;/p&#62;</description>
</item>
<item>
<title>kidslovemusic on "i'm looking for the plugin"</title>
<link>http://themeshaper.com/forums/topic/im-looking-for-the-plugin#post-8697</link>
<pubDate>Wed, 30 Dec 2009 20:31:07 +0000</pubDate>
<dc:creator>kidslovemusic</dc:creator>
<guid isPermaLink="false">8697@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;thank you for your response :)
&#60;/p&#62;</description>
</item>
<item>
<title>jrobben on "i'm looking for the plugin"</title>
<link>http://themeshaper.com/forums/topic/im-looking-for-the-plugin#post-8507</link>
<pubDate>Wed, 16 Dec 2009 20:15:43 +0000</pubDate>
<dc:creator>jrobben</dc:creator>
<guid isPermaLink="false">8507@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;A while ago I looked for a similar tool and could not find one ready out of the box. but you can take a script and drop it in a php ready widget. but without a feed from a provider you would just enter the text and the rates manually, I think that is what they did in your example.
&#60;/p&#62;</description>
</item>
<item>
<title>susan on "form.css file"</title>
<link>http://themeshaper.com/forums/topic/formcss-file#post-8474</link>
<pubDate>Mon, 14 Dec 2009 19:55:03 +0000</pubDate>
<dc:creator>susan</dc:creator>
<guid isPermaLink="false">8474@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I want to change the look of the submit button for a child theme I'm working on. When I use firebug to look at the submit button it refers to a form.css file -- but I can not find that file anywhere. I know how to change the look of the button I just can't find the css to change...
&#60;/p&#62;</description>
</item>
<item>
<title>kidslovemusic on "i'm looking for the plugin"</title>
<link>http://themeshaper.com/forums/topic/im-looking-for-the-plugin#post-8471</link>
<pubDate>Mon, 14 Dec 2009 14:08:31 +0000</pubDate>
<dc:creator>kidslovemusic</dc:creator>
<guid isPermaLink="false">8471@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi! I'm looking for some kind of form plugin. It has to display call rates when you choose desired destination. I have to do something like you can see on this page: &#60;a href=&#34;http://www.topupdial.co.uk/&#34; rel=&#34;nofollow&#34;&#62;http://www.topupdial.co.uk/&#60;/a&#62;  - a rates finder.. and i wonder if any of you know WP plugin which will do the same. I was looking for this,, but no luck as far :/ Or maybe you know any other way to achieve it? (I'm using Thematic with Thematic Feature Site). &#60;/p&#62;
&#60;p&#62;thank you!
&#60;/p&#62;</description>
</item>
<item>
<title>Belz314 on "Gallery Theme Help"</title>
<link>http://themeshaper.com/forums/topic/gallery-theme-help#post-6378</link>
<pubDate>Mon, 07 Sep 2009 22:56:52 +0000</pubDate>
<dc:creator>Belz314</dc:creator>
<guid isPermaLink="false">6378@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi everyone,&#60;/p&#62;
&#60;p&#62;Basically on the Gallery theme on the pages the search form is too big how do I reduce the size? Also I want to put a search form at the end of the navigation bar replacing the tagline.
&#60;/p&#62;</description>
</item>
<item>
<title>Manuel on "Searchform FF/Safari: vertical text alignment"</title>
<link>http://themeshaper.com/forums/topic/searchform-ffsafari-vertical-text-alignment#post-4225</link>
<pubDate>Tue, 02 Jun 2009 08:19:34 +0000</pubDate>
<dc:creator>Manuel</dc:creator>
<guid isPermaLink="false">4225@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Mixed up the selectors. All good now.
&#60;/p&#62;</description>
</item>
<item>
<title>Manuel on "Searchform FF/Safari: vertical text alignment"</title>
<link>http://themeshaper.com/forums/topic/searchform-ffsafari-vertical-text-alignment#post-4214</link>
<pubDate>Mon, 01 Jun 2009 20:07:43 +0000</pubDate>
<dc:creator>Manuel</dc:creator>
<guid isPermaLink="false">4214@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Can someone give me a pointer why the text in my searchbox is vertically centered in Safari but not in Firefox? I am out of clues and my CSS is getting weirder by the minute. ;)&#60;/p&#62;
&#60;p&#62;My site: &#60;a href=&#34;http://manuelmartensen.com&#34; rel=&#34;nofollow&#34;&#62;http://manuelmartensen.com&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Comparing screenshot: &#60;a href=&#34;http://img194.imageshack.us/img194/8674/searchform.png&#34; rel=&#34;nofollow&#34;&#62;http://img194.imageshack.us/img194/8674/searchform.png&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>martin on "Comment License ignored"</title>
<link>http://themeshaper.com/forums/topic/comment-license-ignored#post-1383</link>
<pubDate>Fri, 23 Jan 2009 17:10:35 +0000</pubDate>
<dc:creator>martin</dc:creator>
<guid isPermaLink="false">1383@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;P.S. (entirely off topic) Kölsch ist immer gut. Dachte aber, an der Wupper wird Alt getrunken? Prost und viel Spaß :).
&#60;/p&#62;</description>
</item>
<item>
<title>martin on "Comment License ignored"</title>
<link>http://themeshaper.com/forums/topic/comment-license-ignored#post-1382</link>
<pubDate>Fri, 23 Jan 2009 17:09:05 +0000</pubDate>
<dc:creator>martin</dc:creator>
<guid isPermaLink="false">1382@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Well, I went and posted it as an issue on Google Code. &#60;a href=&#34;http://code.google.com/p/thematic/issues/detail?id=13&#34; rel=&#34;nofollow&#34;&#62;http://code.google.com/p/thematic/issues/detail?id=13&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>Chris on "Comment License ignored"</title>
<link>http://themeshaper.com/forums/topic/comment-license-ignored#post-1381</link>
<pubDate>Fri, 23 Jan 2009 17:07:31 +0000</pubDate>
<dc:creator>Chris</dc:creator>
<guid isPermaLink="false">1381@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Freut mich :-) .. will add it to Google Code.&#60;/p&#62;
&#60;p&#62;Cheers,&#60;/p&#62;
&#60;p&#62;Chris .. will grab a Kölsch (or more) in a couple of minutes :-)
&#60;/p&#62;</description>
</item>
<item>
<title>martin on "Comment License ignored"</title>
<link>http://themeshaper.com/forums/topic/comment-license-ignored#post-1380</link>
<pubDate>Fri, 23 Jan 2009 17:02:58 +0000</pubDate>
<dc:creator>martin</dc:creator>
<guid isPermaLink="false">1380@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hey Chris, thanks for the fast reply – oder Danke schön, funzt, auf gut Deutsch gesagt :) –.  Should this be added as an issue on the Thematic project, maybe?
&#60;/p&#62;</description>
</item>
<item>
<title>Chris on "Comment License ignored"</title>
<link>http://themeshaper.com/forums/topic/comment-license-ignored#post-1379</link>
<pubDate>Fri, 23 Jan 2009 16:38:32 +0000</pubDate>
<dc:creator>Chris</dc:creator>
<guid isPermaLink="false">1379@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hey Martin,&#60;/p&#62;
&#60;p&#62;don't know why, but &#60;code&#62;&#38;lt;?php do_action('comment_form', $post-&#38;gt;ID); ?&#38;gt;&#60;/code&#62; is missing in comments.php.&#60;/p&#62;
&#60;p&#62;As a short term solution to get it going again:&#60;/p&#62;
&#60;p&#62;Open comments.php with your favourite editor, jump to line 103, insert &#60;code&#62;&#38;lt;?php do_action('comment_form', $post-&#38;gt;ID); ?&#38;gt; and 'Comment License' starts working again.&#60;/p&#62;
&#60;p&#62;Cheers,&#60;/p&#62;
&#60;p&#62;Chris&#60;/code&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>martin on "Comment License ignored"</title>
<link>http://themeshaper.com/forums/topic/comment-license-ignored#post-1377</link>
<pubDate>Fri, 23 Jan 2009 15:09:28 +0000</pubDate>
<dc:creator>martin</dc:creator>
<guid isPermaLink="false">1377@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;This might be Thematic related or Acamas specific, I am not quite sure: the Comment license block povided by the plugin of the same name has disappeared from the comment form since the Thematic 0.8.1 / AcAmas 1.0.1 update. It’s not just not displayed, it’s not there in the source of the page anymore. Which is a pity as the seamless integration of this plugin is one of the (many) niceties Thematic provides…
&#60;/p&#62;</description>
</item>

</channel>
</rss>
