<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>mySource &#187; HomePage</title>
	<atom:link href="http://www.janbthomas.com/jansblog/category/homepage/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.janbthomas.com/jansblog</link>
	<description>Documenting my web development and bug fixes</description>
	<lastBuildDate>Wed, 12 Jan 2011 00:09:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Use Cforms in WordPress to create a short quiz or questionnaire</title>
		<link>http://www.janbthomas.com/jansblog/customize-success-message-cforms/</link>
		<comments>http://www.janbthomas.com/jansblog/customize-success-message-cforms/#comments</comments>
		<pubDate>Wed, 13 Jan 2010 00:22:45 +0000</pubDate>
		<dc:creator>AdminJan</dc:creator>
				<category><![CDATA[HomePage]]></category>
		<category><![CDATA[WordPress Techniques]]></category>
		<category><![CDATA[linkedin]]></category>

		<guid isPermaLink="false">http://www.janbthomas.com/jansblog/?p=570</guid>
		<description><![CDATA[Do you want to vary the CFormsII success message? Maybe you want to create a short quiz that can be scored and reported upon completion. CFormsII provides the ability to alter the success message before the form is processed. For something simpler, create a questionnaire with no scoring involved. Learn how to set these up. [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Do you want to vary the CFormsII success message? Maybe you want to create a short quiz that can be scored and reported upon completion.   CFormsII provides the ability to alter the success message before the form is processed.  For something simpler, create a questionnaire with no scoring involved.  Learn how to set these up.<br />
</strong><br />
<em>[The quiz and survey solutions require knowledge of php programming for scoring.  After being submitted, the form is scored in a php function.]</em></p>
<p><a href="http://www.janbthomas.com/jansblog/websitequestionnaire" class="uline" target="blank">View the Questionnaire Demo</a></p>
<p><a href="http://www.janbthomas.com/jansblog/tv-questionnaire" class="uline" target="blank">View the Quiz Demo (Scoring: one correct answer)</a></p>
<p><a href="http://www.janbthomas.com/jansblog/healthsurvey" class="uline" target="blank">View the Health Survey Demo (Scoring: answers weighted from 0 to 3)</a><span id="more-570"></span></p>
<h2>Questionnaire Instructions:  No Scoring</h2>
<ol>
<li><strong>Create a Form in CformsII.  Add the form to a WordPress page or post.</strong>  <a href="http://www.janbthomas.com/jansblog/createcontactform" class="uline" target="blank">Click for more information on creating a CFormsII form.</a><br/><br/><a href="http://www.janbthomas.com/jansblog/wp-content/uploads/2010/01/WebsiteSurvey.jpg"  class="uline" target="blank">Here&#8217;s what the demo Questionnaire looks like in the CForms Designer:  <img src="http://www.janbthomas.com/jansblog/wp-content/uploads/2010/01/WebsiteSurvey-150x150.jpg" alt="WebsiteSurvey" title="WebsiteSurvey" width="150" height="150" class="alignleft size-thumbnail wp-image-716" /></a>
        </li>
<li>The survey results will be sent to the admin&#8217;s email account and the user&#8217;s email with the CC option.</li>
</ol>
</li>
<h2>Quiz Instructions:  Scoring is Involved</h2>
<ol>
<li><strong>Create a Form in CformsII.  Add the form to a WordPress page or post.</strong>  <a href="http://www.janbthomas.com/jansblog/createcontactform" class="uline" target="blank">Click for more information.</a><br/><br/>Remember the form number and field numbers.
<p> This form below is form #8 and the quiz includes fields 4 through 8. </p>
<p>Each of the radio button answers are set up with a value = 1 for the correct answer and a value = 0 for the incorrect answer.</p>
<p><a href="http://www.janbthomas.com/jansblog/wp-content/uploads/2010/01/tvquestionnaire.jpg"><img src="http://www.janbthomas.com/jansblog/wp-content/uploads/2010/01/tvquestionnaire-300x215.jpg" alt="tvquestionnaire" title="tvquestionnaire" width="300" height="215" class="alignleft size-medium wp-image-696" /></a>
</li>
<li><strong>Edit my-functions.php </strong>.
<ul>
<li>Use the editor of your choice to edit wp-content/plugins/cforms/my-functions.php. <br/> OR<br/>  Go into Plugins->Editor.  Select plugin to edit: cforms.  Click the cforms/my-functions.php file near the bottom of the long list of files.</li>
<li>The <strong>my-functions.php </strong>file has sample code for numerous actions.  For example setting the  redirection link, or changing an email address.  By default, these functions are commented out.</li>
<li>Define <strong>my_cforms_logic </strong>to change the success message.  In this example, the values for fields 4, 5, 6, 7, 8 are totaled.  Correct answers have a value of 1 and incorrect answers have a value of 0 so the total represents the score.</li>
<li>Within the my_cforms_logic function, there are several ways to access the field data.  In this example, the field value is referenced using it&#8217;s field number when combined with $$$.</li>
<li>To see the variables that hold field data use the @email function.  The results will be sent to email.</li>
</li>
</ul>
<li><strong>Save Changes to the server</strong> </li>
<li><strong>Run the form.</strong> </li>
</ol>
<p>Here&#8217;s the code:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">&nbsp;
<span style="color: #000000; font-weight: bold;">function</span> my_cforms_logic<span style="color: #009900;">&#40;</span><span style="color: #000088;">$cformsdata</span><span style="color: #339933;">,</span><span style="color: #000088;">$oldvalue</span><span style="color: #339933;">,</span><span style="color: #000088;">$setting</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
&nbsp;
   <span style="color: #666666; font-style: italic;">// Form number 7 is the Health Quiz:  the radio button value is weighted from 0 to 3.  This value gets added for a total score.</span>
    <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$cformsdata</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'id'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">==</span><span style="color: #cc66cc;">7</span> <span style="color: #009900;">&#41;</span> <span style="color: #339933;">&amp;&amp;</span> <span style="color: #009900;">&#40;</span> <span style="color: #000088;">$setting</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">&quot;successMessage&quot;</span> <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
         <span style="color: #666666; font-style: italic;">### note: '$$$mypick' references the ID of the HTML element and has been assigned
</span>         <span style="color: #666666; font-style: italic;">### to the drop down field in the form configuration, with [id:mypick] !
</span>	 <span style="color: #000088;">$form</span>   <span style="color: #339933;">=</span> <span style="color: #000088;">$cformsdata</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'data'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
&nbsp;
	 <span style="color: #000088;">$total</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$max</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span>
         <span style="color: #000088;">$ptsPossible</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">3</span><span style="color: #339933;">;</span>
&nbsp;
	 <span style="color: #b1b100;">for</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$i</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">4</span><span style="color: #339933;">;</span> <span style="color: #000088;">$i</span> <span style="color: #339933;">&lt;=</span> <span style="color: #cc66cc;">8</span><span style="color: #339933;">;</span> <span style="color: #000088;">$i</span><span style="color: #339933;">++</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	 	<span style="color: #000088;">$curField</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'$$$'</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$i</span><span style="color: #339933;">;</span>
	 	<span style="color: #000088;">$total</span> <span style="color: #339933;">+=</span> <span style="color: #000088;">$form</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$form</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$curField</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
                <span style="color: #000088;">$max</span> <span style="color: #339933;">+=</span> <span style="color: #000088;">$ptsPossible</span><span style="color: #339933;">;</span>
	 <span style="color: #009900;">&#125;</span>
&nbsp;
         <span style="color: #000088;">$yourScore</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;&lt;p&gt;You scored &quot;</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$total</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot; out of &quot;</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$max</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot;&lt;/p&gt;&quot;</span><span style="color: #339933;">;</span>
	 <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #000088;">$total</span> <span style="color: #339933;">&gt;=</span> <span style="color: #cc66cc;">12</span> <span style="color: #009900;">&#41;</span>
	        <span style="color: #b1b100;">return</span> <span style="color: #000088;">$yourScore</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">' &lt;p&gt;Good Work!  Keep up your healthy eating habits&lt;/p&gt; '</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$oldvalue</span> <span style="color: #339933;">;</span>
         <span style="color: #b1b100;">else</span> <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$total</span> <span style="color: #339933;">&gt;=</span><span style="color: #cc66cc;">8</span><span style="color: #009900;">&#41;</span>
                <span style="color: #b1b100;">return</span> <span style="color: #000088;">$yourScore</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">' &lt;p&gt;Your score indicates a need for improvement.  Try adding some healthier elements to your diet.&lt;/p&gt; '</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$oldvalue</span> <span style="color: #339933;">;</span>
         <span style="color: #b1b100;">else</span> 
               <span style="color: #b1b100;">return</span> <span style="color: #000088;">$yourScore</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">' &lt;p&gt;Your score shows a need for improvement.  Try adding some healthier elements to your diet:  Whole wheat cereals and breads are found to reduce heart disease.  Fish such as salmon and halibut have large quantities of omega-3 fatty acids.  These can reduce cholesterol.  USDA recommends 20% of your total daily intake of fat.  Especially the unsaturated fats found in plants.&lt;/p&gt; '</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$oldvalue</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">//@mail('your@email.com', 'cforms my_filter_nonAjax test', 'Form data array (nonAjax):'.print_r($cformsdata,1), 'From: your@email.com');</span>
	<span style="color: #009900;">&#125;</span>
&nbsp;
         <span style="color: #666666; font-style: italic;">// Form number 8 is the TV Questionnaire:  the radio button value: 0 = wrong, 1 = correct.  This value gets added for a total score.</span>
         <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$cformsdata</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'id'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">==</span><span style="color: #cc66cc;">8</span> <span style="color: #009900;">&#41;</span> <span style="color: #339933;">&amp;&amp;</span> <span style="color: #009900;">&#40;</span> <span style="color: #000088;">$setting</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">&quot;successMessage&quot;</span> <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
&nbsp;
		<span style="color: #666666; font-style: italic;">### note: '$$$mypick' references the ID of the HTML element and has been assigned
</span>                <span style="color: #666666; font-style: italic;">### to the drop down field in the form configuration, with [id:mypick] !
</span>		<span style="color: #000088;">$form</span>   <span style="color: #339933;">=</span> <span style="color: #000088;">$cformsdata</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'data'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
&nbsp;
		<span style="color: #000088;">$totalCorrect</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span>
		<span style="color: #000088;">$total</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span>
 		<span style="color: #b1b100;">for</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$i</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">4</span><span style="color: #339933;">;</span> <span style="color: #000088;">$i</span> <span style="color: #339933;">&lt;=</span> <span style="color: #cc66cc;">8</span><span style="color: #339933;">;</span> <span style="color: #000088;">$i</span><span style="color: #339933;">++</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		         <span style="color: #000088;">$curField</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'$$$'</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$i</span><span style="color: #339933;">;</span>
		         <span style="color: #000088;">$totalCorrect</span> <span style="color: #339933;">+=</span> <span style="color: #000088;">$form</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$form</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$curField</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
                         <span style="color: #000088;">$total</span><span style="color: #339933;">++;</span>
 		<span style="color: #009900;">&#125;</span>
&nbsp;
                <span style="color: #000088;">$percent</span> <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$totalCorrect</span> <span style="color: #339933;">/</span> <span style="color: #000088;">$total</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">*</span> <span style="color: #cc66cc;">100</span><span style="color: #339933;">;</span>
                <span style="color: #000088;">$yourScore</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;&lt;p&gt;You scored &quot;</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$totalCorrect</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot; out of &quot;</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$total</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot;.  That's &quot;</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$percent</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot;%!&lt;/p&gt;&quot;</span><span style="color: #339933;">;</span>
		<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #000088;">$total</span> <span style="color: #339933;">&gt;=</span> <span style="color: #cc66cc;">4</span> <span style="color: #009900;">&#41;</span>
	               <span style="color: #b1b100;">return</span> <span style="color: #000088;">$yourScore</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">' &lt;p&gt;Good Work!&lt;/p&gt;'</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$oldvalue</span> <span style="color: #339933;">;</span>
		<span style="color: #b1b100;">else</span>
		      <span style="color: #b1b100;">return</span> <span style="color: #000088;">$yourScore</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">' &lt;p&gt;Better Luck Next Time!&lt;/p&gt;'</span><span style="color: #339933;">;</span>
&nbsp;
		<span style="color: #666666; font-style: italic;">//@mail('your@email.com', 'cforms my_filter_nonAjax test', 'Form data array (nonAjax):'.print_r($cformsdata,1), 'From: your@email.com');</span>
	<span style="color: #009900;">&#125;</span>
	<span style="color: #b1b100;">return</span> <span style="color: #000088;">$oldvalue</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.janbthomas.com/jansblog/customize-success-message-cforms/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Create a Photo Gallery From Your Picasa Album</title>
		<link>http://www.janbthomas.com/jansblog/photo-gallery-from-picasa-album/</link>
		<comments>http://www.janbthomas.com/jansblog/photo-gallery-from-picasa-album/#comments</comments>
		<pubDate>Tue, 25 Aug 2009 21:49:35 +0000</pubDate>
		<dc:creator>AdminJan</dc:creator>
				<category><![CDATA[Articles and Reviews]]></category>
		<category><![CDATA[HomePage]]></category>
		<category><![CDATA[linkedin]]></category>

		<guid isPermaLink="false">http://www.janbthomas.com/jansblog/?p=245</guid>
		<description><![CDATA[Picasa provides an option to export your photo album as an HTML webpage. For a more polished look, use one of the free Picasa templates available on the internet. Learn how to use Picasa to generate a photo gallery on your website. View a Photo Gallery Demo CREATE A WEB ALBUM IN PICASA Use the [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Picasa provides an option to export your photo album as an HTML webpage.  For a more polished look, use one of the free Picasa templates available on the internet. Learn how to use Picasa to generate a photo gallery on your website.</strong></p>
<p><a href="http://www.janbthomas.com/albums/newyork/" target="blank" class="uline" >View a Photo Gallery Demo</a></p>
<ol>
<li>CREATE A WEB ALBUM IN PICASA<br />
Use the Picasa application to create an album, or choose an existing album.  Make sure the album is selected before you start the export.  You can select individual photos or the entire album for export.</li>
<p><span id="more-245"></span></p>
<li>INSTALL THE TEMPLATES
<ul>
<li>Search the internet for Picasa Templates.</li>
<li>Download and unzip the template onto your computer in the folder:<br />
<strong>ProgramFiles/Google/Picasa3/web/templates</strong></p>
<p>[Mac Users:  Use the Finder window to locate Picasa in the applications folder.  Right Mouse Click on Picasa Application.  <strong>Select Show Package Contents</strong>  Copy the template folder into  <strong>Contents->Resources->web->templates</strong>].</p>
<p>(I used the <em>DarkGallery</em> template.  <a href="http://www.janbthomas.com/jansblog/picasa-template-downloads/" class="uline" target="blank"  >Click here for template download</a>.)</li>
</ul>
</li>
<li>EXPORT THE ALBUM
<ul>
<li>Bring up the Picasa Application.</li>
<li>Make sure you have an album selected.</li>
<li>Select menu: <strong>Album -> Export as HTML page</strong> <br />
       Mac Users:  Folder-> Export as HTML page</li>
<li>The new window &#8220;Export as HTML Page&#8221; will appear.  Once the desired export options are selected, choose a location for your photo gallery and press the Next button. </li>
<li>The window &#8220;Select a Web Page Template&#8221; will appear.  <strong>Choose your template.</strong>  Now press the finish button.  Picasa exports files into the location above.  Transfer these files to the sever and your slideshow is ready to view!</li>
</ul>
</li>
</ol>
<p>RELATED POSTS</p>
<ul>
<li><a href="http://www.janbthomas.com/jansblog/use-iframe-add-headers-picasa-gallery/">What&#8217;s Next:  Add Headers and Menus to a Picasa Gallery</a></li>
<li><a href="http://www.janbthomas.com/jansblog/picasa-template-downloads/" class="uline">Picasa Template Downloads</a></li>
<li><a href="http://www.janbthomas.com/jansblog/picasaslideshowinwebsit/" class="uline">Embed a Picasa Slide Show Into Your Website</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.janbthomas.com/jansblog/photo-gallery-from-picasa-album/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Embed a Picasa Slide Show into Your Website</title>
		<link>http://www.janbthomas.com/jansblog/picasaslideshowinwebsit/</link>
		<comments>http://www.janbthomas.com/jansblog/picasaslideshowinwebsit/#comments</comments>
		<pubDate>Tue, 25 Aug 2009 15:57:31 +0000</pubDate>
		<dc:creator>AdminJan</dc:creator>
				<category><![CDATA[Articles and Reviews]]></category>
		<category><![CDATA[HomePage]]></category>
		<category><![CDATA[Embed Picasa Album]]></category>
		<category><![CDATA[linkedin]]></category>
		<category><![CDATA[Picasa Slideshow]]></category>

		<guid isPermaLink="false">http://www.janbthomas.com/jansblog/?p=170</guid>
		<description><![CDATA[Picasa comes with a slideshow utility that can be embedded into any webpage.  Setup is easy and the photo album maintainance is handled by Picasa.  Learn how to display a Picasa slideshow in your website.]]></description>
			<content:encoded><![CDATA[<p><strong>Picasa comes with a slideshow utility that can be embedded into any webpage.  Setup is easy and the photo album maintainance is handled by Picasa.  Learn how to display a Picasa slideshow in your website.</strong></p>
<p><a href="http://www.janbthomas.com/catsdogs.php" class="uline" target="blank">View a Slide Show Demo</a></p>
<p><a href="http://www.janbthomas.com/jansblog/picasa-slide-show-in-wordpress"  class="uline" target="blank">View a Slide Show Demo in a WordPress Post</a></p>
<ol>
<li>CREATE A WEB ALBUM IN PICASA<br />
Use the Picasa application to create an album, or choose an existing Picasa album.  Make sure your album is synced to the web.  I set the Visibility to Public so anyone can view the photos.</li>
<p></p>
<li>RETRIEVE THE SLIDESHOW LINK FROM PICASA
<ul>
<li>Open the Web Album in your favorite browser.  (You can use the link &#8220;<em><strong>view online&#8230; </strong></em>&#8221; from within the Picasa application.)</li>
<li>Select &#8220;<em><strong>Link to this album </strong></em>&#8220;.  (Found on the right column of the Web Album page.)</li>
<p><span id="more-170"></span></p>
<li>Select:  &#8220;<em><strong>Embed Slideshow </strong></em>&#8220;.</li>
<p><a href="http://www.janbthomas.com/jansblog/wp-content/uploads/2009/08/picasaslideshow.jpg" target="blank"><img src="http://www.janbthomas.com/jansblog/wp-content/uploads/2009/08/picasaslideshow-300x127.jpg" alt="How To Embed a Picasa Slideshow" title="Embed a Picasa Slideshow" width="300" height="127" class="size-medium wp-image-273" /></a></p>
<li>The new window &#8220;Create a portable slideshow for your website&#8230;&#8221; will appear.  Once the desired slideshow options are selected, <strong>copy the HTML text at the bottom of the window.</strong></li>
<li><strong>Paste the HTML code into your webpage.</strong> <em>[I use Dreamweaver to edit my web pages but something as simple as NotePad will do.] </em>
<p>For Dreamweaver users:  Bring up your web page in the <strong>Design</strong> tab.  Click to mark the insertion point.  Change to the <strong>Code</strong> tab.  Paste the HTML code (Ctrl V).  Save File.<br />
<strong>Now save these changes to the sever and your slideshow is ready to view!</strong>  </p>
<p><strong>For WordPress:</strong> Log into WordPress administration. Create a new post or edit an existing post. Paste the HTML code from Picasa into the editor and save the changes.<br />
[If you created your website through a web hosting service like GoDaddy, you may need to use their web site editting services.  Make sure you go into HTML mode before pasting.]</li>
</ul>
</li>
</ol>
<p>RELATED POSTS:</p>
<ul>
<li>
<a href="http://www.janbthomas.com/jansblog/photo-gallery-from-picasa-album/" class="uline">Create a Photo Gallery From Your Picasa Album</a></li>
<li><a href="http://www.janbthomas.com/jansblog/picasa-template-downloads/" class="uline">Picasa Template Downloads</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.janbthomas.com/jansblog/picasaslideshowinwebsit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create a Photo Gallery Using JAlbum</title>
		<link>http://www.janbthomas.com/jansblog/jalbum-photo-gallery/</link>
		<comments>http://www.janbthomas.com/jansblog/jalbum-photo-gallery/#comments</comments>
		<pubDate>Wed, 04 Feb 2009 14:38:39 +0000</pubDate>
		<dc:creator>AdminJan</dc:creator>
				<category><![CDATA[Articles and Reviews]]></category>
		<category><![CDATA[HomePage]]></category>

		<guid isPermaLink="false">http://www.janbthomas.com/jansblog/?p=128</guid>
		<description><![CDATA[When you want to display and share photography, it&#8217;s important to find a solution that is organized and professional. I like JAlbum because it transfers photos from my computer hard drive onto my website. I specifically chose JAlbum for one of my websites because it included a Flash slide show, and a Flash gallery on [...]]]></description>
			<content:encoded><![CDATA[<p><strong>When you want to display and share photography, it&#8217;s important to find a solution that is organized and professional.  I like JAlbum because it transfers photos from my computer hard drive onto my website.  I specifically chose JAlbum for one of my websites because it included a Flash slide show, and a Flash gallery on the same page.</strong> </p>
<p><span id="more-128"></span> </p>
<p>The JAlbum website (<a href="http://www.jalbum.net" class="uline" target="blank">www.jalbum.net</a>) promotes its web hosting feature &#8211; JAlbum will provide users with web space for their photo gallery.   I really prefer to let JAlbum publish photos on my own site.  The JAlbum application installs and runs from a local drive, similar to Picasa.  There are versions for Windows and Mac based operating systems. </p>
<p><a href="http://www.janbthomas.com/jalbumbanner.php" class="uline" target="blank">VIEW A JALBUM GALLERY RUNNING ON MY WEBSITE</a></p>
<p><strong>Here&#8217;s how to get started with JAlbum:</strong><br />
1.  Install JAlbum onto your computer.<br />
2.  Open JAlbum and Create a New Album.<br />
3.  Add Photographs and Images to the Album.<br />
4.  Select a Skin (I choose FotoPlayer); or find skin from the internet:  click on the &#8220;more skins&#8221; link to look on the jalbum site.  Once you&#8217;ve selected a skin, the download and installation is done for you.<br />
5.  ADD WEB HOST INFORMATION FOR PHOTO ALBUM<br />
Select <strong>Tools</strong> -> <strong>Publish/Manage</strong> from the menubar</p>
<ul>
<li>Step 1: FTP ACCOUNT LOGIN <em>(These FTP settings can be obtained through your web host provider.)</em><br />
Server Name:  (host / URL) eg. www.janbthomas.com<br />
User Name: (FTP account name)<br />
Password: (FTP password)</li>
<li>Step 2: Navigate to Host Subdirectory</li>
<li>Select the <strong>Close</strong> Button</li>
</ul>
<p>6.  Make the Album.<br />
7.  Click on the &#8220;Publish/Manage&#8221; Button to send your new album to your web server using JAlbum&#8217;s FTP utility.</p>
<p>This application is free and developers provide some really nice skins that can include both slide show and gallery features in one nice Flash package.  </p>
<p><strong>Next Step:  </strong><a href="http://www.janbthomas.com/jansblog/adding-headers-jalbum-gallery/" class="uline">Adding Headers and Menus to a JAlbum Gallery</a></p>
<p>RELATED POSTS:</p>
<p><a href="picasa-slide-show/" class="uline">Create a Photo Gallery From Your Picasa Album</a><br />
<a href="picasaslideshowinwebsit/" class="uline">Embed a Picasa Slideshow into Your Website</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.janbthomas.com/jansblog/jalbum-photo-gallery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create a Contact Form in WordPress</title>
		<link>http://www.janbthomas.com/jansblog/createcontactform/</link>
		<comments>http://www.janbthomas.com/jansblog/createcontactform/#comments</comments>
		<pubDate>Sat, 17 Jan 2009 00:08:41 +0000</pubDate>
		<dc:creator>AdminJan</dc:creator>
				<category><![CDATA[HomePage]]></category>
		<category><![CDATA[WordPress Techniques]]></category>
		<category><![CDATA[contact form]]></category>

		<guid isPermaLink="false">http://www.janbthomas.com/jansblog/?p=29</guid>
		<description><![CDATA[Want more contact with your website visitors? CFormsII is a WordPress plugin created for just that purpose. Simply design your form through the CFormsII interface. Add it to a WordPress Page or Post. Then provide your users with a link to the Page or Post. This handy utility sends you the completed form via email. [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Want more contact with your website visitors?  CFormsII is a WordPress plugin created for just that purpose. Simply design your form through the CFormsII interface.  Add it to a WordPress Page or Post.  Then provide your users with a link to the Page or Post.  This handy utility sends you the completed form via email.  Learn how to set this up.</strong></p>
<p><strong>1.   Install the CFormsII Plugin.</strong></p>
<p><strong>2.   Bring up CFormsII in the WordPress administrator.</strong>  <em>CFormsII link is in the main WordPress menu. Look for the icon: <img style="vertical-align:middle;" src="http://www.janbthomas.com/jansblog/wp-content/uploads/2009/01/cformsii-icon.jpg" alt="cformsii-icon" title="cformsii-icon" width="30" height="34" class="alignright size-full wp-image-349" /></em><br />
<span id="more-29"></span><br />
<br />
<strong>3.   Label fields</strong>:  (Add fields as needed.)<br />
Add any fields needed.  Dropdown fields, edit fields, etc.<br />
For Select Box separate options with a # for example:  Type of Contact#Website#Blog#Flash.</p>
<p><a href="http://www.janbthomas.com/jansblog/contactselect/" class="uline" target="blank" > VIEW THE CONTACT FORM WITH SELECT BOX</a></p>
<p>How to use the &#8220;Multiple form mail recipients&#8221; dropdown option:<br />
Select field type <strong>Multiple Recipients</strong>.  Click the Edit button.  Enter the option name to be displayed in the drop down, then beside the name add the email address into the optional value field.<br />
<br />
<strong>4.   Create a new Page (or Post) to hold the Contact Form</strong>  </p>
<ul>
<li>Bring up the Pages menu on the main WordPress menubar.</li>
<li>Click the <strong>&#8220;Add New&#8221;</strong> Link.</li>
<li>Label the page something like &#8220;Contact Information&#8221;. </li>
<li>Add the Contact form by clicking in the page content area and press <strong>CForms</strong> button then insert.  A string of code will be added to your page that looks something like this: &lt;&#8211; cforms name=&#8221;contactpage&#8221;&#8211;&gt;</li>
<p>The CForms button isn&#8217;t necessary.  There are times I don&#8217;t see the <strong>CForms</strong> button in <em>Edit Page</em> and <em>Edit Post</em>.  Just add this line of code into your page or post:</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;!--cforms name=&quot;contactpage&quot;--&gt;</pre></div></div>

<p>Where &#8220;contactpage&#8221; is the name of the <em>CFormsII</em> form you created.  </p>
<li> Call this page to bring up the Contact Form. Here&#8217;s how I bring up my new Contact Form:  <a href="http://www.janbthomas.com/jansblog/defaultcontact/" target="blank" class="uline" >www.janbthomas.com/jansblog/defaultcontact/</a></li>
</ul>
<p>
<strong>5.   Create a Success Page for the Contact Form: (optional)</strong><br />
<em>Core Form Admin -> Redirect</em><br />
Select: <em>Enable alternative success page.</em><br />
URL:  Create an html file to display a Thank you message.  Add it to the themes directory.<br />
[This step isn't required.  This option is used to hide the contact form on success and replace it with a simple "Success" page.]</p>
<p><a href="http://www.janbthomas.com/jansblog/defaultcontact/" target="blank" class="uline" >VIEW DEMO OF CONTACT WITH REDIRECT</a><br />
<br />
<strong>6.  As an alternative, create a template customized for the Content Form.</strong>  For example, a template could be created without the menus and banners.  Once created, add this template into the themes directory, and into the Content Information Page.<br />
<br />
<strong>7.  Here&#8217;s another option: bring up the contact form in a popup window.  Use this HTML code to create a link to the new Contact Form:</strong></p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;a class=&quot;postLink&quot; href=&quot;#&quot; 
onClick=&quot;window.open('http://www.janbthomas.com/jansblog/contact/', 'Contact Us','toolbar=yes,location=yes,directories=no,status=no, menubar=yes,scrollbars=no,width=500,height=500,top=100,left=250');&quot;/&gt; 
Contact Jan &lt;/a&gt;</pre></div></div>

<p>Here&#8217;s the final result: <a class="postLink" href="#" onClick="window.open('http://www.janbthomas.com/jansblog/contact/', 'ContactUs','toolbar=yes,location=yes,directories=no,status=no,menubar=yes,scrollbars=no,resize=no,width=500,height=500,top=100,left=250');">Contact Jan</a></p>
<p>For a more detailed description: <a href="http://www.janbthomas.com/jansblog/opening-a-new-window-play-video-in-its-own-window/" class="uline" target="blank">View Popup Window Post</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.janbthomas.com/jansblog/createcontactform/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

