<?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>JEO Webmaster Services</title>
	<atom:link href="https://jeowebmasterservices.com/newsite/feed/" rel="self" type="application/rss+xml" />
	<link>http://jeowebmasterservices.com/newsite/</link>
	<description>One-Stop Shop for all your webmaster needs</description>
	<lastBuildDate>Fri, 15 Jan 2021 00:42:29 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.7.7</generator>

<image>
	<url>https://jeowebmasterservices.com/newsite/wp-content/uploads/2017/02/cropped-JEO-closeup-eye-drybrushBlueEye-32x32.jpg</url>
	<title>JEO Webmaster Services</title>
	<link>http://jeowebmasterservices.com/newsite/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>What the heck is a &#8220;shortcode&#8221;?</title>
		<link>https://jeowebmasterservices.com/newsite/what-is-shortcode-tutorial/</link>
		
		<dc:creator><![CDATA[john.erik]]></dc:creator>
		<pubDate>Fri, 04 May 2018 12:08:13 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">http://jeowebmasterservices.com/newsite/?p=603</guid>

					<description><![CDATA[<p>Have you ever wanted to add a special feature or change some layout or just customize the way your WordPress website displays to your visitors? Then you will love learning about &#8220;shortcodes&#8221;. Introduced in WordPress from 2.5 onward, they are &#8220;macro codes&#8221; you can place within your content &#8211; in the main content, in sidebars [&#8230;]</p>
<p>The post <a href="https://jeowebmasterservices.com/newsite/what-is-shortcode-tutorial/">What the heck is a &#8220;shortcode&#8221;?</a> appeared first on <a href="https://jeowebmasterservices.com/newsite">JEO Webmaster Services</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Have you ever wanted to add a special feature or change some layout or just customize the way your WordPress website displays to your visitors? Then you will love learning about &#8220;shortcodes&#8221;.</p>
<p>Introduced in WordPress from 2.5 onward, they are &#8220;macro codes&#8221; you can place within your content &#8211; in the main content, in sidebars and widgets, where ever you need just a bit of customization to help your site stand out from all the others who are using a similar theme. This can be a great way to create a reusable dynamic ad spot or a call-to-action button in your posts.</p>
<p>Examples of custom shortcodes I&#8217;ve developed for my clients include simple &#8220;call to action&#8221; buttons and a custom module that grabs the 10 next performances from a musician performances database and then display those in a unique way on the artist&#8217;s home page.</p>
<p>Since shortcodes enhance the core functionality of the WordPress software, one has to know a bit about the internal file stucture of a WordPress site. Since your theme&#8217;s &#8220;functions.php&#8221; file will require a little adjustment, this brings up the issue of &#8220;where the heck to I place my shortcode code&#8221; such that it survives a software update to your theme or core WordPress itself. We&#8217;ll get to that in a minute.</p>
<p>If we use the call-to-action example, you could add something like this to your blogpost to show the button, and then edit the output in your templates functions.php file, which we’ll get to in a minute.</p>
<pre class="prettyprint">[button]</pre>
<p>To customize the button, we could simply add something like:</p>
<pre class="prettyprint">[button type="twitter"]</pre>
<p>Or to make it even better, we could use an enclosing shortcode:</p>
<pre class="prettyprint">[button type="twitter"]Follow me on Twitter![/button]</pre>
<p>With some imagination, you soon realize the potential of shortcodes, and what can be done with them. In this article, I’ll show you how to create and use these three different types of shortcodes, and then I’ll show off some ready-to-use shortcodes to use on your own WordPress site.</p>
<h2>Creating a self-closing shortcode</h2>
<p>The simplest shortcode is the self-closing one. We’re going to create a simple link to our Twitter account, and then add it in a blog post.</p>
<p>All the code goes in <strong>functions.php</strong>, which is located in <strong>/wp-content/themes/your-theme/</strong>. If you don’t have one, just create it and put the code in it.</p>
<pre class="prettyprint">&lt;?php 
function button_shortcode() {
    return '&lt;a href="http://twitter.com/filipstefansson" class="twitter-button"&gt;Follow me on Twitter!&lt;/a&gt;"';
}
add_shortcode('button', 'button_shortcode'); 
?&gt;</pre>
<p>Usage:</p>
<blockquote class="wp-embedded-content" data-secret="tHt4MxEruZ"><p><a href="https://speckyboy.com/getting-started-with-wordpress-shortcodes-examples/">Getting Started with WordPress Shortcodes &#038; Sample Snippets</a></p></blockquote>
<p><iframe class="wp-embedded-content" sandbox="allow-scripts" security="restricted"  title="&#8220;Getting Started with WordPress Shortcodes &#038; Sample Snippets&#8221; &#8212; Speckyboy Design Magazine" src="https://speckyboy.com/getting-started-with-wordpress-shortcodes-examples/embed/#?secret=tHt4MxEruZ" data-secret="tHt4MxEruZ" width="600" height="338" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe></p>
<p>https://cpothemes.com/using-wordpress-shortcodes<br />
Separating The Content Into Columns<br />
The most basic usage of shortcodes for layout is to create multiple columns. Separating the content into distinguishable blocks will make your content look more organized, and you can take advantage of this to add images or other media. As you work with columns, you will begin to see all the possibilities that open up– certain layouts are simply not doable without a column-based design. It is recommended you use from 2 to 4 columns, as it is a good balance between the number of content blocks and the available space of each block.</p>
<p>The post <a href="https://jeowebmasterservices.com/newsite/what-is-shortcode-tutorial/">What the heck is a &#8220;shortcode&#8221;?</a> appeared first on <a href="https://jeowebmasterservices.com/newsite">JEO Webmaster Services</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>What is &#8220;WordPress&#8221; and What Does &#8220;CMS&#8221; Mean?</title>
		<link>https://jeowebmasterservices.com/newsite/what-is-wordpress-cms/</link>
					<comments>https://jeowebmasterservices.com/newsite/what-is-wordpress-cms/#respond</comments>
		
		<dc:creator><![CDATA[john.erik]]></dc:creator>
		<pubDate>Sat, 06 May 2017 15:34:01 +0000</pubDate>
				<category><![CDATA[HTML, CSS]]></category>
		<category><![CDATA[Javascript, Jquery, AJAX, REST API]]></category>
		<category><![CDATA[PHP, mySQL]]></category>
		<category><![CDATA[Web design, development]]></category>
		<category><![CDATA[Wordpress, CMS Software]]></category>
		<category><![CDATA[x Technology]]></category>
		<guid isPermaLink="false">http://jeowebmasterservices.com/newsite/?p=338</guid>

					<description><![CDATA[<p>WordPress was originally created as a Blogging software. As more people started to use it, it became expanded such that it could create entire websites with static and other custom pages &#8211; not just blogs and posts. Although not originally designed as a true, traditional CMS (content management system), it nonetheless can now be used [&#8230;]</p>
<p>The post <a href="https://jeowebmasterservices.com/newsite/what-is-wordpress-cms/">What is &#8220;WordPress&#8221; and What Does &#8220;CMS&#8221; Mean?</a> appeared first on <a href="https://jeowebmasterservices.com/newsite">JEO Webmaster Services</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>WordPress was originally created as a Blogging software. As more people started to use it, it became expanded such that it could create entire websites with static and other custom pages &#8211; not just blogs and posts. Although not originally designed as a true, traditional CMS (content management system), it nonetheless can now be used that way.</p>
<p>Other CMS systems like Drupal and Joomla are credited with having a more powerful, customizable underlying &#8220;taxonomy&#8221; structuring capability that make them powerful content management systems. However the complexity and sophistication required to understand and design a complicated content system website is too much for most website owners and WordPress is a perfectly fine and powerful alternative for most websites. On the other hand, Drupal and Joomla can also be used to make fairly simple sites.</p>
<p>WordPress is &#8220;Open Source&#8221; software. This means it is developed by a community of thousands of volunteers from around the world. Nearly 500 people worked on <a href="https://wordpress.org/news/2016/12/vaughan/" target="_blank">WordPress 4.7</a> (named &#8220;Vaughan&#8221; in honor of legendary jazz vocalist Sarah &#8220;Sassy&#8221; Vaughan, was released in December 2016), including about 200 &#8220;first time&#8221; WordPress coders.</p>
<h2>How WordPress Works</h2>
<blockquote class="myPullQuoteRt"><p>WordPress is arguably<br />
the most used website<br />
development software<br />
on the internet.</p></blockquote>
<p>In CMS systems, all content or references to media, etc are stored in a database on your server and each time someone &#8220;visits your page&#8221;, first the server on which your site is hosted has to make many, many queries to the database to gather the various elements that make up that individual page and assemble an HTML document. This resultant document is downloaded to your personal web browser which &#8220;renders&#8221; the beautiful web page you expect to see.</p>
<p>Since its inception, WordPress has now become arguably the most used website development platform on the web.</p>
<p>It is comprised of three major components:</p>
<h4>The core</h4>
<p>The core software code contains all the default functionality that makes up the WordPress content management system. This includes everything one can do from the admin backend. This includes functions such as creating pages and posts, interacting with the database, allowing the creation of Users and checking password strength,  etc. The core is like the engine of your car &#8211; it makes this work and allows the car to run.</p>
<h4>Themes</h4>
<blockquote class="myPullQuoteLt"><p>1000&#8217;s of &#8220;themes&#8221; and<br />
&#8220;plugins&#8221; allow you to<br />
customize look, feel and<br />
functionality of the core.</p></blockquote>
<p>While the core is responsible for the backend of a website and how it operates. Themes are responsible for the front-end and how a website looks and feels. The WordPress admin area is used to create posts, pages, and other site content, but exactly how our posts and pages are displayed to visitors is up to the theme. This gives you amazing power over your website&#8217;s appearance. </p>
<p>One can find literally thousands of free and premium pre-built themes to install and activate, or one can &#8220;break out of the box&#8221; completely and create unique, custom designs. The sky (and your imagination) is literally the limit</p>
<h4>Plugins</h4>
<p>Plugins are like servants or drones, basically dutiful workers that provide additional functionality to WordPress that may be missing or limited in the core software. To do its job, a plugin may modify the backend and/or the front-end of a website.</p>
<p>A plugin that adds a Tweet button for Twitter is a good example. It would probably create a new settings page in the backend admin menu where you could set up some default options for a user’s tweet and it would also add a tweet button to the front-end of a website, most likely displaying under a post.</p>
<p>Photo gallery plugins are another great example. They provide a way of creating extensive photo albums and galleries and even slide shows of your images and provide a plethora of settings that determine every thing from border and background colors for you pictures, to transition times and effects in your slideshow.</p>
<h3>Help! My Site Just Got Hacked!</h3>
<blockquote class="myPullQuoteRt"><p>Hackers are constantly<br />
looking for ways to<br />
exploit your website.</p></blockquote>
<p>Unfortunately, some plugins are old, possibly created by software programmers who took shortcuts, may have been using non-standard coding &#8220;best practices&#8221; and may no longer have active support and development. This can be a huge problem for your site, as hackers are constantly looking for ways into your site to exploit server resources, send out spam email or even masquerade sections of your site to mimic porn or even reputable, well know websites like PayPal or your bank! The results run the gambit from pesky junk main from your website using up server resources, to your entire site breaking and no longer working.</p>
<p>WordPress is constantly releasing new versions of its core software that either plug freshly identified vulnerabilities, or add entirely new functionality. If your plugins do not keep up with the changes, your site can break. This can be a hassle, scary and even cost you money and search engine ranking, if your site is down and unavailable for a period of time.</p>
<blockquote class="myPullQuoteLt"><p>Back up and Update<br />
regularly &#8211; or you<br />
<em>WILL</em> get hacked!.</p></blockquote>
<p>So what to do? First, make regular backups of your site. Then when new updates are available, systematically update your plugins first, checking your site after each update to make sure it still works, then update your core. If the site breaks, you can restore from your last good backup, then turn off all plugins and step by step turn on and update each plugin till you find the one that is causing the trouble.</p>
<p>When you find the culprit, you may need to find a replacement plugin that does a similar job or contact the plugin maker to inquire about the problem.</p>
<p>When you are searching for plugins to perform a specific tasks, remember to check the user reviews and comments associated with them. The info section will also tell you when it was last updated and it&#8217;s level of probably compatibility with the version of WordPress core you intend to use.</p>
<p>Bottom line? Spend some time researching your plugins first. Make sure they do what you need them to do without a lot of extra bells and whistles you may never use, then have a regular backup and maintenance plan in place. If you let your site go for months or years with no attention, it WILL get hacked! Like a garden left unattended, it will grow weeds that may eventually choke out your beautiful vegetables and flowers.</p>
<h3>Stay Relevant and &#8220;Fresh&#8221; &#8211; Engage in Conversation</h3>
<blockquote class="myPullQuoteRt"><p>Your website<br />
is like a garden.<br />
Will yours grow weeds<br />
or flowers?</p></blockquote>
<p>One needs to develop a relationship with their website to keep it fresh, vibrant and relative to your visitors. Spending a little time each month in the backend, reviewing your website Analytics and updating your Blog or responding to Visitor comments are a great ways to get to know your site and become confident you can manage it.</p>
<p>Google likes to see activity on your site and will reward you with a boost in your search engine ranking. Your Visitors also want to know there is somebody home, that it&#8217;s not just an other signpost or billboard on the internet highway. Think of your website as being an &#8220;Avatar&#8221; for you and your company. What is the &#8220;persona&#8221; with which you will interact with your visitors? How can you keep that persona fresh and engaging, such that people feel trust in you and your site and perceive you as an authority in your niche?</p>
<p>So it&#8217;s up to you. Will your website be like Cinderella, relegated to some dusty corner, or will it be a vibrant extension of your personality and message, interacting with the world wide web of visitors which may find your site?</p>
<hr />
<h3>Let&#8217;s Get Technical</h3>
<p>Still with me? Cool. Then let&#8217;s go deeper into what powers WordPress (and other web development platforms) when you and your developer &#8220;open the hood&#8221;&#8230;</p>
<h3>PHP, MySQL, Javascript/Jquery, AJAX, HTML and CSS! Oh my!</h3>
<blockquote class="myPullQuoteLt"><p>Build on a core of HTML<br />
and CSS, the real power<br />
&#8220;behind the curtain&#8221; is<br />
PHP, mySQL, javascript&#8230;</p></blockquote>
<p>As mentioned, data that is required to represent the various pieces and elements of your webpages are first retrieved from the database on the server, using a server programming language called <a href="http://php.net/" target="_blank">PHP</a> (an immensely popular server-side scripting language, used in over 80% of all websites) and &#8220;<a href="https://dev.mysql.com/" target="_blank">structured mySQL queries</a>&#8220;, then assembled into structured <a href="https://www.w3schools.com/html/" target="_blank">HTML</a> and styled with definitions in <a href="https://www.w3schools.com/css/" target="_blank">CSS</a> (cascading styles sheets). &#8220;LESS&#8221; and/or &#8220;SASS&#8221; are supersets of CSS, which means that all valid CSS code is valid LESS and SASS code. What both of these extensions to CSS add is the ability to use variables, functions, and other constructs in CSS, which adds a whole world of dynamic possibilities.</p>
<p>The role of JavaScript on the web is ever-increasing, especially with new JavaScript-based tools like Node and Angular. Javascript is a &#8220;browser-based&#8221; programming language which means it runs in your own browser &#8211; not on the server. It is typically used to add dynamic functionality to websites and for asynchronous loading of content, based on triggers from user interaction or timers running in the background. </p>
<p>The extremely popular jQuery framework is basically built on Javascript. It is used extensively in WordPress and in millions of projects on the web. It provides both CSS styles and dynamic functionality. Perhaps you wish for a webform to be completely hidden, but fade-in inside a lightbox when the user clicks on a button. Maybe you wish to do validation checks on form fields before its content is sent to the processing script on the server &#8211; javascript/jquery are well adapted and popular solutions for such browser-based tasks.</p>
<p>Asynchronous loading is done via the mechanism called AJAX. AJAX can be used to retrieve information from the server and then display it without requiring that the page be reloadede. A good example is endless scrolling where the first 10 posts are loaded and when you get close to the bottom of the page the next 10 posts are retrieved and appended to the currently displayed set.</p>
<h3>REST API</h3>
<p>The REST API allows one to create true web applications based on WordPress. This includes iPhone and Android apps exotic things like TV apps, but these require knowledge of some other server-based programming languages.</p>
<blockquote class="myPullQuoteRt"><p>Build powerful<br />
multi-platform apps<br />
with REST API.</p></blockquote>
<p>To explain what REST API is and is capable of, let&#8217;s consider Twitter or Instagram &#8211; you have probably seen someone’s Twitter or instagram feed displayed on their website. (See <a href="http://cassclayton.com/" target="_blank" title="Cass Clayton Colorado Blues Singer | great example of FB, twitter and Instagram feeds">CassClayton.com</a>, for example.) </p>
<p>To implement this feature to your own site, you don’t need to know how Twitter’s core code works, all you need is a bit of code that says: &#8220;please retrieve my latest five tweets&#8221;. Twitter handles the actual retrieval, sending back the data of your requested five tweets. Then, simply use HTML and CSS to format and display that data in a way that suits your site&#8217;s design and layout.</p>
<p>It is the REST API that does this for WordPress. You can connect to any website and ask it for your latest five posts. But wait, there&#8217;s more! With this connection, you have amazing control over your accounts on these Social platforms &#8211; you can delete users, create new users, edit categories and more. It is required, of course, to first &#8220;login&#8221; and authenticate yourself before performing these sorts of functions. </p>
<p>So why is this useful? Among other things, this means you can use WordPress as a repository of information and build front-end and/or the backend using an entirely different system. The power inherent in this cross-platform capability may be a little hard to grasp, but the flexibility available to you via WordPress takes a leap in sophistication and possibility, using the REST API.</p>
<p>The post <a href="https://jeowebmasterservices.com/newsite/what-is-wordpress-cms/">What is &#8220;WordPress&#8221; and What Does &#8220;CMS&#8221; Mean?</a> appeared first on <a href="https://jeowebmasterservices.com/newsite">JEO Webmaster Services</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://jeowebmasterservices.com/newsite/what-is-wordpress-cms/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Business Coaching Services</title>
		<link>https://jeowebmasterservices.com/newsite/techno-business-coaching/</link>
		
		<dc:creator><![CDATA[john.erik]]></dc:creator>
		<pubDate>Sat, 06 May 2017 04:09:51 +0000</pubDate>
				<category><![CDATA[Client Tech Support]]></category>
		<category><![CDATA[Computor Tutor, Coach]]></category>
		<guid isPermaLink="false">http://jeowebmasterservices.com/newsite/?p=334</guid>

					<description><![CDATA[<p>Need an ally and consultant who can speak both technology and human? Considering launching an internet marketing plan and need help understanding what, how and where? Deciding to build and launch a website or web based business can seem like a daunting task. All those plugins and themes and software and server hosting packages to [&#8230;]</p>
<p>The post <a href="https://jeowebmasterservices.com/newsite/techno-business-coaching/">Business Coaching Services</a> appeared first on <a href="https://jeowebmasterservices.com/newsite">JEO Webmaster Services</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Need an ally and consultant who can speak both technology and human? Considering launching an internet marketing plan and need help understanding what, how and where?</p>
<p>Deciding to build and launch a website or web based business can seem like a daunting task. All those plugins and themes and software and server hosting packages to choose from. Will you &#8220;self-host&#8221; a WordPress site or get one of those &#8220;free blogs&#8221; at WordPress.com, Weebly or Wix? What about Squarespace &#8211; that seems to be getting a lot of attention these days. Then there are cheap &#8220;shared hosting&#8221; plans, dedicated and VPS packages, &#8220;managed webhosting&#8221;,&#8230;</p>
<p>Remember &#8211; there is no such thing as &#8220;free&#8221;. When you sign up for a free blog, you immediately see the limitations &#8211; from limited functionality and theme choices, to having to live with advertising from some other company. You will be informed that in order to have your own, personal domain name associated with your site, you will have to pay for the &#8220;enhanced&#8221; package.</p>
<p><img decoding="async" class="myLeftFloatImg alignnone wp-image-419 size-thumbnail" src="http://jeowebmasterservices.com/newsite/wp-content/uploads/2018/02/mountain-view-BG-kalen-emsley-99659-150x150.jpg" alt="beautiful mountain view, 2 people imaging" width="150" height="150" srcset="https://jeowebmasterservices.com/newsite/wp-content/uploads/2018/02/mountain-view-BG-kalen-emsley-99659-150x150.jpg 150w, https://jeowebmasterservices.com/newsite/wp-content/uploads/2018/02/mountain-view-BG-kalen-emsley-99659-300x300.jpg 300w, https://jeowebmasterservices.com/newsite/wp-content/uploads/2018/02/mountain-view-BG-kalen-emsley-99659-768x768.jpg 768w, https://jeowebmasterservices.com/newsite/wp-content/uploads/2018/02/mountain-view-BG-kalen-emsley-99659-1024x1024.jpg 1024w, https://jeowebmasterservices.com/newsite/wp-content/uploads/2018/02/mountain-view-BG-kalen-emsley-99659-750x750.jpg 750w, https://jeowebmasterservices.com/newsite/wp-content/uploads/2018/02/mountain-view-BG-kalen-emsley-99659.jpg 1366w" sizes="(max-width: 150px) 100vw, 150px" />We can help you brainstorm what you wish to accomplish by having a website and explain what avenues make sense for your needs, future growth and budget. We will hold your hand as we walk together through the myriad of things that need to be considered before you can make an informed choice.</p>
<h3>Personal Business Coaching</h3>
<p>We will talk with you and provide various &#8220;client tools&#8221; with which you can discover the &#8220;unique voice and persona&#8221; you wish to portray on the web and your ISP (Unique Selling Proposition). After accomplishing these important first steps, we can then create the specifications and requirements lists that will determine just what sort of website and functionality will best suit your intent and desires.</p>
<p>John-EriK&#8217;s training in NLP provides an excellent basis from which to listen well to what you are trying to accomplish. This, combined with an extensive background in computer programming, web hosting, webmaster services and various online marketing and search engine marketing technologies, make him a unique and talented ally to have in your corner for all your various webmaster needs.</p>
<p><img decoding="async" class="size-medium wp-image-10 aligncenter" style="clear: both;" src="http://jeowebmasterservices.com/newsite/wp-content/uploads/2017/02/old-SEO-wood_boards-1400B-300x126.jpg" alt="JEO Webmaster SEO Tools board bg" width="300" height="126" srcset="https://jeowebmasterservices.com/newsite/wp-content/uploads/2017/02/old-SEO-wood_boards-1400B-300x126.jpg 300w, https://jeowebmasterservices.com/newsite/wp-content/uploads/2017/02/old-SEO-wood_boards-1400B-768x321.jpg 768w, https://jeowebmasterservices.com/newsite/wp-content/uploads/2017/02/old-SEO-wood_boards-1400B-1024x429.jpg 1024w, https://jeowebmasterservices.com/newsite/wp-content/uploads/2017/02/old-SEO-wood_boards-1400B.jpg 1400w" sizes="(max-width: 300px) 100vw, 300px" /></p>
<p>The post <a href="https://jeowebmasterservices.com/newsite/techno-business-coaching/">Business Coaching Services</a> appeared first on <a href="https://jeowebmasterservices.com/newsite">JEO Webmaster Services</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>New, Redesigned Websites</title>
		<link>https://jeowebmasterservices.com/newsite/new-redesigned-websites/</link>
					<comments>https://jeowebmasterservices.com/newsite/new-redesigned-websites/#respond</comments>
		
		<dc:creator><![CDATA[john.erik]]></dc:creator>
		<pubDate>Sat, 06 May 2017 04:04:02 +0000</pubDate>
				<category><![CDATA[Computor Tutor, Coach]]></category>
		<category><![CDATA[How to improve sales]]></category>
		<category><![CDATA[Web design, development]]></category>
		<category><![CDATA[Web marketing research tools]]></category>
		<category><![CDATA[Writing effective page copy]]></category>
		<guid isPermaLink="false">http://jeowebmasterservices.com/newsite/?p=330</guid>

					<description><![CDATA[<p>Ready for a New website or to Re-design your old one? Do you have a new idea to promote or outdated site that needs help? Are you mobile-friendly? Do you know who your ideal web visitor/client/customer is and how best to engage in conversation with them? Analytics to see what has happened in the past, [&#8230;]</p>
<p>The post <a href="https://jeowebmasterservices.com/newsite/new-redesigned-websites/">New, Redesigned Websites</a> appeared first on <a href="https://jeowebmasterservices.com/newsite">JEO Webmaster Services</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h2>Ready for a New website or to Re-design your old one?</h2>
<p>Do you have a new idea to promote or outdated site that needs help? Are you mobile-friendly? Do you know who your ideal web visitor/client/customer is and how best to engage in conversation with them?</p>
<p>Analytics to see what has happened in the past, and what changes there are in the future after our website fine-tuning or redesign.</p>
<h3>Having your own domain name and “self-hosted” website will give you control over your own online presence.</h3>
<p>Unlike your Twitter account, Facebook or even a wordpress.com blog, with your own site you will completely own your content. You can post what you like and will be able to export it at any time, should you wish to move to a different server hosting company. But with power comes responcibility.</p>
<p>Social and “free” blog platforms actually “own” your content (remember to read the fine print!) and can use it as they see fit. Remember if it&#8217;s free online &#8211; then you are the product. Selling your information and usage data to interested third parties, or even banning you and taking down your material if your freedom of expression does not match their increasingly agenda-driven rules and regulations.</p>
<p>The post <a href="https://jeowebmasterservices.com/newsite/new-redesigned-websites/">New, Redesigned Websites</a> appeared first on <a href="https://jeowebmasterservices.com/newsite">JEO Webmaster Services</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://jeowebmasterservices.com/newsite/new-redesigned-websites/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>What do you expect to see and experience when you visit a webpage?</title>
		<link>https://jeowebmasterservices.com/newsite/webpage-speed-optimization-seo-web-analytics/</link>
		
		<dc:creator><![CDATA[john.erik]]></dc:creator>
		<pubDate>Thu, 04 May 2017 01:30:49 +0000</pubDate>
				<category><![CDATA[Improving search ranking]]></category>
		<category><![CDATA[Leverage google analytics]]></category>
		<category><![CDATA[Web marketing research tools]]></category>
		<category><![CDATA[download speed optimization]]></category>
		<category><![CDATA[improve webpage performance]]></category>
		<category><![CDATA[webpage download speed]]></category>
		<guid isPermaLink="false">http://jeowebmasterservices.com/newsite/?p=164</guid>

					<description><![CDATA[<p>Give your visitors what you would appreciate experiencing yourself. Give consideration and value and receive a return. Reciprocity builds community and trust. Trust and &#8220;authority&#8221; are two things that give people comfort when scanning a webpage. What is your online &#8220;persona&#8221; and how does it speak your message to your intended audience? How to establish [&#8230;]</p>
<p>The post <a href="https://jeowebmasterservices.com/newsite/webpage-speed-optimization-seo-web-analytics/">What do you expect to see and experience when you visit a webpage?</a> appeared first on <a href="https://jeowebmasterservices.com/newsite">JEO Webmaster Services</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Give your visitors what you would appreciate experiencing yourself. Give consideration and value and receive a return. Reciprocity builds community and trust. Trust and &#8220;authority&#8221; are two things that give people comfort when scanning a webpage.</p>
<p>What is your online &#8220;persona&#8221; and how does it speak your message to your intended audience?</p>
<blockquote class="myPullQuoteRt"><p>How to establish<br />
Trust and Authority?</p></blockquote>
<p><strong>For what sorts of problems will your products and services offer help and remedy?</strong> What of the visitor&#8217;s needs and issues will your offerings be solutions? How will their lives be made better by contracting with you?</p>
<h3>Webpage Speed Optimization, SEO, Web Analytics</h3>
<p>Your pages should load as quickly as possible, look good and be easy to navigate on phones. They should be represented compellingly and cleverly on search engine results pages, for your most important keywords. They should talk interestingly about topics the visitor finds interesting and relevant to their lives, desires and available time.</p>
<p>When you can hook your products and service solutions into current events &#8220;news&#8221;, you can hook into emotional trends and hot spots and people make purchase decisions based on emotion at least as much as on logic. (As was <a href="https://www.forbes.com/sites/gregorymcneal/2014/06/28/facebook-manipulated-user-news-feeds-to-create-emotional-contagion/#51592aaf39dc" target="_blank" rel="noopener">published in Forbes article</a> about <a href="https://www.technologyreview.com/s/528706/facebooks-emotional-manipulation-study-is-just-the-latest-effort-to-prod-users/" target="_blank" rel="noopener">Facebook manipulation of timelines and feeds</a>&#8230;)</p>
<h3>Caching and site speed.</h3>
<p>Your server may have special &#8220;caching&#8221; available or you may have a &#8220;cache plugin&#8221; installed on your WordPress site.</p>
<blockquote class="myPullQuoteLt"><p>Without caching,<br />
your site seems to<br />
take forever to load!</p></blockquote>
<p>Caches are a technique to get sites to appear to load more quickly as they take stuff that is supposed to be fairly static and serve to the person’s web browser the cached version instead of, having site tell the server retrieve all the little bits and pieces required to construct the page from the database, assemble that into HTML and send that down to the person’s browser.</p>
<p>Then again on the person’s browser, there are cache settings there also. Basically one sets up some code that tells the browser how &#8220;fresh&#8221; the actual webpage is and if it’s within a reasonable time, to just use whatever the Browser has stored in its memory (from visiting the page in the past) instead of requiring a fresh download from the server. Without caching, your site seems to take forever to load!</p>
<h3>Why bother looking at Google Analytics and what is it anyway?</h3>
<p>You can&#8217;t determine the success of something you don&#8217;t measure. Hence the importance of Web Analytics. Google makes it so easy to install tracking code on all your site pages and as long as you don&#8217;t mind giving web visitor data to Big Brother&#8217;s servers, you have a free and powerful way to analyze monthly visitor trends and patterns.</p>
<blockquote class="myPullQuoteRt"><p>You can’t determine the<br />
success of something<br />
you don’t measure</p></blockquote>
<p>Knowing how to evaluate and navigate through the hundreds of &#8220;views into your data&#8221; available with any good web analytics program can reap you rewards of insights. These can serve as confirmation of both challenges and opportunities available for fine-tuning and adjusting on your website pages.</p>
<p><strong>If you can define at least three business questions, Google Analytics can provide dozens of actionable insights</strong> &#8211; if you know where and how to look. Comparing standard metrics in current and past months can provide fruitful information that can help you spot trends and take advantage of timely current events and issues.</p>
<p>Befriending Analytics and active involvement with your site content (and any relevant conversations), You can organically grow, in Google&#8217;s eyes, your site&#8217;s relevance as a topically important and authoritative reference for Google&#8217;s main customers &#8211; those who consume web content suggested by its search results pages. Paying attention to this will get you noticed by Google and if getting more web traffic is a goal, noticed by Google can be a good thing!</p>
<p>(And remember, there exists Life outside of Google. What unique and golden opportunities are there for you because your competition may have focused solely on Google?)</p>
<div class="mySignupLink" style="text-align: center; font-size: 1.8em;">
<div class="pl-btn-wrap pl-alignment-default-center"><a class="pl-btn pl-btn-info pl-btn-lg" href="./contact-us/">Ready to Contact Us Now?</a></div>
</div>
<hr id="logistics" style="color: white;" />
<p>The post <a href="https://jeowebmasterservices.com/newsite/webpage-speed-optimization-seo-web-analytics/">What do you expect to see and experience when you visit a webpage?</a> appeared first on <a href="https://jeowebmasterservices.com/newsite">JEO Webmaster Services</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>How to Write Effective Sales Copy &#124; A.I.D.A. Model</title>
		<link>https://jeowebmasterservices.com/newsite/how-write-effective-sales-copy-aida/</link>
					<comments>https://jeowebmasterservices.com/newsite/how-write-effective-sales-copy-aida/#respond</comments>
		
		<dc:creator><![CDATA[john.erik]]></dc:creator>
		<pubDate>Sun, 05 Feb 2017 15:32:36 +0000</pubDate>
				<category><![CDATA[How to improve sales]]></category>
		<category><![CDATA[Writing effective page copy]]></category>
		<category><![CDATA[AIDA formula]]></category>
		<guid isPermaLink="false">http://jeowebmasterservices.com/newsite/?p=98</guid>

					<description><![CDATA[<p>A.I.D.A. In order to have copy that engages people to take action on your product or service offer, here is an effective system: Attention &#8211; get the reader&#8217;s attention with a magnetic headline. Interest &#8211; Connect with their problem or &#8220;pain point&#8221;, make it relevant to them. Desire &#8211; make them &#8220;feel the transformation&#8221;. How [&#8230;]</p>
<p>The post <a href="https://jeowebmasterservices.com/newsite/how-write-effective-sales-copy-aida/">How to Write Effective Sales Copy | A.I.D.A. Model</a> appeared first on <a href="https://jeowebmasterservices.com/newsite">JEO Webmaster Services</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h2>A.I.D.A.</h2>
<p>In order to have copy that engages people to take action on your product or service offer, here is an effective system:</p>
<ul>
<li><strong>Attention</strong> &#8211; get the reader&#8217;s attention with a magnetic headline.</li>
<li><strong>Interest</strong> &#8211; Connect with their problem or &#8220;pain point&#8221;, make it relevant to them.</li>
<li><strong>Desire</strong> &#8211; make them &#8220;feel the transformation&#8221;. How will their situation be positively impacted by your offering? Have them step into that.</li>
<li><strong>Action</strong> &#8211; Lead the reader to your &#8220;call to action&#8221; and make it easy for them to do that.</li>
</ul>
<h3>Attention:</h3>
<blockquote class="myPullQuoteRt"><p>On the average,<br />
five times as many people<br />
read the headline<br />
as read the body copy.</p>
<p>When you have<br />
written your headline,<br />
you have spent eighty cents<br />
out of your dollar.<br />
&#8211; David Ogilvy</p></blockquote>
<p>People are too busy today and if you don&#8217;t catch their attention, forget about them reading your webpage, blog and Facebook posts or email.</p>
<p>How can you create a title that captures attention and sounds relevant, not spammy? Your headline, page title or email subject line must answer the question &#8220;Why should I invest my time reading further? What&#8217;s in it for me?&#8221;</p>
<blockquote class="myPullQuoteRt"><p>What piques<br />
your interest?</p></blockquote>
<h3>Interest:</h3>
<p>Peak their interest. Give them somthing that gives pause. If someone slows down when visiting your site, they are more likely to engage in conversation. Will you be willing and able to meet them in conversation?</p>
<blockquote class="myPullQuoteRt"><p>What is your<br />
Desire Nature?</p></blockquote>
<h3>Desire:</h3>
<p>People pay attention and eventually take action, when their Desire Nature has been appealed to. When some part of them is aroused to stay a while longer and see what else ya got.</p>
<blockquote class="myPullQuoteRt"><p>Tell them what<br />
you want them to do<br />
then make it easy<br />
for them to do that.</p></blockquote>
<h3>Action:</h3>
<p>&#8220;Calls to action&#8221; are powerful and kind ways to tell your site visitors what you want them to do.</p>
<p>After they scan or read your webpage, what would you most like them to do next? What Next Page visited? What action taken?</p>
<hr />
<p>Try your AIDA skills now by leaving a comment below. Please be courteous and constructive in your feedback and questions &#8211; thank you!</p>
<p>The post <a href="https://jeowebmasterservices.com/newsite/how-write-effective-sales-copy-aida/">How to Write Effective Sales Copy | A.I.D.A. Model</a> appeared first on <a href="https://jeowebmasterservices.com/newsite">JEO Webmaster Services</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://jeowebmasterservices.com/newsite/how-write-effective-sales-copy-aida/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to design an effective webpage</title>
		<link>https://jeowebmasterservices.com/newsite/how-to-design-effective-webpage-copy/</link>
		
		<dc:creator><![CDATA[john.erik]]></dc:creator>
		<pubDate>Sun, 05 Feb 2017 04:21:22 +0000</pubDate>
				<category><![CDATA[How to improve sales]]></category>
		<category><![CDATA[Improving search ranking]]></category>
		<category><![CDATA[Web design, development]]></category>
		<category><![CDATA[Writing effective page copy]]></category>
		<category><![CDATA[meta tags]]></category>
		<category><![CDATA[web design]]></category>
		<guid isPermaLink="false">http://jeowebmasterservices.com/newsite/?p=85</guid>

					<description><![CDATA[<p>What are the 5 most important things on a webpage? On the average, five times as many people read the headline as read the body copy. When you have written your headline, you have spent eighty cents out of your dollar. &#8211; David Ogilvy Each webpage has to work for both search engines and people. [&#8230;]</p>
<p>The post <a href="https://jeowebmasterservices.com/newsite/how-to-design-effective-webpage-copy/">How to design an effective webpage</a> appeared first on <a href="https://jeowebmasterservices.com/newsite">JEO Webmaster Services</a>.</p>
]]></description>
										<content:encoded><![CDATA[<h3>What are the 5 most important things on a webpage?</h3>
<blockquote class="myRightFloatImg" style="width: 300px;"><p>On the average, five times as many people read the headline as read the body copy.</p>
<p>When you have written your headline, you have spent eighty cents out of your dollar.<br />
&#8211; David Ogilvy</p></blockquote>
<p>Each webpage has to work for both search engines and people. You need enough on-point copy on a page to highlight strategic keywords for which you wish your site to rank in search results. Even if you show up #1 in Google, your page won&#8217;t convert a visitor into a sale if they get bored after the first paragraph.</p>
<p>Before you write a single word of page copy, you must have a goal. What&#8217;s this page going to talk about? What action do you want the reader to take if they scan or read the page? What impression and message do you want the reader to remember when they leave this page? How will you know you have been successful in achieving your goals?</p>
<h3>Webpage META tags</h3>
<p>You should create a clear and concise TITLE and DESCRIPTION statement for each page. Also, write an &#8220;intention script&#8221;. <strong>TITLE</strong> is 5-9 words sumarizing what the page is about. It&#8217;s also the phrase that shows in many browers at the top, above the address/URL bar. It&#8217;s the default phrase describing the link when you Bookmark the page. Most importantly, it&#8217;s the clickable first line representing your webpage in a Search engine results page.</p>
<p>The <strong>DESCRIPTION</strong> is 2-4 short sentences which tell more about what the reader can expect when they click into the page. Often, the DESCRIPTION is the text immediately under the TITLE in your search result listing. Here you can use a couple more keywords to influence the search engines, but more importantly, motivate the viewer to click your link.</p>
<p><strong>KEYWORDS</strong> meta tag is no longer considered by Google, since it had been so horribly abused in the past. Never the less, I still find it useful as a sort of &#8220;scratch pad&#8221; on which I record the most important keyword phrases thsi page should cover. If it&#8217;s not on this page, don&#8217;t put it in the KEYWORDS list. If there&#8217;s something important on the list that doesn&#8217;t really fit on the page, create another page/post for that phrase and link it to this page. Your KEYWORDS list can later be harvested to supply CATEGORIES and TAGS  for your individual posts, which will provide alternative ways for people to search your site for things in which they may interest.</p>
<p>The <strong>Intention Script</strong> describes what you consider the most important parts of your page, what you want the reader to do and what sorts of things you might measure in Google Analytics to measure the success or failure of this page. It can be a simple paragraph or two or even a bullet point outline of what you consider important about this page, how it is relevant to your Buyer Persona person and what you wish them to do next.</p>
<h3>Your webpage Needs One and Only One Clear Goal:</h3>
<p>So what is your goal for this page or blog post?</p>
<ol>
<li>Can you clearly and simply state one goal for this page in a short paragraph? To many goals water&#8217;s down the power and effectiveness of your page and can confuse or frustrate your reader. <em>K.I.S.S.</em>! (Keep it simple, sweetheart!)</li>
<li>How is this page different and unique than others on the site?</li>
<li>How does it tie in with the overall goal and theme of the site?</li>
<li>How does it address the needs, desires and wants of the User Persona you have built for describing your audience?</li>
<li>What action are you trying to persuade your readers to take?</li>
<li>Is anything on the page distracting visitors from that goal?</li>
<li>Is there anything that needs to be added to anticipate &#8220;resistance points&#8221; to help people move forward through your site to the action you wish them to take?</li>
</ol>
<p>Capturing interest is more important than being &#8220;creative&#8221; and clever. Every headline, image, subject line etc. should tie back to your buyer persona and be able to persuade such a person to take action. Be willing to put &#8220;innovative copy ideas&#8221; aside if they are boring to read. Create, concise, to-the-point copy that is relevant to this person&#8217;s interests.</p>
<p>Make your copy personable, believable, conversational, maybe even humorous but certainly relevant. You will only have 6 seconds to capture their interest and get them to read on past the first sentence or paragraph. Deliver a perception of authority and value to this person and you are more likely to convert them into a customer or client.</p>
<p>&nbsp;</p>
<h3>Exercise:</h3>
<p>In your mind&#8217;s eye, picture the person you have defined in your Buyer Persona. Imagine they are in the room with you and reacting to the copy you are writing. How would this person react to your content and the layout of this page? Does it make sense to them? Does it answer their questions? Does it provide value? Does it have a clear call to action and make it easy to do that action? Does it reward the person for taking an action? Does it present benefits rather than merely list features? Do any and all images and pictures support rather than detract from the main message and topic of that page?</p>
<p>The post <a href="https://jeowebmasterservices.com/newsite/how-to-design-effective-webpage-copy/">How to design an effective webpage</a> appeared first on <a href="https://jeowebmasterservices.com/newsite">JEO Webmaster Services</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>My Sales Are Down. What can I do?</title>
		<link>https://jeowebmasterservices.com/newsite/my-sales-are-down-what-can-i-do/</link>
					<comments>https://jeowebmasterservices.com/newsite/my-sales-are-down-what-can-i-do/#respond</comments>
		
		<dc:creator><![CDATA[john.erik]]></dc:creator>
		<pubDate>Sat, 04 Feb 2017 16:25:43 +0000</pubDate>
				<category><![CDATA[Adwords, paid search]]></category>
		<category><![CDATA[How to improve sales]]></category>
		<category><![CDATA[Improving search ranking]]></category>
		<category><![CDATA[Leverage google analytics]]></category>
		<category><![CDATA[Web design, development]]></category>
		<category><![CDATA[Web marketing research tools]]></category>
		<category><![CDATA[Writing effective page copy]]></category>
		<category><![CDATA[google freshness factor]]></category>
		<category><![CDATA[google trends]]></category>
		<category><![CDATA[quora.com]]></category>
		<category><![CDATA[utm tags]]></category>
		<guid isPermaLink="false">http://jeowebmasterservices.com/newsite/?p=38</guid>

					<description><![CDATA[<p>Recently, a client emailed me with some concern that bookings for her retreat lodging business were down. Her business is somewhat seasonal and most of her rental spaces are closed for the winter, but still she usually has a at least a couple bookings for the chalet vacation rental and/or couple&#8217;s coaching retreats. Reviewing several [&#8230;]</p>
<p>The post <a href="https://jeowebmasterservices.com/newsite/my-sales-are-down-what-can-i-do/">My Sales Are Down. What can I do?</a> appeared first on <a href="https://jeowebmasterservices.com/newsite">JEO Webmaster Services</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Recently, a client emailed me with some concern that bookings for her retreat lodging business were down. Her business is somewhat seasonal and most of her rental spaces are closed for the winter, but still she usually has a at least a couple bookings for the <a href="http://harmonyhillretreat.com/mountain-chalet-retreat-cabin/?utm_source=jeowebmaster&amp;utm_campaign=linkstoclientsite&amp;utm_medium=blog" target="_blank">chalet vacation rental</a> and/or <a href="http://harmonyhillretreat.com/couples-coaching-retreats/?utm_source=jeowebmaster&amp;utm_campaign=linkstoclientsite&amp;utm_medium=blog" target="_blank">couple&#8217;s coaching retreats</a>. Reviewing several of the <a href="http://jeowebmasterservices.com/pdfs/Analytics-All-Web-Site-Data-My-Dashboard_Dec2016.pdf" target="_blank">Google Analytics reports</a> I had just prepared for the previous month revealed some great, actionable insights and advise:</p>
<blockquote>
<figure id="attachment_56" aria-describedby="caption-attachment-56" style="width: 200px" class="wp-caption alignleft"><a href="http://jeowebmasterservices.com/newsite/wp-content/uploads/2017/02/HarmHill-screenshot637.jpg" target="_blank"><img loading="lazy" decoding="async" class="myLeftFloatImg" src="http://jeowebmasterservices.com/newsite/wp-content/uploads/2017/02/HarmHill-screenshot637-271x300.jpg" alt="ablet size screenshot of Harmony Hill Retreat homepage" width="200" height="300" /></a><figcaption id="caption-attachment-56" class="wp-caption-text"><span style="text-align: center;">Harmony Hill Retreat</span></figcaption></figure>
<p>&#8230;thanks for the reports.  Any suggestions based on the info?  I’ve had 0 bookings for January and only one so far for February.  This has never happened before.</p>
<p>How come there is a listing for Catskill yoga retreats?  I am not a good place for yoga retreats because I don’t have indoor space for yoga.</p></blockquote>
<p>My reply:</p>
<div class="myHighlightBox">
<p>Well one idea is to <strong>create a blog post</strong> about “couples yoga retreats” in the Catskills and make a special package with [teachers in the area]?  Another blog post about just couples retreats is good too.  If the yurts are closed down and fewer people feel comfortable affording a chalet, given the uncertainty of the current political climate, etc…  What can you do that’s fresh and attractive to people today? Go to <a href="https://www.google.com/trends/" target="_blank">Google Trends</a> and see what people are conversing about, then write blog posts about those topics and how a stress-free, winter retreat in the Catskills may be just the cure.</p>
<p>After Home page, CouplesCoachingRetreat and TreehouseYurtGlamping pages got top billing for volume as <strong>landing pages</strong>. That means people were searching for something, for which Google displayed a listing for those 3 pages. They clicked through. What can you do to those pages to convert more visitors into bookings? Can you offer a “Winter Booking Incentive”?  CouplesRetreat has potential. How can you more effectively “close the deal” when people view those pages?</p>
<p>How can you reach out into your community more and cross-lubricate business with your neighbors? Could that expand what you say on website and add <a href="https://moz.com/blog/google-fresh-factor-new" target="_blank">freshness factor</a>?  Do you have and take advantage of an email mailing list for clients?</p>
<p>Remember to review the <strong>Search Queries report</strong> to see for what search queries your site currently gets exposure, then beef up pages/posts related to those queries with good content and calls to action. Also, just as important, what keyword phrases are <i>not</i> causing your site to show in search results? If there are keyword phrases you feel are important to your business, how can you highlight them in your content for better search ranking?</p>
<p>If you look at the “NY <strong>Traffic by Time on Site</strong>” report, you will find several upstate towns that had higher than site average session time on site. That means they were interested. What would make a stay with you more attractive to upstaters? NYC traffic was slightly under site average. This suggests your largest audience is speedy, so how can the pages deliver what they want quickly? (Is site display optimized for smart phones and tablets? Do different regions search differently on smart phones vs laptops?)</p>
<p>I have found a new, incredible resource. <a href="https://www.quora.com/" target="_blank">Quora.com</a> is a place where you can go to find out what questions people are asking. Then you can either make packages at HarmonyHill that address those questions or simply post an answer to someone’s question (in the form of a short article). Google is increasingly scoring Quora answers highly, which will help boost search ranking and traffic. More eyeballs leads to more bookings.</p>
<p><strong>You ask:</strong> <i>how come there is a listing for catskill yoga retreats?</i><br />
Search engines are clever creatures. You have Yoga mentioned on a services page. So Google scores you for “catskill yoga retreats” even if it’s not your main business.</p>
<p>JE</p>
</div>
<div class="wrapup">
<h3>Web Marketing Takeaways</h3>
<p>Notice that the links above in the very first page paragraph have special Google &#8220;<strong>UTM tags</strong>&#8221; included. This way I can view analytics for this client and easily see how many visitors came to her site from my blog post and all sorts of information about their visit! Here&#8217;s a handy tool to build your own, customized URL using UTM tags: <a href="https://ga-dev-tools.appspot.com/campaign-url-builder/" target="_blank">ga-dev-tools.appspot.com/campaign-url-builder</a>.</p>
<p>Google&#8217;s &#8220;<strong>freshness factor</strong>&#8221; is a really important consideration for your website. Creating a profitable web presence is not a one time &#8220;set it and forget it&#8221; event. It is an organically growing process. You want to create a good relationship with Google and you do this by delivering quality content to its customers that keeps up with changing times and events.</p>
<p>Your <strong>Google Analytics reports</strong> are a gold mine of information. But like a promising employee, it needs proper care and attention to deliver results for your business. (Check out this post about <a>GA Spamming</a> for important setup information.) Remember you can&#8217;t judge the success of something you don&#8217;t measure. Regular review of strategic reports is critical to your online success and can make a significant cost savings to any online marketing you may employ.</p>
<p><strong>UTM tagging</strong> can help you quickly identify Campaigns in your analytics reporting.</p>
<figure id="attachment_71" aria-describedby="caption-attachment-71" style="width: 300px" class="wp-caption alignnone myRightFloatImg"><a href="http://jeowebmasterservices.com/newsite/wp-content/uploads/2017/02/SocialMediaIs-DonutExample.gif"><img loading="lazy" decoding="async" class="size-medium wp-image-71" src="http://jeowebmasterservices.com/newsite/wp-content/uploads/2017/02/SocialMediaIs-DonutExample-300x272.gif" alt="Social Media Explained-DonutExample" width="300" height="272" /></a><figcaption id="caption-attachment-71" class="wp-caption-text">Social Media Explained</figcaption></figure>
<p><strong>Social Triggers</strong> are a tricky topic. Getting referrals and traffic from social platforms like Facebook, Twitter, linkedIn, Instagram, G+, etc will, no question, increase your traffic and sales.</p>
<p>But this comes at a cost &#8211; the cost of participating with and managing those web-social relationships. One needs to think about actual people coming from these social platforms. If you could picture in your mind&#8217;s eye an image of an actual semi-fictional person you&#8217;d like to interact with, how would you describe that? What is your USP (<strong>Unique Selling Proposition</strong>)? <a href="http://jeowebmasterservices.com/clientools/?utm_source=jeowebmaster&amp;utm_campaign=linkstoself&amp;utm_medium=blog&amp;utm_term=user_persona-usp" target="_blank">This tool</a> will help you build a <strong>user persona profile</strong> and USP for your website and business.</p>
<p>And finally, <strong><i>become friends with your blog</i></strong>! Use it to communicate with your audience to give them value. Once you find out what people are searching for and for what your site is being seen, you can always use your blog strategically to gain more exposure for your products and services. Try our Quora.com, Google Trends and other research tools to gain valuable insights, increase your &#8220;authority factor&#8221; and boost your representation and success online!</p>
<p><strong>Excited but overwhelmed by all the possibilities? Need Help?</strong> Contact us to <a href="http://jeowebmasterservices.com/newsite/contact-us/">setup a consultation</a> to discuss how to make your site perform better for you. Or download these &#8220;<a href="http://jeowebmasterservices.com/newsite/test-mailchimp-form/">Top-10 Tips to Online Success</a>&#8220;.</p>
<p>Happy blogging!</p>
</div>
<p>The post <a href="https://jeowebmasterservices.com/newsite/my-sales-are-down-what-can-i-do/">My Sales Are Down. What can I do?</a> appeared first on <a href="https://jeowebmasterservices.com/newsite">JEO Webmaster Services</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://jeowebmasterservices.com/newsite/my-sales-are-down-what-can-i-do/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/

Object Caching 12/233 objects using Disk
Page Caching using Disk: Enhanced 

Served from: jeowebmasterservices.com @ 2026-09-10 11:04:05 by W3 Total Cache
-->