<?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>Your Local Tech</title>
	<atom:link href="http://yourlocaltech.com/feed/" rel="self" type="application/rss+xml" />
	<link>https://yourlocaltech.com</link>
	<description>Technology, WordPress and Marketing Consulting for Members Only</description>
	<lastBuildDate>Thu, 07 Jul 2016 21:15:11 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.1.1</generator>
	<item>
		<title>Build an SMS Subscription Service</title>
		<link>https://yourlocaltech.com/blog/2016/07/07/build-an-sms-subscription-service/</link>
					<comments>https://yourlocaltech.com/blog/2016/07/07/build-an-sms-subscription-service/#respond</comments>
		
		<dc:creator><![CDATA[Loren Nason]]></dc:creator>
		<pubDate>Thu, 07 Jul 2016 21:15:11 +0000</pubDate>
				<category><![CDATA[How I Did It]]></category>
		<guid isPermaLink="false">https://needweb.help/?p=1228</guid>

					<description><![CDATA[Have you seen SendCatFacts.com I wanted to experiment with the plugin I wrote about in my last post and see if I could make something similar. What did I build: A subscription based service to send daily motivational or de-motivational text messages to the number of your choosing. The steps below is a rough highlight&#8230;]]></description>
										<content:encoded><![CDATA[<p>Have you seen <a href="http://sendcatfacts.com">SendCatFacts.com</a></p>
<p>I wanted to experiment with the plugin I wrote about in my last post and see if I could make something similar.</p>
<p><strong>What did I build:</strong></p>
<p>A subscription based service to send daily motivational or de-motivational text messages to the number of your choosing.</p>
<p>The steps below is a rough highlight of each piece needed to be done. I&#8217;ll assume you have a Stripe account or know how to setup one up and you own the Gravity Form developer license as it is needed for the add-ons. You will also need a paid Twilio account with an active phone number.</p>
<p><strong>Setup Site</strong></p>
<p>Setup a simple WordPress site. Install a theme, I used <a href="http://www.shareasale.com/r.cfm?b=689822&amp;u=490768&amp;m=28169&amp;urllink=&amp;afftrack=">Altitude Pro </a>from Genesis. Yes, I put it on <a href="http://www.shareasale.com/r.cfm?B=394686&amp;U=490768&amp;M=41388&amp;urllink=">WPEngine</a>.</p>
<p><strong>Setup Gravity Forms</strong></p>
<p>Install <a href="http://www.gravityforms.com/">Gravity Forms</a> along with <a href="http://www.gravityforms.com/add-ons/user-registration/">User Registration</a> and <a href="http://www.gravityforms.com/add-ons/stripe/">Stripe Payments</a> add-ons.</p>
<p>Create a form. I made a simple form that asks for the purchaser&#8217;s email address and then credit card info. The radio buttons decide use conditional logic to set the product price. After you click a plan then the price is shown and you can enter credit card payment details</p>
<p>Put form in widget area on home page.</p>
<p><strong>Setup Texting Plugin</strong></p>
<p>Install and configuration <a href="http://www.getcloudsms.com/">Joy of Text Pro</a> plugin with Scheduling add-on. This step took an extended bit of time because I had to create 60 different text messages. 30 texts for 2 groups sent out daily. I&#8217;m not going to go through the detailed process I used to setup the plugin. But it was pretty basic and the instructions provided by the plugin author were enough to make it work.</p>
<p><strong>Setup customization for Gravity Forms and Restricted Content</strong></p>
<p>Keep the signup forms hidden from public for the Joy of Text plugin.</p>
<p>What I wanted to happen is when somebody submitted payment to send out the texts I needed them to go to a second form where they could enter the name and phone number. I didn&#8217;t want these pages to be public so I had to research some code to make gravity forms auto login a user upon payment of front page form.</p>
<p><strong>-Process flow:</strong><br />
Customer fills in form on home page and submits payment then &gt;<br />
Gravity forms custom function automatically creates user and auto logs in user and then forwards to correct customer page depending on option chosen.</p>
<p><strong>-What I needed for this:</strong></p>
<p><a href="https://wordpress.org/plugins/restrict-content/">Restrict Content (free)</a> by Pippin Williamson and this bit of code added to functions.php</p>
<p><script src="https://gist.github.com/lorennason/1ad23d06a954610c0a0b519fb8e82dc8.js"></script></p>
<p><strong>Step 5:</strong></p>
<p>Test website with Stripe set to testing mode.</p>
<p><strong>Step 6:</strong></p>
<p>Turn it live and profit</p>
<p><strong>Time involved:</strong></p>
<p>2-4 hours of configuration of plugins/site/payments/etc</p>
<p>2-4 hours to find and craft each motivational message and set into the scheduler of the plugin.</p>
<p><strong>Questions or Help?</strong></p>
<p><a href="https://needweb.help/contact/">Contact Me</a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://yourlocaltech.com/blog/2016/07/07/build-an-sms-subscription-service/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Create a Form that will Send a Coupon by Text/SMS</title>
		<link>https://yourlocaltech.com/blog/2016/05/14/create-a-form-that-will-send-a-coupon-by-textsms/</link>
					<comments>https://yourlocaltech.com/blog/2016/05/14/create-a-form-that-will-send-a-coupon-by-textsms/#respond</comments>
		
		<dc:creator><![CDATA[Loren Nason]]></dc:creator>
		<pubDate>Sat, 14 May 2016 07:04:17 +0000</pubDate>
				<category><![CDATA[sms]]></category>
		<guid isPermaLink="false">https://needweb.help/?p=1218</guid>

					<description><![CDATA[There was a question on the OC WordPress Facebook Group about sending a coupon via a text message from a WordPress website. Normally I would say &#8220;let&#8217;s find a Gravity Forms solution&#8221; and I went down that road. I found a couple posts by Chris Lema here and here. But I then I thought that Roy might&#8230;]]></description>
										<content:encoded><![CDATA[<p>There was a question on the <a href="https://www.facebook.com/groups/OCWordPress/" target="_blank">OC WordPress Facebook Group</a> about sending a coupon via a text message from a WordPress website.</p>
<p><a href="https://needweb.help/wp-content/uploads/2016/05/send-coupon-via-text.jpg"><img decoding="async" loading="lazy" class="aligncenter wp-image-1219 size-full" src="https://needweb.help/wp-content/uploads/2016/05/send-coupon-via-text.jpg" alt="send-coupon-via-text" width="494" height="184" srcset="https://yourlocaltech.com/wp-content/uploads/2016/05/send-coupon-via-text.jpg 494w, https://yourlocaltech.com/wp-content/uploads/2016/05/send-coupon-via-text-300x112.jpg 300w" sizes="(max-width: 494px) 100vw, 494px" /></a></p>
<p>Normally I would say &#8220;let&#8217;s find a Gravity Forms solution&#8221; and I went down that road. I found a couple posts by Chris Lema <a href="http://chrislema.com/how-to-connect-gravityforms-textmarks-text-messaging/" target="_blank">here</a> and <a href="http://chrislema.com/using-twilio-with-gravity-forms/" target="_blank">here</a>. But I then I thought that Roy might not have Gravity Forms, or was looking for a free-ish solution, or wants something easy.</p>
<p>I spent a little more time on the Google and I found this plugin. <a href="http://www.getcloudsms.com/" target="_blank">Get Cloud SMS</a>. They even have a lite version <a href="https://wordpress.org/plugins/joy-of-text/" target="_blank">Joy of Text Lite</a>. This plugin looks pretty slick. Yes, I only used the light version but the paid version is only $65 bucks for 1 site. They have other extensions for scheduling messages, comment notifications, WooCommerce extension, Member Mouse and Easy Digital Downloads. Oh and if you buy the paid version you will get Gravity Forms integration and so much more.</p>
<p>What I did:</p>
<p><strong>Step 1:</strong></p>
<p>Install the Joy of Text Lite version</p>
<p><strong>Step 2:</strong></p>
<p>Setup a Twilio account and get a number (local #&#8217;s are $1.00 a month and $2 for toll free). Also during the setup you need to turn on Programmable SMS and make sure URL shortening is turned on.</p>
<p><a href="https://needweb.help/wp-content/uploads/2016/05/get-a-number.jpg"><img decoding="async" loading="lazy" class="alignnone size-medium wp-image-1221" src="https://needweb.help/wp-content/uploads/2016/05/get-a-number-300x172.jpg" alt="get-a-number" width="300" height="172" srcset="https://yourlocaltech.com/wp-content/uploads/2016/05/get-a-number-300x172.jpg 300w, https://yourlocaltech.com/wp-content/uploads/2016/05/get-a-number-768x441.jpg 768w, https://yourlocaltech.com/wp-content/uploads/2016/05/get-a-number.jpg 995w" sizes="(max-width: 300px) 100vw, 300px" /></a></p>
<p><img decoding="async" loading="lazy" class="alignnone size-medium wp-image-1224" src="https://needweb.help/wp-content/uploads/2016/05/url-shortening-300x213.jpg" alt="url-shortening" width="300" height="213" srcset="https://yourlocaltech.com/wp-content/uploads/2016/05/url-shortening-300x213.jpg 300w, https://yourlocaltech.com/wp-content/uploads/2016/05/url-shortening.jpg 766w" sizes="(max-width: 300px) 100vw, 300px" /></p>
<p><strong>Step 3:</strong></p>
<p>Get keys from Twilio and setup plugin</p>
<p><a href="https://needweb.help/wp-content/uploads/2016/05/keys.jpg"><img decoding="async" loading="lazy" class="alignnone wp-image-1220 size-medium" src="https://needweb.help/wp-content/uploads/2016/05/keys-300x156.jpg" alt="keys" width="300" height="156" srcset="https://yourlocaltech.com/wp-content/uploads/2016/05/keys-300x156.jpg 300w, https://yourlocaltech.com/wp-content/uploads/2016/05/keys-768x401.jpg 768w, https://yourlocaltech.com/wp-content/uploads/2016/05/keys.jpg 788w" sizes="(max-width: 300px) 100vw, 300px" /></a></p>
<p><a href="https://needweb.help/wp-content/uploads/2016/05/jotl-settings.jpg"><img decoding="async" loading="lazy" class="alignnone wp-image-1222 size-medium" src="https://needweb.help/wp-content/uploads/2016/05/jotl-settings-300x244.jpg" alt="jotl-settings" width="300" height="244" srcset="https://yourlocaltech.com/wp-content/uploads/2016/05/jotl-settings-300x244.jpg 300w, https://yourlocaltech.com/wp-content/uploads/2016/05/jotl-settings-768x625.jpg 768w, https://yourlocaltech.com/wp-content/uploads/2016/05/jotl-settings-1024x833.jpg 1024w, https://yourlocaltech.com/wp-content/uploads/2016/05/jotl-settings.jpg 1046w" sizes="(max-width: 300px) 100vw, 300px" /></a></p>
<p><strong>Step 4:</strong></p>
<p>Setup form</p>
<p><a href="https://needweb.help/wp-content/uploads/2016/05/jotl-form.jpg"><img decoding="async" loading="lazy" class="alignnone wp-image-1223 size-medium" src="https://needweb.help/wp-content/uploads/2016/05/jotl-form-300x253.jpg" alt="jotl-form" width="300" height="253" srcset="https://yourlocaltech.com/wp-content/uploads/2016/05/jotl-form-300x253.jpg 300w, https://yourlocaltech.com/wp-content/uploads/2016/05/jotl-form-768x647.jpg 768w, https://yourlocaltech.com/wp-content/uploads/2016/05/jotl-form.jpg 1000w" sizes="(max-width: 300px) 100vw, 300px" /></a></p>
<p><strong>Step 5:</strong></p>
<p>Create page and insert form with shortcode provided on form setup.</p>
<p>See it in action here -&gt; <a href="https://needweb.help/get-a-free-tip/" target="_blank">Get a Free Tip</a></p>
<p><strong>Step 6:</strong></p>
<p>Tell people about it, collect phone numbers and make millions.</p>
<p><strong>Sending the Coupon:</strong></p>
<p>To send a coupon you will upload a image to your media library, get the link (ex: https://needweb.help/wp-content/uploads/2016/05/20-percent-off-sale.jpg), paste the link into your welcome message and then turn on</p>
<p><strong>Thoughts:</strong></p>
<p>After you have the numbers you can even send a message manually to everyone in your list. Great for sending out sale notifications. Just don&#8217;t abuse this and piss off your potential customers. The paid plugin has so many features. I&#8217;m going to have to buy a copy.</p>
<p>&nbsp;</p>
<p><strong>Total Cost:</strong></p>
<p>1 hour of time while watching Shark Tank<br />
1 plugin = free<br />
$20 = fund Twilio</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
					
					<wfw:commentRss>https://yourlocaltech.com/blog/2016/05/14/create-a-form-that-will-send-a-coupon-by-textsms/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Mental Health Minute</title>
		<link>https://yourlocaltech.com/blog/2016/04/15/mental-health-minute/</link>
					<comments>https://yourlocaltech.com/blog/2016/04/15/mental-health-minute/#respond</comments>
		
		<dc:creator><![CDATA[Loren Nason]]></dc:creator>
		<pubDate>Fri, 15 Apr 2016 23:13:25 +0000</pubDate>
				<category><![CDATA[Mental Health]]></category>
		<guid isPermaLink="false">https://needweb.help/?p=1213</guid>

					<description><![CDATA[Mental Health is always swept under the rug. How do we past that and bring it to a forefront? Do you know anyone who suffers from Mental Illness / Depression / Bipolar / or.. Check out this site by Ed Finkler -&#62; Open Sourcing Mental Illness. Ed is giving talks to companies and conferences on the&#8230;]]></description>
										<content:encoded><![CDATA[<p>Mental Health is always swept under the rug. How do we past that and bring it to a forefront?<img decoding="async" loading="lazy" class="alignright size-thumbnail wp-image-1214" src="https://needweb.help/wp-content/uploads/2016/04/osmi-logo-big-150x150.png" alt="osmi-logo-big" width="150" height="150" srcset="https://yourlocaltech.com/wp-content/uploads/2016/04/osmi-logo-big-150x150.png 150w, https://yourlocaltech.com/wp-content/uploads/2016/04/osmi-logo-big-300x300.png 300w, https://yourlocaltech.com/wp-content/uploads/2016/04/osmi-logo-big-768x766.png 768w, https://yourlocaltech.com/wp-content/uploads/2016/04/osmi-logo-big.png 912w" sizes="(max-width: 150px) 100vw, 150px" /></p>
<p>Do you know anyone who suffers from Mental Illness / Depression / Bipolar / or..</p>
<p>Check out this site by <a href="https://twitter.com/funkatron" target="_blank">Ed Finkler</a> -&gt; <a href="https://osmihelp.org/" target="_blank">Open Sourcing Mental Illness</a>. Ed is giving talks to companies and conferences on the issue of Mental Health in the tech industry. He also is featured on this podcast at the <a href="http://dradcast.com/">Drad Cast with Dre Armeda and Brad Williams</a></p>
<p><a href="http://dradcast.com/shows/episode-094-open-sourcing-mental-illness/">Episode 094 &#8211; Open Sourcing Mental Illness</a></p>
<p>I also watched this amazing PBS show called: <a href="http://www.pbs.org/ride-the-tiger/home/">Ride the Tiger &#8211; A guide through the Bipolar Brain</a> . Ride the Tiger is a one-hour documentary that tells the stories of individuals who have been diagnosed with bipolar disorder.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
					
					<wfw:commentRss>https://yourlocaltech.com/blog/2016/04/15/mental-health-minute/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Business Websites are Dead</title>
		<link>https://yourlocaltech.com/blog/2016/04/13/business-websites-are-dead/</link>
					<comments>https://yourlocaltech.com/blog/2016/04/13/business-websites-are-dead/#respond</comments>
		
		<dc:creator><![CDATA[Loren Nason]]></dc:creator>
		<pubDate>Thu, 14 Apr 2016 05:57:32 +0000</pubDate>
				<category><![CDATA[Advice]]></category>
		<guid isPermaLink="false">https://needweb.help/?p=1211</guid>

					<description><![CDATA[Websites are Dead, you don&#8217;t need a custom built website with your own domain name. I saw this article on Facebook of all places &#8220;The Fallacy of Dead Or Alive Marketing&#8221; Scott Stratten of UnMarketing. It&#8217;s a great read but I&#8217;ll sumize with this: No marketing tactic/channel is dead, nor are any alive. It’s what&#8230;]]></description>
										<content:encoded><![CDATA[<h2><img decoding="async" loading="lazy" class="aligncenter size-medium wp-image-1212" src="https://needweb.help/wp-content/uploads/2016/04/dead-websites-300x300.png" alt="dead-websites" width="300" height="300" srcset="https://yourlocaltech.com/wp-content/uploads/2016/04/dead-websites-300x300.png 300w, https://yourlocaltech.com/wp-content/uploads/2016/04/dead-websites-150x150.png 150w, https://yourlocaltech.com/wp-content/uploads/2016/04/dead-websites.png 600w" sizes="(max-width: 300px) 100vw, 300px" /></h2>
<h2>Websites are Dead, you don&#8217;t need a custom built website with your own domain name.</h2>
<p>I saw this article on Facebook of all places <a href="https://medium.com/@unmarketing/this-blog-post-is-dead-the-fallacy-of-dead-or-alive-marketing-f7395103ba95#.d3rgiulpl" target="_blank">&#8220;The Fallacy of Dead Or Alive Marketing&#8221;</a> Scott Stratten of UnMarketing. It&#8217;s a great read but I&#8217;ll sumize with this:</p>
<blockquote><p><em>No marketing tactic/channel is dead, nor are any alive. It’s what we do with them. Email, blogging, video, presentations, social media, trade shows, direct mail and yes, even knocking on people’s doors can work for sales and marketing. Just depends on your resources, ability and product/service being offered.</em></p></blockquote>
<p>It&#8217;s perfect, don&#8217;t listen to anyone who says &#8220;that method is dead&#8221; (well unless it&#8217;s myspace). No tactic/channel is dead to you unless that tactic/channel produces no results.</p>
<h2><strong>Do you really need a website?</strong></h2>
<p>Maybe not. I&#8217;ve seen artists who only use Instagram as their marketing channel and then when a follow requests to buy one of their pieces they send them to places like etsy/ebay/amazon/custom made/etc. I&#8217;ve also seen some of these artists use Square as their ecommerce platform.</p>
<h2>What is my point?</h2>
<p>Use what you want to use and what works for you. Sometimes that thing that works for you is to have a website built and maintained for you. Sometimes it&#8217;s making a social channel work for you. What ever the solution is, use the solution and make it work.</p>
<h2>Is &#8220;blogging&#8221; dead?</h2>
<p>Nope. Stay tuned for the next article</p>
]]></content:encoded>
					
					<wfw:commentRss>https://yourlocaltech.com/blog/2016/04/13/business-websites-are-dead/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>New Site for the Portfolio</title>
		<link>https://yourlocaltech.com/blog/2016/04/10/new-site-for-the-portfolio/</link>
					<comments>https://yourlocaltech.com/blog/2016/04/10/new-site-for-the-portfolio/#respond</comments>
		
		<dc:creator><![CDATA[Loren Nason]]></dc:creator>
		<pubDate>Sun, 10 Apr 2016 23:59:24 +0000</pubDate>
				<category><![CDATA[Portfolio]]></category>
		<guid isPermaLink="false">https://needweb.help/?p=1208</guid>

					<description><![CDATA[David Haberer was in need of a simple site to feature some of his work. Goals: Simple, Cost Effective, Mobile Friendly Platform: WordPress Theme: Altitude Pro by StudioPress Plugins: Gravity Forms and FooGallery Site: http://dhaberer.com See more of my porfolio -&#62; Need Web Help Porfolio &#160;]]></description>
										<content:encoded><![CDATA[<p>David Haberer was in need of a simple site to feature some of his work.</p>
<p>Goals: Simple, Cost Effective, Mobile Friendly<br />
Platform: WordPress<br />
Theme: Altitude Pro by StudioPress<br />
Plugins: Gravity Forms and FooGallery<br />
Site: <a href="http://dhaberer.com" target="_blank">http://dhaberer.com</a></p>
<p>See more of my porfolio -&gt; <a href="/my-portfolio">Need Web Help Porfolio</a></p>
<p><a href="https://needweb.help/wp-content/uploads/2016/04/dhaberer.jpg" rel="attachment wp-att-1209"><img decoding="async" loading="lazy" class="aligncenter wp-image-1209 size-large" src="https://needweb.help/wp-content/uploads/2016/04/dhaberer-1024x470.jpg" alt="dhaberer" width="1024" height="470" srcset="https://yourlocaltech.com/wp-content/uploads/2016/04/dhaberer-1024x470.jpg 1024w, https://yourlocaltech.com/wp-content/uploads/2016/04/dhaberer-300x138.jpg 300w, https://yourlocaltech.com/wp-content/uploads/2016/04/dhaberer-768x353.jpg 768w, https://yourlocaltech.com/wp-content/uploads/2016/04/dhaberer.jpg 1898w" sizes="(max-width: 1024px) 100vw, 1024px" /></a></p>
<p>&nbsp;</p>
]]></content:encoded>
					
					<wfw:commentRss>https://yourlocaltech.com/blog/2016/04/10/new-site-for-the-portfolio/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Full Video Background Landing Page with Genesis &#038; Beaver Builder</title>
		<link>https://yourlocaltech.com/blog/2016/04/03/full-video-background-landing-page-with-genesis-beaver-builder/</link>
					<comments>https://yourlocaltech.com/blog/2016/04/03/full-video-background-landing-page-with-genesis-beaver-builder/#respond</comments>
		
		<dc:creator><![CDATA[Loren Nason]]></dc:creator>
		<pubDate>Mon, 04 Apr 2016 05:25:32 +0000</pubDate>
				<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">https://yourlocaltech.com/?p=1172</guid>

					<description><![CDATA[I was thinking it would be neat (it&#8217;s been done before) to create a lead gen type of landing page with a video background. What I used: Beaver Builder Genesis Dambuster How I set the page settings before setting up the page with Beaver Builder Step 1: Create page and set template to Landing Page&#8230;]]></description>
										<content:encoded><![CDATA[<p>I was thinking it would be neat (it&#8217;s been done before) to create a lead gen type of landing page with a video background.</p>
<p>What I used:</p>
<p><a href="https://www.wpbeaverbuilder.com/?fla=552&amp;campaign=video-landing-page">Beaver Builder</a><br />
<a href="https://wordpress.org/plugins/genesis-dambuster/">Genesis Dambuster</a></p>
<p>How I set the page settings before setting up the page with Beaver Builder</p>
<p><strong>Step 1:</strong></p>
<p>Create page and set template to Landing Page</p>
<p><a href="https://needweb.help/wp-content/uploads/2016/03/choose-landing.jpg"><img decoding="async" loading="lazy" class="aligncenter wp-image-1191 size-medium" src="https://needweb.help/wp-content/uploads/2016/03/choose-landing-300x127.jpg" alt="choose-landing" width="300" height="127" data-featherlight="src=&quot;https://needweb.help/wp-content/uploads/2016/03/choose-landing-300x127.jpg&quot;" srcset="https://yourlocaltech.com/wp-content/uploads/2016/03/choose-landing-300x127.jpg 300w, https://yourlocaltech.com/wp-content/uploads/2016/03/choose-landing-768x325.jpg 768w, https://yourlocaltech.com/wp-content/uploads/2016/03/choose-landing-1024x433.jpg 1024w, https://yourlocaltech.com/wp-content/uploads/2016/03/choose-landing.jpg 1723w" sizes="(max-width: 300px) 100vw, 300px" /></a></p>
<p><strong>Step 2:</strong></p>
<p>Check box for Genesis Dambuster &#8220;Enable Tweaks&#8221;</p>
<p><a href="https://needweb.help/wp-content/uploads/2016/03/enable-tweaks.jpg"><img decoding="async" loading="lazy" class="aligncenter wp-image-1192 size-medium" src="https://needweb.help/wp-content/uploads/2016/03/enable-tweaks-300x157.jpg" alt="enable-tweaks" width="300" height="157" srcset="https://yourlocaltech.com/wp-content/uploads/2016/03/enable-tweaks-300x157.jpg 300w, https://yourlocaltech.com/wp-content/uploads/2016/03/enable-tweaks.jpg 404w" sizes="(max-width: 300px) 100vw, 300px" /></a></p>
<p><strong>Step 3:</strong></p>
<p>On the Genesis Dambuster tab &#8216;template width&#8217; check the box for Full Width. On all the other tabs check all the boxes for &#8220;remove&#8221;</p>
<h2 style="text-align: center;">Beaver Builder setup of the video landing page</h2>
<p><strong>Step 1:</strong></p>
<p>Add a row with &#8220;width/content width&#8221; at Full and Height at Full</p>
<p><a href="https://needweb.help/wp-content/uploads/2016/03/row-step1-1.jpg"><img decoding="async" loading="lazy" class="aligncenter wp-image-1196 size-medium" src="https://needweb.help/wp-content/uploads/2016/03/row-step1-1-300x257.jpg" alt="row-step1" width="300" height="257" srcset="https://yourlocaltech.com/wp-content/uploads/2016/03/row-step1-1-300x257.jpg 300w, https://yourlocaltech.com/wp-content/uploads/2016/03/row-step1-1.jpg 596w" sizes="(max-width: 300px) 100vw, 300px" /></a></p>
<p><strong>Step 2:</strong></p>
<p>Set the background to Video and choose your MP4 and WebM video. You can also choose a fallback image for mobile devices. You can also play with overlay colors on the video.</p>
<p><a href="https://needweb.help/wp-content/uploads/2016/03/row-step1.jpg"><img decoding="async" loading="lazy" class="alignnone wp-image-1193 size-medium" src="https://needweb.help/wp-content/uploads/2016/03/row-step1-300x257.jpg" alt="row-step1" width="300" height="257" srcset="https://yourlocaltech.com/wp-content/uploads/2016/03/row-step1-300x257.jpg 300w, https://yourlocaltech.com/wp-content/uploads/2016/03/row-step1.jpg 596w" sizes="(max-width: 300px) 100vw, 300px" /></a> <a href="https://needweb.help/wp-content/uploads/2016/03/row-step2.jpg"><img decoding="async" loading="lazy" class="alignnone wp-image-1194 size-medium" src="https://needweb.help/wp-content/uploads/2016/03/row-step2-300x220.jpg" alt="row-step2" width="300" height="220" srcset="https://yourlocaltech.com/wp-content/uploads/2016/03/row-step2-300x220.jpg 300w, https://yourlocaltech.com/wp-content/uploads/2016/03/row-step2.jpg 565w" sizes="(max-width: 300px) 100vw, 300px" /></a></p>
<p><strong>Step 3:</strong></p>
<p>Add boxes to the row for intro and signup form</p>
<p><a href="https://needweb.help/wp-content/uploads/2016/03/add-form.jpg"><img decoding="async" loading="lazy" class="aligncenter wp-image-1195 size-medium" src="https://needweb.help/wp-content/uploads/2016/03/add-form-300x136.jpg" alt="add-form" width="300" height="136" srcset="https://yourlocaltech.com/wp-content/uploads/2016/03/add-form-300x136.jpg 300w, https://yourlocaltech.com/wp-content/uploads/2016/03/add-form-768x348.jpg 768w, https://yourlocaltech.com/wp-content/uploads/2016/03/add-form-1024x464.jpg 1024w, https://yourlocaltech.com/wp-content/uploads/2016/03/add-form.jpg 1580w" sizes="(max-width: 300px) 100vw, 300px" /></a></p>
<p><strong>All done</strong></p>
<p>See example here -&gt; <a href="http://yltdemo.wpengine.com/video-landing-page" target="_blank">Video Landing Page</a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
					
					<wfw:commentRss>https://yourlocaltech.com/blog/2016/04/03/full-video-background-landing-page-with-genesis-beaver-builder/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Filter Genesis Navigation Menu to be 1 level on Home Page Only</title>
		<link>https://yourlocaltech.com/blog/2016/03/30/filter-genesis-navigation-menu-to-be-1-level-on-home-page-only/</link>
					<comments>https://yourlocaltech.com/blog/2016/03/30/filter-genesis-navigation-menu-to-be-1-level-on-home-page-only/#comments</comments>
		
		<dc:creator><![CDATA[Loren Nason]]></dc:creator>
		<pubDate>Wed, 30 Mar 2016 19:37:24 +0000</pubDate>
				<category><![CDATA[Genesis]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">https://needweb.help/?p=1198</guid>

					<description><![CDATA[A friend was asking how to make the Header Navigation on the Genesis theme Altitude Pro only be 1 level on the home page but show all the levels on the interior pages. Here is how I suggested it be done https://gist.github.com/lorennason/b01bb8c9cd2dc999635c0a7169e36f84 The inspiration came from Bill Erickson&#8217;s post on Customizing Menu Arguments. I just&#8230;]]></description>
										<content:encoded><![CDATA[<p>A friend was asking how to make the Header Navigation on the Genesis theme Altitude Pro only be 1 level on the home page but show all the levels on the interior pages.</p>
<p>Here is how I suggested it be done</p>
<p>https://gist.github.com/lorennason/b01bb8c9cd2dc999635c0a7169e36f84</p>
<p>The inspiration came from Bill Erickson&#8217;s post on <a href="http://www.billerickson.net/customizing-menu-arguments/" target="_blank">Customizing Menu Arguments</a>.</p>
<p>I just added an extra statement to apply only when on Front Page</p>
]]></content:encoded>
					
					<wfw:commentRss>https://yourlocaltech.com/blog/2016/03/30/filter-genesis-navigation-menu-to-be-1-level-on-home-page-only/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>I bought a theme and it looks nothing like the demo</title>
		<link>https://yourlocaltech.com/blog/2016/03/28/i-bought-a-theme-and-it-looks-nothing-like-the-demo/</link>
					<comments>https://yourlocaltech.com/blog/2016/03/28/i-bought-a-theme-and-it-looks-nothing-like-the-demo/#respond</comments>
		
		<dc:creator><![CDATA[Loren Nason]]></dc:creator>
		<pubDate>Mon, 28 Mar 2016 23:51:49 +0000</pubDate>
				<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">https://yourlocaltech.com/?p=1181</guid>

					<description><![CDATA[I see this statement pop up from time to time on Facebook and in Facebook groups. I do understand and I feel your pain. Why are people upset? I see this all the time when someone goes and buys a theme or child theme of a framework and then they expect it to magically look&#8230;]]></description>
										<content:encoded><![CDATA[<p>I see this statement pop up from time to time on Facebook and in Facebook groups. I do understand and I feel your pain.</p>
<p><strong>Why are people upset?</strong></p>
<p>I see this all the time when someone goes and buys a theme or child theme of a framework and then they expect it to magically look like the demo. Unfortunately this is not the case. Yes, most themes have a way to import the demo content. This can help with visualization of where stuff goes but now you have all this demo content that you have to replace. This doesn&#8217;t make things faster and I think can sometimes make the process take longer on setting up your site.</p>
<p><strong>Is this there fault?</strong></p>
<p>No, this is not your fault. It&#8217;s also not the fault of the theme developer as well IMO</p>
<p><strong>Is there a solution?</strong></p>
<p>No, not really. The best solution so far is the importing of demo content and then you replace the demo content with your own.</p>
<p><strong>Can anyone help?</strong></p>
<p>Of course I can help.</p>
<p>&nbsp;</p>
]]></content:encoded>
					
					<wfw:commentRss>https://yourlocaltech.com/blog/2016/03/28/i-bought-a-theme-and-it-looks-nothing-like-the-demo/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Notification Box for Old Content</title>
		<link>https://yourlocaltech.com/blog/2016/03/20/notification-box-for-old-content/</link>
					<comments>https://yourlocaltech.com/blog/2016/03/20/notification-box-for-old-content/#respond</comments>
		
		<dc:creator><![CDATA[Loren Nason]]></dc:creator>
		<pubDate>Mon, 21 Mar 2016 03:45:31 +0000</pubDate>
				<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">https://yourlocaltech.com/?p=1182</guid>

					<description><![CDATA[This question came up from Jason Tucker and it will be the topic on WPwatercooler this Monday March 21st at 11am. The question was how to notify your site visitors that they are reading old content. What you shouldn&#8217;t do: Don&#8217;t delete the old content. People are getting to your site from old links but&#8230;]]></description>
										<content:encoded><![CDATA[<p>This question came up from Jason Tucker and it will be the topic on <a href="http://www.wpwatercooler.com/" target="_blank">WPwatercooler</a> this Monday March 21st at 11am. The question was how to notify your site visitors that they are reading old content.</p>
<p><strong>What you shouldn&#8217;t do:</strong></p>
<p>Don&#8217;t delete the old content. People are getting to your site from old links but they are getting there. Don&#8217;t make their life difficult by getting a 404 message.</p>
<p><strong>What you should do:</strong></p>
<p>Notify them they are visiting old content and direct them either to the new content or just direct them to a generic spot to find the &#8220;newer&#8221; info.</p>
<p>I found this plugin by Bill Erickson <a href="https://wordpress.org/plugins/old-post-notification/" target="_blank">Old Post Notification</a>, but I wanted a little more oomph and automation. The plugin only gives you a check box that you have to manually check each post that it&#8217;s &#8220;old&#8221;.</p>
<p>You could use this plugin <a href="https://wordpress.org/plugins/juiz-outdated-post-message/" target="_blank">Juiz Outdated Posts</a> which gives you a settings page to apply a notification to all posts older than X dates.</p>
<p>Create a custom function that then puts the notification anywhere you want it. See below for this method.</p>
<p><strong>How to setup a notification box:</strong></p>
<p>First I found this post that creates a function that can filter posts based on how old the post is back x amount of days.<br />
<a href="http://www.oxhow.com/display-ads-only-on-older-posts-wordpress-blog/">Display Ads only on Older Posts</a></p>
<p>Then I created this snippet of code in my functions.php</p>
<p>https://gist.github.com/lorennason/5e9a0ceafbd7883ddf41</p>
<p>See example here -&gt; <a href="https://yourlocaltech.com/blog/2012/12/31/automatic-featured-images-from-video/" target="_blank">Old Post</a></p>
<p><strong>Conclusion:</strong></p>
<p>I like the Juiz Plugin. It&#8217;s simple and it will work for many people.</p>
<p>I like the custom code solution as it makes it easier to place anywhere in your site. Maybe even make a Pop Up notification?</p>
<p>&nbsp;</p>
]]></content:encoded>
					
					<wfw:commentRss>https://yourlocaltech.com/blog/2016/03/20/notification-box-for-old-content/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Choosing a Plugin is only half the solution</title>
		<link>https://yourlocaltech.com/blog/2016/03/17/choosing-a-plugin-is-only-half-the-solution/</link>
					<comments>https://yourlocaltech.com/blog/2016/03/17/choosing-a-plugin-is-only-half-the-solution/#respond</comments>
		
		<dc:creator><![CDATA[Loren Nason]]></dc:creator>
		<pubDate>Thu, 17 Mar 2016 23:23:40 +0000</pubDate>
				<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">https://yourlocaltech.com/?p=1174</guid>

					<description><![CDATA[You&#8217;ve asked your friends. You&#8217;ve asked your networking groups. You even made a sacrifice to the techno gods to get the answer you need and no you have chose to buy Plugin X to because it will do &#8220;things&#8221;. Now you have bought (or a free one), installed and activated your plugin. Now the magic&#8230;]]></description>
										<content:encoded><![CDATA[<p>You&#8217;ve asked your friends. You&#8217;ve asked your networking groups. You even made a sacrifice to the techno gods to get the answer you need and no you have chose to buy Plugin X to because it will do &#8220;things&#8221;.</p>
<p>Now you have bought (or a free one), installed and activated your plugin. Now the magic happens right?</p>
<div id="attachment_1178" style="width: 310px" class="wp-caption aligncenter"><img aria-describedby="caption-attachment-1178" decoding="async" loading="lazy" class="wp-image-1178 size-medium" src="https://yourlocaltech.com/wp-content/uploads/2016/03/half-phone-300x199.jpg" alt="Half Built" width="300" height="199" srcset="https://yourlocaltech.com/wp-content/uploads/2016/03/half-phone-300x199.jpg 300w, https://yourlocaltech.com/wp-content/uploads/2016/03/half-phone-768x509.jpg 768w, https://yourlocaltech.com/wp-content/uploads/2016/03/half-phone.jpg 1024w" sizes="(max-width: 300px) 100vw, 300px" /><p id="caption-attachment-1178" class="wp-caption-text">Half Built</p></div>
<p>Unfortunately no. Nothing happens when you install the plugin. It won&#8217;t magically bring you  1000&#8217;s signups to your email list. You won&#8217;t start generating $10k in sales every hour. It will do nothing because you haven&#8217;t done anything to make it work.</p>
<p><strong>What do you do then?</strong></p>
<div id="attachment_1179" style="width: 251px" class="wp-caption alignright"><img aria-describedby="caption-attachment-1179" decoding="async" loading="lazy" class="size-medium wp-image-1179" src="https://yourlocaltech.com/wp-content/uploads/2016/03/dive-in-241x300.jpg" alt="Dive In" width="241" height="300" srcset="https://yourlocaltech.com/wp-content/uploads/2016/03/dive-in-241x300.jpg 241w, https://yourlocaltech.com/wp-content/uploads/2016/03/dive-in-768x957.jpg 768w, https://yourlocaltech.com/wp-content/uploads/2016/03/dive-in-822x1024.jpg 822w, https://yourlocaltech.com/wp-content/uploads/2016/03/dive-in.jpg 1024w" sizes="(max-width: 241px) 100vw, 241px" /><p id="caption-attachment-1179" class="wp-caption-text">Dive In</p></div>
<p>There is no way around it. You have to dive right in a learn how to use the plugin and make it perform to your will. Start with tutorials put out by the plugin maker. Then look for blog posts of others using the same plugin and see what they do.</p>
<p><strong>Are you stuck and still can&#8217;t get the plugin to work?</strong></p>
<p>This is where I come in where I can setup the plugin and even manage/change/improve the plugin for you on a one time or monthly basis.</p>
<p>The process of learning and using a plugin to it&#8217;s fullest is not a quick process for everyone.</p>
<p>Some plugins might only take a little bit of time because you don&#8217;t need it to do much except 1 small thing. If you get into the email marketing / pop up plugin / &#8220;do something fancy&#8221; plugin then you could be looking at a couple hours or so.</p>
<p>The time that has to be spent is not because the plugin is hard. The time is to fine tune the plugin to look and do what you want. Some plugins you could end up tweaking changing on a monthly or bi-monthly basis. I can help you with this. Need help?</p>
<p><a class="button" href="/contact">Ask Me How</a></p>
<p>&nbsp;</p>
]]></content:encoded>
					
					<wfw:commentRss>https://yourlocaltech.com/blog/2016/03/17/choosing-a-plugin-is-only-half-the-solution/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
