<?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>ITegrity</title>
	<atom:link href="http://www.itegritygroup.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.itegritygroup.com</link>
	<description>San Diego Web Design</description>
	<lastBuildDate>Fri, 20 Apr 2012 10:00:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Event Espresso Export to CiviCRM Import</title>
		<link>http://www.itegritygroup.com/event-espresso-export-to-civicrm-import/</link>
		<comments>http://www.itegritygroup.com/event-espresso-export-to-civicrm-import/#comments</comments>
		<pubDate>Fri, 20 Apr 2012 09:55:21 +0000</pubDate>
		<dc:creator>skozyk</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.itegritygroup.com/?p=3506</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><iframe src="http://www.screenr.com/embed/Scg8" width="650" height="396" frameborder="0"></iframe></p>
<p><iframe src="http://www.screenr.com/embed/ikg8" width="650" height="396" frameborder="0"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.itegritygroup.com/event-espresso-export-to-civicrm-import/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BuddyPress Member Directory:  Show Users by Role/ S2Member Level</title>
		<link>http://www.itegritygroup.com/buddypress-members-directory-s2members</link>
		<comments>http://www.itegritygroup.com/buddypress-members-directory-s2members#comments</comments>
		<pubDate>Tue, 06 Mar 2012 03:17:36 +0000</pubDate>
		<dc:creator>skozyk</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.itegritygroup.com/?p=3471</guid>
		<description><![CDATA[The Problem We recently had a software development project requirement where we needed to show certain BuddyPress members in the BuddyPress Members Directory. Specifically, BuddyPress members who belonged to certain roles/levels needed to be displayed. For example you may only want to show Administrators or Editors in the members directory or in our case, show [...]]]></description>
			<content:encoded><![CDATA[<h2>The Problem</h2>
<p>We recently had a software development project requirement where we needed to show certain BuddyPress members in the BuddyPress Members Directory. Specifically, BuddyPress members who belonged to certain roles/levels needed to be displayed. For example you may only want to show Administrators or Editors in the members directory or in our case, show only S2Members of a certain membership level.</p>
<p><a title="S2Member" href="http://www.s2member.com/" target="_blank">S2Member</a> is a WordPress membership plugin that works well with BuddyPress. It&#8217;s really more than a plugin, it actually more accurately resembles a complete membership framework that works with WordPress similar in scope to BuddyPress.  S2Member comes in two flavors, Free &amp; Pro.  The free version is amazingly robust and should serve the needs of most basic WordPress / BuddyPress site requirements, however the Pro version offers a full suite of functionality for more complex installations.</p>
<h2>The Solution</h2>
<p>In our case, we needed to show all WordPress Administrators and S2Members with a membership level of 1 in the directory.  The BuddyPress members directory is generated through <span id="more-3471"></span><a title="BuddyPress Members Loop" href="http://codex.buddypress.org/developer-docs/custom-buddypress-loops/the-members-loop/" target="_blank">The Members Loop</a> contained in the directory: plugins/buddypress/bp-themes/bp-default/members/<a title="members-loop.php" href="http://phpxref.ftwr.co.uk/buddypress/nav.html?bp-themes/bp-default/members/members-loop.php.html" target="_blank">members-loop.php</a>.  Members-loop.php is where you&#8217;ll modify the code to show only certain types of BuddyPress users instead of the default which shows all users.</p>
<p>The code itself is fairly straightforward.  In the while loop that generates each BuddyPress user listing in the directory, you&#8217;ll need to get each member&#8217;s user id and then get their role.  After</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p3471code6'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p34716"><td class="code" id="p3471code6"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">while</span> <span style="color: #009900;">&#40;</span> bp_members<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> bp_the_member<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>add</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p3471code7'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p34717"><td class="code" id="p3471code7"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #000088;">$user</span><span style="color: #339933;">=</span>bp_get_member_user_id<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>This sets the variable $user to the current BuddyPress user being fetched in the While loop.</p>
<p>Next, add</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p3471code8'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p34718"><td class="code" id="p3471code8"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$s2member_var</span> <span style="color: #339933;">=</span> get_user_field <span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;s2member_access_role&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$user</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>  You can use any variable name here, in our case because we primarily want to show S2Members of level 1, we named our var, $s2member_var.  This line gets the user field &#8220;s2member_access_role&#8221; for the current user in the loop who&#8217;s user id = $user.</p>
<p>Lastly, we want to only show BuddyPress users in the directory who are Administrators or S2members of level 1.  Using a simple &#8216;if&#8217; statement, we say if $s2member_var which contains the current user&#8217;s role (Administrator, Editor, Subscriber, s2member_level0, s2member_level1, s2member_level2, etc.) is exactly equal to &#8220;s2member_level1&#8243; or &#8220;administrator&#8221; then show the member in the BuddyPress members directory.  If not, skip this user and loop to the next one.</p>
<p>Here&#8217;s the code to begin the loop:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p3471code9'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p34719"><td class="code" id="p3471code9"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">while</span> <span style="color: #009900;">&#40;</span> bp_members<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> bp_the_member<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #000088;">$user</span><span style="color: #339933;">=</span>bp_get_member_user_id<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000088;">$s2member_var</span> <span style="color: #339933;">=</span> get_user_field <span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;s2member_access_role&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$user</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$s2member_var</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">&quot;s2member_level1&quot;</span> <span style="color: #339933;">||</span> <span style="color: #000088;">$s2member_var</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">&quot;administrator&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
	<span style="color: #339933;">&lt;</span>li<span style="color: #339933;">&gt;</span>	
			<span style="color: #339933;">&lt;</span>div <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;item-avatar&quot;</span><span style="color: #339933;">&gt;</span>
				<span style="color: #339933;">&lt;</span>a href<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;&lt;?php bp_member_permalink(); ?&gt;&quot;</span><span style="color: #339933;">&gt;</span><span style="color: #000000; font-weight: bold;">&lt;?</span>php bp_member_avatar<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span><span style="color: #339933;">&lt;/</span>a<span style="color: #339933;">&gt;</span>
			<span style="color: #339933;">&lt;/</span>div<span style="color: #339933;">&gt;</span></pre></td></tr></table></div>

<p>Here&#8217;s the entire members-loop.php file for reference.  Please note other customizations were done to the loop, including:</p>
<p>1) Listing users in alphabetical order in the BuddyPress members directory<br />
2) Showing BuddyPress custom profile fields in the BuddyPress members directory from the BuddyPress registration form.<br />
3) Removing the &#8220;last active&#8221; label from each user&#8217;s BuddyPress members directory listing.</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p3471code10'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p347110"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
</pre></td><td class="code" id="p3471code10"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
&nbsp;
<span style="color: #009933; font-style: italic;">/**
 * BuddyPress - Members Loop
 *
 * Querystring is set via AJAX in _inc/ajax.php - bp_dtheme_object_filter()
 *
 * @package BuddyPress
 * @subpackage bp-default
 */</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> do_action<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'bp_before_members_loop'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> bp_has_members<span style="color: #009900;">&#40;</span> bp_ajax_querystring<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'members'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&amp;type=alphabetical'</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
	<span style="color: #339933;">&lt;</span>div id<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;pag-top&quot;</span> <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;pagination&quot;</span><span style="color: #339933;">&gt;</span>
&nbsp;
		<span style="color: #339933;">&lt;</span>div <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;pag-count&quot;</span> id<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;member-dir-count-top&quot;</span><span style="color: #339933;">&gt;</span>
&nbsp;
			<span style="color: #000000; font-weight: bold;">&lt;?php</span> bp_members_pagination_count<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
		<span style="color: #339933;">&lt;/</span>div<span style="color: #339933;">&gt;</span>
&nbsp;
		<span style="color: #339933;">&lt;</span>div <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;pagination-links&quot;</span> id<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;member-dir-pag-top&quot;</span><span style="color: #339933;">&gt;</span>
&nbsp;
			<span style="color: #000000; font-weight: bold;">&lt;?php</span> bp_members_pagination_links<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
		<span style="color: #339933;">&lt;/</span>div<span style="color: #339933;">&gt;</span>
&nbsp;
	<span style="color: #339933;">&lt;/</span>div<span style="color: #339933;">&gt;</span>
&nbsp;
	<span style="color: #000000; font-weight: bold;">&lt;?php</span> do_action<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'bp_before_directory_members_list'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
	<span style="color: #339933;">&lt;</span>ul id<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;members-list&quot;</span> <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;item-list&quot;</span> role<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;main&quot;</span><span style="color: #339933;">&gt;</span>
&nbsp;
	<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">while</span> <span style="color: #009900;">&#40;</span> bp_members<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> bp_the_member<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #000088;">$user</span><span style="color: #339933;">=</span>bp_get_member_user_id<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000088;">$s2member_var</span> <span style="color: #339933;">=</span> get_user_field <span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;s2member_access_role&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$user</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$s2member_var</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">&quot;s2member_level1&quot;</span> <span style="color: #339933;">||</span> <span style="color: #000088;">$s2member_var</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">&quot;administrator&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
&nbsp;
		<span style="color: #339933;">&lt;</span>li<span style="color: #339933;">&gt;</span>
&nbsp;
			<span style="color: #339933;">&lt;</span>div <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;item-avatar&quot;</span><span style="color: #339933;">&gt;</span>
				<span style="color: #339933;">&lt;</span>a href<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;&lt;?php bp_member_permalink(); ?&gt;&quot;</span><span style="color: #339933;">&gt;</span><span style="color: #000000; font-weight: bold;">&lt;?</span>php bp_member_avatar<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span><span style="color: #339933;">&lt;/</span>a<span style="color: #339933;">&gt;</span>
			<span style="color: #339933;">&lt;/</span>div<span style="color: #339933;">&gt;</span>
&nbsp;
			<span style="color: #339933;">&lt;</span>div <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;item&quot;</span> style<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;float:left; width:80%;&quot;</span><span style="color: #339933;">&gt;</span>
				<span style="color: #339933;">&lt;</span>div <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;item-title&quot;</span><span style="color: #339933;">&gt;</span>
					<span style="color: #339933;">&lt;</span>a href<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;&lt;?php bp_member_permalink(); ?&gt;&quot;</span><span style="color: #339933;">&gt;</span><span style="color: #000000; font-weight: bold;">&lt;?</span>php bp_member_name<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span><span style="color: #339933;">&lt;/</span>a<span style="color: #339933;">&gt;</span>
&nbsp;
					<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> bp_get_member_latest_update<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
						<span style="color: #339933;">&lt;</span>span <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;update&quot;</span><span style="color: #339933;">&gt;</span> <span style="color: #000000; font-weight: bold;">&lt;?php</span> bp_member_latest_update<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span><span style="color: #339933;">&lt;/</span>span<span style="color: #339933;">&gt;</span>
&nbsp;
					<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">endif</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
				<span style="color: #339933;">&lt;/</span>div<span style="color: #339933;">&gt;</span>
&nbsp;
&nbsp;
&nbsp;
				<span style="color: #000000; font-weight: bold;">&lt;?php</span> do_action<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'bp_directory_members_item'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
				<span style="color: #000000; font-weight: bold;">&lt;?php</span>
				  bp_member_profile_data<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'field=Company'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
				  <span style="color: #000000; font-weight: bold;">?&gt;</span><span style="color: #339933;">&lt;</span>br<span style="color: #339933;">/&gt;</span><span style="color: #000000; font-weight: bold;">&lt;?</span>php
                              bp_member_profile_data<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'field=Phone'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
                              <span style="color: #000000; font-weight: bold;">?&gt;</span><span style="color: #339933;">&lt;</span>br<span style="color: #339933;">/&gt;</span><span style="color: #000000; font-weight: bold;">&lt;?</span>php
			         bp_member_profile_data<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'field=Email'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
&nbsp;
				<span style="color: #000000; font-weight: bold;">?&gt;</span>
			<span style="color: #339933;">&lt;/</span>div<span style="color: #339933;">&gt;</span>
&nbsp;
			<span style="color: #339933;">&lt;</span>div <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;action&quot;</span><span style="color: #339933;">&gt;</span>
&nbsp;
				<span style="color: #000000; font-weight: bold;">&lt;?php</span> do_action<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'bp_directory_members_actions'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
			<span style="color: #339933;">&lt;/</span>div<span style="color: #339933;">&gt;</span>
&nbsp;
			<span style="color: #339933;">&lt;</span>div <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;clear&quot;</span><span style="color: #339933;">&gt;&lt;/</span>div<span style="color: #339933;">&gt;</span>
		<span style="color: #339933;">&lt;/</span>li<span style="color: #339933;">&gt;</span>
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #009900;">&#125;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
	<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">endwhile</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
&nbsp;
	<span style="color: #339933;">&lt;/</span>ul<span style="color: #339933;">&gt;</span>
&nbsp;
	<span style="color: #000000; font-weight: bold;">&lt;?php</span> do_action<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'bp_after_directory_members_list'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
	<span style="color: #000000; font-weight: bold;">&lt;?php</span> bp_member_hidden_fields<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
	<span style="color: #339933;">&lt;</span>div id<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;pag-bottom&quot;</span> <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;pagination&quot;</span><span style="color: #339933;">&gt;</span>
&nbsp;
		<span style="color: #339933;">&lt;</span>div <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;pag-count&quot;</span> id<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;member-dir-count-bottom&quot;</span><span style="color: #339933;">&gt;</span>
&nbsp;
			<span style="color: #000000; font-weight: bold;">&lt;?php</span> bp_members_pagination_count<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
		<span style="color: #339933;">&lt;/</span>div<span style="color: #339933;">&gt;</span>
&nbsp;
		<span style="color: #339933;">&lt;</span>div <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;pagination-links&quot;</span> id<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;member-dir-pag-bottom&quot;</span><span style="color: #339933;">&gt;</span>
&nbsp;
			<span style="color: #000000; font-weight: bold;">&lt;?php</span> bp_members_pagination_links<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
		<span style="color: #339933;">&lt;/</span>div<span style="color: #339933;">&gt;</span>
&nbsp;
	<span style="color: #339933;">&lt;/</span>div<span style="color: #339933;">&gt;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">else</span><span style="color: #339933;">:</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
	<span style="color: #339933;">&lt;</span>div id<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;message&quot;</span> <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;info&quot;</span><span style="color: #339933;">&gt;</span>
		<span style="color: #339933;">&lt;</span>p<span style="color: #339933;">&gt;</span><span style="color: #000000; font-weight: bold;">&lt;?</span>php _e<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">&quot;Sorry, no members were found.&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'buddypress'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span><span style="color: #339933;">&lt;/</span>p<span style="color: #339933;">&gt;</span>
	<span style="color: #339933;">&lt;/</span>div<span style="color: #339933;">&gt;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">endif</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> do_action<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'bp_after_members_loop'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://www.itegritygroup.com/buddypress-members-directory-s2members/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Change your WordPress Home Page</title>
		<link>http://www.itegritygroup.com/change-your-wordpress-home-page/</link>
		<comments>http://www.itegritygroup.com/change-your-wordpress-home-page/#comments</comments>
		<pubDate>Mon, 20 Feb 2012 07:06:08 +0000</pubDate>
		<dc:creator>skozyk</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.itegritygroup.com/?p=3466</guid>
		<description><![CDATA[To set your home page on your WordPress site, login to your website&#8217;s admin area and expand the &#8220;Settings&#8221; menu.  Next select &#8220;Reading&#8221;.  On the &#8220;Reading Settings&#8221; screen, in the &#8220;Front page displays&#8221; area at the top of the page, click on the &#8220;A static page&#8221; radio button and select an already existing page in [...]]]></description>
			<content:encoded><![CDATA[<p>To set your home page on your WordPress site, login to your website&#8217;s admin area and expand the &#8220;Settings&#8221; menu.  Next select &#8220;Reading&#8221;.  On the &#8220;Reading Settings&#8221; screen, in the &#8220;Front page displays&#8221; area at the top of the page, click on the &#8220;A static page&#8221; radio button and select an already existing page in the &#8220;Front page&#8221; dropdown menu.  If you have already created a &#8220;Home&#8221; page, select this page page to assign it to be the home page for your website.</p>
<p><a href="http://www.itegritygroup.com/wp-content/uploads/2012/02/wordpress-reading-settings.jpg"><img class="alignnone size-full wp-image-3467" title="wordpress-reading-settings" src="http://www.itegritygroup.com/wp-content/uploads/2012/02/wordpress-reading-settings-e1329721130616.jpg" alt="wordpress reading settings" width="550" height="339" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.itegritygroup.com/change-your-wordpress-home-page/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to Add a Quote with the WordPress Quote Rotators Plugin</title>
		<link>http://www.itegritygroup.com/how-to-add-a-quote-with-the-wordpress-quote-rotators-plugin/</link>
		<comments>http://www.itegritygroup.com/how-to-add-a-quote-with-the-wordpress-quote-rotators-plugin/#comments</comments>
		<pubDate>Fri, 25 Nov 2011 08:34:42 +0000</pubDate>
		<dc:creator>skozyk</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.itegritygroup.com/?p=3456</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><iframe src="http://www.screenr.com/embed/6qus" width="650" height="396" frameborder="0"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.itegritygroup.com/how-to-add-a-quote-with-the-wordpress-quote-rotators-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iModules: Adding Images to the Image Rotator</title>
		<link>http://www.itegritygroup.com/imodules-adding-image-rotator/</link>
		<comments>http://www.itegritygroup.com/imodules-adding-image-rotator/#comments</comments>
		<pubDate>Tue, 08 Nov 2011 01:48:54 +0000</pubDate>
		<dc:creator>skozyk</dc:creator>
				<category><![CDATA[iModules]]></category>
		<category><![CDATA[Resources]]></category>

		<guid isPermaLink="false">http://www.itegritygroup.com/?p=3440</guid>
		<description><![CDATA[How to add images to the iModules image rotator.]]></description>
			<content:encoded><![CDATA[<p>How to add images to the iModules image rotator.<br />
<iframe src="http://player.vimeo.com/video/31761989?title=0&amp;byline=0&amp;portrait=0" width="640" height="344" frameborder="0" webkitAllowFullScreen allowFullScreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.itegritygroup.com/imodules-adding-image-rotator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Point Your GoDaddy Domain Name to Dreamhost</title>
		<link>http://www.itegritygroup.com/point-godaddy-domain-to-dreamhost/</link>
		<comments>http://www.itegritygroup.com/point-godaddy-domain-to-dreamhost/#comments</comments>
		<pubDate>Tue, 18 Oct 2011 02:31:35 +0000</pubDate>
		<dc:creator>skozyk</dc:creator>
				<category><![CDATA[Resources]]></category>

		<guid isPermaLink="false">http://www.itegritygroup.com/?p=3450</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><iframe src="http://player.vimeo.com/video/32223500?title=0&amp;byline=0&amp;portrait=0" width="601" height="323" frameborder="0" webkitAllowFullScreen allowFullScreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.itegritygroup.com/point-godaddy-domain-to-dreamhost/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Places Optimization</title>
		<link>http://www.itegritygroup.com/google-places-optimization/</link>
		<comments>http://www.itegritygroup.com/google-places-optimization/#comments</comments>
		<pubDate>Mon, 29 Aug 2011 00:13:10 +0000</pubDate>
		<dc:creator>skozyk</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[Search Engine Marketing]]></category>
		<category><![CDATA[SEO Web Development]]></category>

		<guid isPermaLink="false">http://www.itegritygroup.com/?p=3383</guid>
		<description><![CDATA[What is Google Places? Google Places is a free tool provided by Google for your business that can pay abundant dividends by amplifying the traffic flow to your website, increasing your website visibility in Google searches, and growing your company’s sales.  Google recently claimed that one out of five searches on Google are related to [...]]]></description>
			<content:encoded><![CDATA[<h2>What is Google Places?</h2>
<p>Google Places is a free tool provided by Google for your business that can pay abundant dividends by amplifying the traffic flow to your website, increasing your website visibility in Google searches, and growing your company’s sales.  Google recently claimed that one out of five searches on Google are related to a geographic location.  Google Places allows you to create a listing for your business within Google Maps, which also frequently shows in regular search results, where a user can<span id="more-3383"></span> find the products and/or services you offer with map based directions and other information about your business.</p>
<h2>The Basics</h2>
<p>Whether you’ve already created or claimed your Google Places listing or if you’ve yet to do so, the first step in having your listing rank well is to make sure you’ve fully completed your business profile.   Answer all of the fields Google provides completely and with as much information as possible.  Upload pictures of your products and services, your team, or business.  If available, upload videos about your business or products.  Video topics can include sales, company history, or product demonstrations.  Add an offer or two for your business, which is a essentially a free online coupon.  The more quality, relevant content you add to your Google Places profile, the better overall your listing will rank.</p>
<p>If you haven’t already created or claimed your Google Places listing for your business, you can learn how to so <a href="http://www.google.com/places/">here</a>.</p>
<h2>Google Places in Search Results:  A Competitive Edge for Your Business</h2>
<p>The Google Places listing for your business will also sometimes appear in keyword search results in Google.  Google has recently placed a stronger emphasis on Google Places listings, often showing Google Places info above organic search results for a certain keyword search.  For example, a company’s actual website could be ranked #20 organically appearing on the second page results for a given keyword search, but show up on the first page search results, or even #1, with its Google Places listing.  The Google Places search placement result isn&#8217;t for the company&#8217;s website itself, but instead for its Google Places listing.</p>
<p>In the example below, we’ll use Quality Shed’s Glendale, CA location and the keyword phrase search &#8220;Glendale, CA sheds&#8221;.  The company&#8217;s <em>actual website</em> pages are listed on the second page results, however its Google Places listing is coming up #1 overall!  When you click on Quality Shed’s Google Places listing heading, it takes you directly to their website, not the listing itself.  By getting your Google Places listing to rank high in Google, you can give yourself a significant search advantage over your competitors while creating an important new entrance point to your website potentially attracting new customers you wouldn&#8217;t have otherwise.</p>
<p><a href="http://www.itegritygroup.com/wp-content/uploads/2011/08/google-places-optimization.png"><img class="alignnone size-full wp-image-3384" title="google-places-optimization" src="http://www.itegritygroup.com/wp-content/uploads/2011/08/google-places-optimization-e1314576718965.png" alt="google places optimization" width="580" height="281" /></a></p>
<p>&nbsp;</p>
<h2>Other Business Directories Affect Your Google Places Listing</h2>
<p>Google will search other business directory sites that may include a listing for your business along with any reviews for your business.  Google currently scrapes reviews about your business from these other sites and will populate your Google Places listing with those reviews.  In the above example, although Quality Sheds has four reviews in its Google Places listing, it also has a review from someone who reviewed the company through “Insiderpages.com”.  Google pulled a review from InsiderPages about the Quality Sheds and automatically added it to their Google Places listing.  The review pulled from insiderpages.com was a positive review for the company, however  it’s essential to check your Google Places listing regularly to ensure any possible negative reviews that could be floating around in cyberspace about your business don’t inadvertently get pulled in by Google to your listing. When reviews are added about your business in any directory, it&#8217;s beneficial for you to personally respond to both good and bad reviews about your business.</p>
<p>It&#8217;s a good idea to make sure your business is listed on as many reputable directory and review sites as possible.  However, because there are a multitude of directories on the web, many of which would hold little value to your business, you&#8217;ll want to focus on local directories and directories that center on your type of business.  Local online phone directories and trade organization websites that provide business listings are a good start.  Make sure you accurately list your business name and add as much info as you can about your business to each.   It’s important to have your business name consistently shown in all directories so that search engines can identify that a listing belongs to your business and not another.  If you find your business in a directory  with auto-populated information that isn’t accurately spelled or contains other information that’s incorrect, make sure you claim the listing or contact the directory’s administrator to correct it.</p>
<h2>Sitemaps and Geo Sitemaps</h2>
<p>It&#8217;s a must to have a sitemap.xml file, usually placed in the root directory of your site, for search engines like Google to find and read each time it indexes your site.  This site map file provides the complete page structure of your site to search engines.  If you have a traditional HTML based site, you&#8217;ll want to manually generate and upload your sitemap.xml file to your site periodically or at least when you make significant changes to your site.  A good resource for generating a sitemap of your site is <a href="http://www.xml-sitemaps.com/">xml-sitemaps.com</a> .</p>
<p>With WordPress based websites (and with some other CMS sites) you can install a free plugin that constantly and automatically keeps your sitemap.xml up to date with the changes and updates you make to your website.  You can download the <a href="http://wordpress.org/extend/plugins/google-sitemap-generator/">WordPress sitemap generator plugin her</a></p>
<p>Your sitemap file will help your overall site ranking, but alone may not influence how well your business ranks in Google Places.  However, another type of sitemap, the Geo Sitemap,  can be a factor considered by Google for your Google Places ranking.  The Geo Sitemap is a KML file which is used by Google to show locations on both Google Earth and Google Maps.  To generate a Geo Sitemap, you&#8217;ll need to create two files, a KML file, and an XML file, and upload both to your sites root directory.  You&#8217;ll then need to submit the Geo Sitemap to Google with your Google Webmaster Tools account.  To generate both the necessary KML and XML files, you can use the Geo Sitemap generator tool at <a href="http://www.sitemapdoc.com/geositemap-generator.aspx">SiteMapDoc.com</a> .   Follow the directions and upload the files to your site.  Remember to change the generated code to use your website&#8217;s correct URL and make sure you save both files with the appropriate file extension, .kml and .xml.  Finally make sure you add your new Geo Sitemap file to your Google Webmaster Tools account.  You&#8217;ll need to submit your .xml file to Google Webmaster (which points to your .kml file).  If you don&#8217;t already have a Google Webmaster account you can sign up for one through your Google Account or by clicking <a href="http://www.google.com/webmasters/tools/">here</a>.</p>
<h2>Conclusion</h2>
<p>Google Places is a dynamic service that Google is constantly tweaking to improve the way it serves its search engine users and revenue model.  It’s critical to stay on top of Google Places current trends;  what is an effective strategy today, may not be tomorrow.  Once you’ve mastered the topics described in this article, you’ll also want to educate yourself on more advanced methods to improve your Google Places ranking.   Best of luck with optimizing your Google Places listing and growing your business.</p>
<p><span style="color: #888888;"><em>Author’s Note:  I’d like to extend a special thank you to <a href="http://www.socalsheds.com/"><span style="color: #888888;">Quality Sheds of Glendale</span></a> for allowing me to use their company as an example in this article.</em></span></p>
<p><!--[if gte mso 9]><xml><br />
 <o:OfficeDocumentSettings><br />
  <o:AllowPNG/><br />
 </o:OfficeDocumentSettings><br />
</xml><![endif]--><!--[if gte mso 9]><xml><br />
 <w:WordDocument><br />
  <w:View>Normal</w:View><br />
  <w:Zoom>0</w:Zoom><br />
  <w:TrackMoves/><br />
  <w:TrackFormatting/><br />
  <w:PunctuationKerning/><br />
  <w:ValidateAgainstSchemas/><br />
  <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid><br />
  <w:IgnoreMixedContent>false</w:IgnoreMixedContent><br />
  <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText><br />
  <w:DoNotPromoteQF/><br />
  <w:LidThemeOther>EN-US</w:LidThemeOther><br />
  <w:LidThemeAsian>X-NONE</w:LidThemeAsian><br />
  <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript><br />
  <w:Compatibility><br />
   <w:BreakWrappedTables/><br />
   <w:SnapToGridInCell/><br />
   <w:WrapTextWithPunct/><br />
   <w:UseAsianBreakRules/><br />
   <w:DontGrowAutofit/><br />
   <w:SplitPgBreakAndParaMark/><br />
   <w:EnableOpenTypeKerning/><br />
   <w:DontFlipMirrorIndents/><br />
   <w:OverrideTableStyleHps/><br />
  </w:Compatibility><br />
  <m:mathPr><br />
   <m:mathFont m:val="Cambria Math"/><br />
   <m:brkBin m:val="before"/><br />
   <m:brkBinSub m:val="&#45;-"/><br />
   <m:smallFrac m:val="off"/><br />
   <m:dispDef/><br />
   <m:lMargin m:val="0"/><br />
   <m:rMargin m:val="0"/><br />
   <m:defJc m:val="centerGroup"/><br />
   <m:wrapIndent m:val="1440"/><br />
   <m:intLim m:val="subSup"/><br />
   <m:naryLim m:val="undOvr"/><br />
  </m:mathPr></w:WordDocument><br />
</xml><![endif]--><!--[if gte mso 9]><xml><br />
 <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"<br />
  DefSemiHidden="true" DefQFormat="false" DefPriority="99"<br />
  LatentStyleCount="267"><br />
  <w:LsdException Locked="false" Priority="0" SemiHidden="false"<br />
   UnhideWhenUsed="false" QFormat="true" Name="Normal"/><br />
  <w:LsdException Locked="false" Priority="9" SemiHidden="false"<br />
   UnhideWhenUsed="false" QFormat="true" Name="heading 1"/><br />
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2"/><br />
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3"/><br />
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4"/><br />
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5"/><br />
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6"/><br />
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7"/><br />
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8"/><br />
  <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9"/><br />
  <w:LsdException Locked="false" Priority="39" Name="toc 1"/><br />
  <w:LsdException Locked="false" Priority="39" Name="toc 2"/><br />
  <w:LsdException Locked="false" Priority="39" Name="toc 3"/><br />
  <w:LsdException Locked="false" Priority="39" Name="toc 4"/><br />
  <w:LsdException Locked="false" Priority="39" Name="toc 5"/><br />
  <w:LsdException Locked="false" Priority="39" Name="toc 6"/><br />
  <w:LsdException Locked="false" Priority="39" Name="toc 7"/><br />
  <w:LsdException Locked="false" Priority="39" Name="toc 8"/><br />
  <w:LsdException Locked="false" Priority="39" Name="toc 9"/><br />
  <w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption"/><br />
  <w:LsdException Locked="false" Priority="10" SemiHidden="false"<br />
   UnhideWhenUsed="false" QFormat="true" Name="Title"/><br />
  <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font"/><br />
  <w:LsdException Locked="false" Priority="11" SemiHidden="false"<br />
   UnhideWhenUsed="false" QFormat="true" Name="Subtitle"/><br />
  <w:LsdException Locked="false" Priority="22" SemiHidden="false"<br />
   UnhideWhenUsed="false" QFormat="true" Name="Strong"/><br />
  <w:LsdException Locked="false" Priority="20" SemiHidden="false"<br />
   UnhideWhenUsed="false" QFormat="true" Name="Emphasis"/><br />
  <w:LsdException Locked="false" Priority="59" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Table Grid"/><br />
  <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text"/><br />
  <w:LsdException Locked="false" Priority="1" SemiHidden="false"<br />
   UnhideWhenUsed="false" QFormat="true" Name="No Spacing"/><br />
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Light Shading"/><br />
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Light List"/><br />
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Light Grid"/><br />
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Shading 1"/><br />
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Shading 2"/><br />
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium List 1"/><br />
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium List 2"/><br />
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Grid 1"/><br />
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Grid 2"/><br />
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Grid 3"/><br />
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Dark List"/><br />
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Colorful Shading"/><br />
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Colorful List"/><br />
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Colorful Grid"/><br />
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Light Shading Accent 1"/><br />
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Light List Accent 1"/><br />
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Light Grid Accent 1"/><br />
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1"/><br />
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1"/><br />
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium List 1 Accent 1"/><br />
  <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision"/><br />
  <w:LsdException Locked="false" Priority="34" SemiHidden="false"<br />
   UnhideWhenUsed="false" QFormat="true" Name="List Paragraph"/><br />
  <w:LsdException Locked="false" Priority="29" SemiHidden="false"<br />
   UnhideWhenUsed="false" QFormat="true" Name="Quote"/><br />
  <w:LsdException Locked="false" Priority="30" SemiHidden="false"<br />
   UnhideWhenUsed="false" QFormat="true" Name="Intense Quote"/><br />
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium List 2 Accent 1"/><br />
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1"/><br />
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1"/><br />
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1"/><br />
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Dark List Accent 1"/><br />
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Colorful Shading Accent 1"/><br />
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Colorful List Accent 1"/><br />
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Colorful Grid Accent 1"/><br />
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Light Shading Accent 2"/><br />
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Light List Accent 2"/><br />
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Light Grid Accent 2"/><br />
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2"/><br />
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2"/><br />
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium List 1 Accent 2"/><br />
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium List 2 Accent 2"/><br />
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2"/><br />
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2"/><br />
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2"/><br />
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Dark List Accent 2"/><br />
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Colorful Shading Accent 2"/><br />
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Colorful List Accent 2"/><br />
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Colorful Grid Accent 2"/><br />
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Light Shading Accent 3"/><br />
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Light List Accent 3"/><br />
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Light Grid Accent 3"/><br />
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3"/><br />
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3"/><br />
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium List 1 Accent 3"/><br />
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium List 2 Accent 3"/><br />
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3"/><br />
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3"/><br />
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3"/><br />
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Dark List Accent 3"/><br />
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Colorful Shading Accent 3"/><br />
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Colorful List Accent 3"/><br />
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Colorful Grid Accent 3"/><br />
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Light Shading Accent 4"/><br />
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Light List Accent 4"/><br />
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Light Grid Accent 4"/><br />
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4"/><br />
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4"/><br />
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium List 1 Accent 4"/><br />
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium List 2 Accent 4"/><br />
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4"/><br />
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4"/><br />
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4"/><br />
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Dark List Accent 4"/><br />
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Colorful Shading Accent 4"/><br />
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Colorful List Accent 4"/><br />
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Colorful Grid Accent 4"/><br />
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Light Shading Accent 5"/><br />
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Light List Accent 5"/><br />
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Light Grid Accent 5"/><br />
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5"/><br />
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5"/><br />
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium List 1 Accent 5"/><br />
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium List 2 Accent 5"/><br />
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5"/><br />
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5"/><br />
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5"/><br />
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Dark List Accent 5"/><br />
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Colorful Shading Accent 5"/><br />
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Colorful List Accent 5"/><br />
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Colorful Grid Accent 5"/><br />
  <w:LsdException Locked="false" Priority="60" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Light Shading Accent 6"/><br />
  <w:LsdException Locked="false" Priority="61" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Light List Accent 6"/><br />
  <w:LsdException Locked="false" Priority="62" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Light Grid Accent 6"/><br />
  <w:LsdException Locked="false" Priority="63" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6"/><br />
  <w:LsdException Locked="false" Priority="64" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6"/><br />
  <w:LsdException Locked="false" Priority="65" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium List 1 Accent 6"/><br />
  <w:LsdException Locked="false" Priority="66" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium List 2 Accent 6"/><br />
  <w:LsdException Locked="false" Priority="67" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6"/><br />
  <w:LsdException Locked="false" Priority="68" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6"/><br />
  <w:LsdException Locked="false" Priority="69" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6"/><br />
  <w:LsdException Locked="false" Priority="70" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Dark List Accent 6"/><br />
  <w:LsdException Locked="false" Priority="71" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Colorful Shading Accent 6"/><br />
  <w:LsdException Locked="false" Priority="72" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Colorful List Accent 6"/><br />
  <w:LsdException Locked="false" Priority="73" SemiHidden="false"<br />
   UnhideWhenUsed="false" Name="Colorful Grid Accent 6"/><br />
  <w:LsdException Locked="false" Priority="19" SemiHidden="false"<br />
   UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis"/><br />
  <w:LsdException Locked="false" Priority="21" SemiHidden="false"<br />
   UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis"/><br />
  <w:LsdException Locked="false" Priority="31" SemiHidden="false"<br />
   UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference"/><br />
  <w:LsdException Locked="false" Priority="32" SemiHidden="false"<br />
   UnhideWhenUsed="false" QFormat="true" Name="Intense Reference"/><br />
  <w:LsdException Locked="false" Priority="33" SemiHidden="false"<br />
   UnhideWhenUsed="false" QFormat="true" Name="Book Title"/><br />
  <w:LsdException Locked="false" Priority="37" Name="Bibliography"/><br />
  <w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading"/><br />
 </w:LatentStyles><br />
</xml><![endif]--><!--[if gte mso 10]></p>
<style>
 /* Style Definitions */
 table.MsoNormalTable
	{mso-style-name:"Table Normal";
	mso-tstyle-rowband-size:0;
	mso-tstyle-colband-size:0;
	mso-style-noshow:yes;
	mso-style-priority:99;
	mso-style-parent:"";
	mso-padding-alt:0in 5.4pt 0in 5.4pt;
	mso-para-margin-top:0in;
	mso-para-margin-right:0in;
	mso-para-margin-bottom:10.0pt;
	mso-para-margin-left:0in;
	line-height:115%;
	mso-pagination:widow-orphan;
	font-size:11.0pt;
	font-family:"Calibri","sans-serif";
	mso-ascii-font-family:Calibri;
	mso-ascii-theme-font:minor-latin;
	mso-hansi-font-family:Calibri;
	mso-hansi-theme-font:minor-latin;
	mso-bidi-font-family:"Times New Roman";
	mso-bidi-theme-font:minor-bidi;}
</style>
<p><![endif]--></p>
<p class="MsoNormal"><em>Author’s Note:<span>  </span>I’d like to extend a special thank you to <a href="http://www.socalsheds.com/">Quality Sheds of Glendale</a> for allowing me to use their company as an example in this article.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.itegritygroup.com/google-places-optimization/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Dreamhost IMAP Email Setup in Outlook</title>
		<link>http://www.itegritygroup.com/dreamhost-email-setup-outlook/</link>
		<comments>http://www.itegritygroup.com/dreamhost-email-setup-outlook/#comments</comments>
		<pubDate>Sat, 09 Jul 2011 03:07:45 +0000</pubDate>
		<dc:creator>skozyk</dc:creator>
				<category><![CDATA[Email]]></category>
		<category><![CDATA[Resources]]></category>

		<guid isPermaLink="false">http://www.itegritygroup.com/?p=3400</guid>
		<description><![CDATA[Outlook 2010 Setup Instructions 1. From the main navigation menu, select “File” and in the dropdown menu, select “Info“. To the right of “Info” in “Account Information” pane, click on the “New Account” button. 2. After the “Auto Account Setup” window pops up, select the “Manually configure server settings or additional server types” radio button. [...]]]></description>
			<content:encoded><![CDATA[<h1>Outlook 2010 Setup Instructions</h1>
<p>1. From the main navigation menu, select “<strong>File</strong>” and in the dropdown menu, select “<strong>Info</strong>“. To the right of “<strong>Info</strong>” in “<strong>Account Information</strong>” pane, click on the “<strong>New Account</strong>” button.</p>
<p><a href="http://www.itegritygroup.com/wp-content/uploads/2011/09/outlook-account-information.png"><img class="alignnone size-full wp-image-3401" title="outlook-account-information" src="http://www.itegritygroup.com/wp-content/uploads/2011/09/outlook-account-information.png" alt="outlook account information for dreamhost setup" width="451" height="373" /></a></p>
<p>2. After the “<strong>Auto Account Setup</strong>” window pops up, select the “<strong>Manually configure server settings or additional server types</strong>” radio button.<span id="more-3400"></span></p>
<p><a href="http://www.itegritygroup.com/wp-content/uploads/2011/09/manually-configure-server.png"><img class="alignnone size-full wp-image-3402" title="manually-configure-server" src="http://www.itegritygroup.com/wp-content/uploads/2011/09/manually-configure-server.png" alt="manually configure server" width="590" height="477" /></a></p>
<p>3. In the next window that appears, make sure the “<strong>Internet E-mail</strong>” radio button is selected.</p>
<p><a href="http://www.itegritygroup.com/wp-content/uploads/2011/09/dreamhost-email-choose-service.png"><img class="alignnone size-full wp-image-3403" title="dreamhost-email-choose-service" src="http://www.itegritygroup.com/wp-content/uploads/2011/09/dreamhost-email-choose-service.png" alt="dreamhost email choose service" width="446" height="269" /></a></p>
<p>4. The “<strong>Internet E-mail Settings</strong>” window should now appear. Enter your information as shown in following example making sure you select IMAP as your Account Type and use your entire email address as your user name. The incoming and outgoing servers should both be the same, mail.mydomain.com, where mydomian.com is your domain name, for example mail.itegritygroup.com. “Require logon using Secure Password Authentication (SPA)”, should <span style="text-decoration: underline;">NOT</span> be checked.</p>
<p><a href="http://www.itegritygroup.com/wp-content/uploads/2011/07/internet-email-settings.png"><img class="alignnone size-full wp-image-3410" title="internet-email-settings" src="http://www.itegritygroup.com/wp-content/uploads/2011/07/internet-email-settings-e1315889625241.png" alt="dreamhost email settings" width="590" height="412" /></a></p>
<p>5. Click on the “<strong>More Settings …</strong>” button.</p>
<p>6. Select the &#8220;<strong>Outgoing Server</strong>&#8221; tab. Check the box next to “<strong>My outgoing server (SMTP) requires authentication</strong>” and make sure the first radio button is selected, “Use same settings as my incoming mail server”.</p>
<p><a href="http://www.itegritygroup.com/wp-content/uploads/2011/07/dreamhost-outgoing-server.png"><img class="alignnone size-full wp-image-3406" title="dreamhost-outgoing-server" src="http://www.itegritygroup.com/wp-content/uploads/2011/07/dreamhost-outgoing-server.png" alt="dreamhost outgoing server" width="399" height="262" /></a></p>
<p>7. Select the “<strong>Advanced</strong>” tab. You shouldn’t have to make changes to this page, but it’s a good idea to double check the settings. For IMAP, the “<strong>Incoming server (IMAP)</strong>” should be set to 143 and “<strong>Outgoing server (SMTP)</strong>” to 25.</p>
<p><a href="http://www.itegritygroup.com/wp-content/uploads/2011/07/dreamhost-advanced.png"><img class="alignnone size-full wp-image-3407" title="dreamhost-advanced" src="http://www.itegritygroup.com/wp-content/uploads/2011/07/dreamhost-advanced.png" alt="dreamhost advanced settings" width="399" height="308" /></a></p>
<p>8. At this point your email should be configured properly. Click the “<strong>OK</strong>“ button and you’ll be taken back to the “<strong>Internet E-mail Settings</strong>” window. Click on the “<strong>Test Account Settings</strong>” button and if a test email is able to be sent and received successfully then you’re finished. Click on the “<strong>Next</strong>“ button and then “<strong>Finish</strong>“ in the window that follows.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.itegritygroup.com/dreamhost-email-setup-outlook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finding Images for Your Website: istockphoto.com</title>
		<link>http://www.itegritygroup.com/website-images-istockphoto/</link>
		<comments>http://www.itegritygroup.com/website-images-istockphoto/#comments</comments>
		<pubDate>Sun, 19 Jun 2011 18:42:08 +0000</pubDate>
		<dc:creator>skozyk</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.itegritygroup.com/?p=3365</guid>
		<description><![CDATA[istockphoto.com is an excellent and inexpensive resource for finding images and other types of media for use on your website or for print.  In addition to photos, istockphoto.com also has video, audio, flash, and vector images available for purchase.  Once you buy an image or other asset from istockphoto.com, in most cases you can use [...]]]></description>
			<content:encoded><![CDATA[<p>istockphoto.com is an excellent and inexpensive resource for finding images and other types of media for use on your website or for print.  In addition to photos, istockphoto.com also has video, audio, flash, and vector images available for purchase.  Once you buy an image or other asset from istockphoto.com, in most cases you can use it on your website legally.</p>
<p>The method you use to buy images on istockphoto.com is through the purchase of credits.  Credit costs depend on the volume of credits you purchase.  Buying a batch of 50 credits or less will cost you about $1.50-$1.60 per credit.</p>
<p>To get started, navigate to istockphoto.com and create a free account and then login.  Next, begin searching for your images by using istockphoto.com&#8217;s search tool</p>
<p><a href="http://www.itegritygroup.com/wp-content/uploads/2011/08/keyword-search.png"><img class="alignnone size-full wp-image-3366" title="keyword-search" src="http://www.itegritygroup.com/wp-content/uploads/2011/08/keyword-search-e1314322573126.png" alt="istockphoto seach tool" width="600" height="134" /></a></p>
<p>Once the results appear for your search term, you&#8217;ll be presented with <span id="more-3365"></span>advanced search options in the left sidebar of the page for you to optionally fine tune your search.  There are a multitude of options here, however if you&#8217;re looking specifically for images and photos for your website, you can check the &#8220;Photos&#8221; box under &#8220;Narrow Your Results&#8221; to instruct istockphoto.com to only show photos in your search results, excluding vector illustrations, video, audio, and flash.</p>
<p><a href="http://www.itegritygroup.com/wp-content/uploads/2011/08/narrow-your-results.png"><img class="size-full wp-image-3368 alignnone" title="narrow-your-results" src="http://www.itegritygroup.com/wp-content/uploads/2011/08/narrow-your-results.png" alt="istockphoto narrow your results" width="199" height="260" /></a></p>
<p>If you&#8217;d like to further refine your search results, scroll down to find the sidebar header that reads &#8220;Photos &amp; Illustration Filters”.  Click on the small arrow on the right hand side to expand the Photo &amp; Illustration Filters search options.</p>
<p>&nbsp;</p>
<p><a href="http://www.itegritygroup.com/wp-content/uploads/2011/08/photos-illustration-filters.png"><img class="size-full wp-image-3369 alignnone" title="photos-illustration-filters" src="http://www.itegritygroup.com/wp-content/uploads/2011/08/photos-illustration-filters.png" alt="istockphotos.com photos and illustration filters" width="209" height="384" /></a></p>
<p>The new search filters will allow you to find images that are oriented in certain way (vertical, horizontal, or square) and/or contain a specific color that you choose (possibly to match your company logo and/or website branding).  I find the CopySpace filter to be of little use as I&#8217;ve found it to produce inconsistent results.</p>
<p>Once you begin browsing through your search results and find an image you like, click on the tiny light bulb icon below the image to save it to your lightbox.  If you haven’t created one yet, you’ll be provided a link to create a new lightbox after clicking on the icon.</p>
<p><a href="http://www.itegritygroup.com/wp-content/uploads/2011/08/search-results.png"><img class="alignnone size-full wp-image-3370" title="search-results" src="http://www.itegritygroup.com/wp-content/uploads/2011/08/search-results.png" alt="istockphoto.com search results" width="405" height="272" /></a></p>
<p>You can also click on the image to view a larger version along with additional details about the image including cost.  On this page you’ll have another opportunity to add the image to your lightbox by clicking on the “Add to Lightbox” link below the image.   You can also right click on the image or click on “Download a comp” to copy the watermarked image to place on your website or print document to test to see how the image looks where you’re proposing to use it.  If it passes the test, you can then decide to purchase the image.</p>
<p><a href="http://www.itegritygroup.com/wp-content/uploads/2011/08/istock-detailed-image.png"><img class="size-full wp-image-3372 alignnone" title="istock-detailed-image" src="http://www.itegritygroup.com/wp-content/uploads/2011/08/istock-detailed-image.png" alt="istockphoto.com detailed image" width="396" height="355" /></a></p>
<p>Smaller web ready images are usually 1 to 2 credits which comes out be about $1.50 to $3.00 per image.   Some of the higher-end photos and larger image sizes are 5 credits and up, so when browsing through the images and photos you&#8217;re considering for use on your website, pay attention to how many credits the image costs.  Although most images will be in the 1 to 2 credit range, many can be more expensive and if you require a lot of images for your site, the costs can begin to add up, especially if you&#8217;re on a tight budget.</p>
<p><a href="http://www.itegritygroup.com/wp-content/uploads/2011/08/istockphotos-sizes.png"><img class="alignnone size-full wp-image-3373" title="istockphotos-sizes" src="http://www.itegritygroup.com/wp-content/uploads/2011/08/istockphotos-sizes.png" alt="istockphotos.com image sizes" width="543" height="302" /></a></p>
<p>For website images, I find that the “XSmall” image size is usually sufficiently large enough for effective use on a website, however sometimes the “Small” size is needed.  If you’re not familiar with pixel sizes, there is a handy tool you can use to enter the pixel dimensions provided by istockphoto.com for each of the available image sizes,  <a href="http://auctionrepair.com/pixels.html">http://auctionrepair.com/pixels.html</a></p>
<p>Just enter the width (the first number) and height pixels in the fields and click on the link, “Show me an image this size”.  A new window or tab in your browser will open with a generic blue image showing you the size the istockphoto.com image would be.</p>
<p><a href="http://www.itegritygroup.com/wp-content/uploads/2011/08/pixel-size-tool.png"><img class="alignnone size-full wp-image-3374" title="pixel-size-tool" src="http://www.itegritygroup.com/wp-content/uploads/2011/08/pixel-size-tool.png" alt="pixel size tool" width="291" height="132" /></a></p>
<p>When purchasing an istockphoto.com image, make sure you do indeed select the correct image size because by default, they have the “Large” size image selected.  In the example above, if you didn’t click on the smaller image size to purchase,  you’d be buying a 15 credit “Large” image instead of a 2 credit “XSmall” image which is difference of about $20!</p>
<p>If you’re looking for a large number of images and graphics for your website, it’s a good idea to perform a number of different searches and browse through images and simply add the ones you think you may use to your lightbox.  It’s best to save the images to your lightbox because then you can easily view them all in one place and share your lightbox with other istockphoto.com members.  Once you feel you have enough images to choose from, you can open your lightbox and begin narrowing down which images you like best.<br />
&nbsp;</p>
<h2>Sharing Your Lightbox</h2>
<p>&nbsp;</p>
<p>If you’re working with a web designer, you’ll want to share your lightbox with them so they can either assist you in determining which images would work best in which locations on your site and/or you can show them which images you’ve already purchased.</p>
<p>To share a lightbox, you’ll need to first open your saved lightbox(s).  At the very bottom of your browser window on any istockphoto.com page (when you’re logged into the site), you’ll see a dark gray ribbon bar.  In the bottom left corner of the ribbon, click on “My Account”.  A popup menu will rise and then click on “Lightboxes”.</p>
<p><a href="http://www.itegritygroup.com/wp-content/uploads/2011/08/istock-my-account.png"><img class="alignnone size-full wp-image-3375" title="istock-my-account" src="http://www.itegritygroup.com/wp-content/uploads/2011/08/istock-my-account.png" alt="istockphoto.com my account" width="196" height="291" /></a></p>
<p>On the next screen you’ll see all of your lightboxes.  To the far right, next to lightbox name you’ve decided to share, under the “Actions” header, click on the link, “Admin”.</p>
<p><a href="http://www.itegritygroup.com/wp-content/uploads/2011/08/istock-actions.png"><img class="alignnone size-full wp-image-3376" title="istock-actions" src="http://www.itegritygroup.com/wp-content/uploads/2011/08/istock-actions.png" alt="istockphoto.com actions" width="194" height="66" /></a></p>
<p>Next, click on the button, “Choose a Member”.  You can either type in the person’s member name to grant them access to your lightbox or do a member search.  My member name, for example, is skozyk.</p>
<p><a href="http://www.itegritygroup.com/wp-content/uploads/2011/08/istock-choose-member.png"><img class="alignnone size-full wp-image-3377" title="istock-choose-member" src="http://www.itegritygroup.com/wp-content/uploads/2011/08/istock-choose-member.png" alt="istockphoto.com share lightbox" width="162" height="71" /></a></p>
<p>Once you’ve finalized which images you want, you can begin purchasing them from within your lightbox and downloading the images individually to your hard drive.  It’s usually best to create a new folder on your computer to download the images to where you can later zip the folder to store or send the web designer.</p>
<p>After you’ve downloaded all of your images and have zipped your images folder, if the folder file size is 10mb or under you can email the folder to the web designer.  If it’s larger, you’ll need to use a free service like www.YouSendIt.com to transfer the files to them.</p>
<p>Istockphoto.com is an indispensible resource for finding stock images, photos, and other types of media for legal use on your website.   It helps give your website or print project a very professional  appearance using high quality images at an affordable price.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.itegritygroup.com/website-images-istockphoto/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dreamhost POP3 Setup in Outlook</title>
		<link>http://www.itegritygroup.com/dreamhost-pop3</link>
		<comments>http://www.itegritygroup.com/dreamhost-pop3#comments</comments>
		<pubDate>Wed, 25 May 2011 18:03:32 +0000</pubDate>
		<dc:creator>skozyk</dc:creator>
				<category><![CDATA[Email]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Dreamhost email]]></category>

		<guid isPermaLink="false">http://www.itegritygroup.com/?p=3423</guid>
		<description><![CDATA[Outlook 2010 Setup Instructions 1. From the main navigation menu, select “File” and in the dropdown menu, select “Info“. To the right of “Info” in “Account Information” pane, click on the “New Account” button. 2. After the “Auto Account Setup” window pops up, select the “Manually configure server settings or additional server types” radio button. [...]]]></description>
			<content:encoded><![CDATA[<h1>Outlook 2010 Setup Instructions</h1>
<p>1. From the main navigation menu, select “<strong>File</strong>” and in the dropdown menu, select “<strong>Info</strong>“. To the right of “<strong>Info</strong>” in “<strong>Account Information</strong>” pane, click on the “<strong>New Account</strong>” button.</p>
<p><a href="http://www.itegritygroup.com/wp-content/uploads/2011/09/outlook-account-information.png"><img class="alignnone size-full wp-image-3401" title="outlook-account-information" src="http://www.itegritygroup.com/wp-content/uploads/2011/09/outlook-account-information.png" alt="outlook account information for dreamhost setup" width="451" height="373" /></a></p>
<p>2. After the “<strong>Auto Account Setup</strong>” window pops up, select the “<strong>Manually configure server settings or additional server types</strong>” radio button.<span id="more-3423"></span></p>
<p><a href="http://www.itegritygroup.com/wp-content/uploads/2011/09/manually-configure-server.png"><img class="alignnone size-full wp-image-3402" title="manually-configure-server" src="http://www.itegritygroup.com/wp-content/uploads/2011/09/manually-configure-server.png" alt="manually configure server" width="590" height="477" /></a></p>
<p>3. In the next window that appears, make sure the “<strong>Internet E-mail</strong>” radio button is selected.</p>
<p><a href="http://www.itegritygroup.com/wp-content/uploads/2011/09/dreamhost-email-choose-service.png"><img class="alignnone size-full wp-image-3403" title="dreamhost-email-choose-service" src="http://www.itegritygroup.com/wp-content/uploads/2011/09/dreamhost-email-choose-service.png" alt="dreamhost email choose service" width="446" height="269" /></a></p>
<p>4. The “<strong>Internet E-mail Settings</strong>” window should now appear. Enter your information as shown in following example making sure you select POP3 as your Account Type and use your entire email address as your user name. The incoming and outgoing servers should both be the same, mail.mydomain.com, where mydomian.com is your domain name, for example mail.itegritygroup.com. “Require logon using Secure Password Authentication (SPA)”, should <span style="text-decoration: underline;">NOT</span> be checked.</p>
<p><a href="http://www.itegritygroup.com/wp-content/uploads/2011/10/pop3-add-new-account.png"><img class="alignnone size-full wp-image-3425" title="pop3-add-new-account" src="http://www.itegritygroup.com/wp-content/uploads/2011/10/pop3-add-new-account.png" alt="pop3-add-new-account" width="687" height="478" /></a></p>
<p>5. Click on the “<strong>More Settings …</strong>” button.</p>
<p>6. Select the &#8220;<strong>Outgoing Server</strong>&#8221; tab.  Check the box next to “<strong>My outgoing server (SMTP) requires authentication</strong>” and make sure the first radio button is selected, “Use same settings as my incoming mail server”.</p>
<p><a href="http://www.itegritygroup.com/wp-content/uploads/2011/10/pop3-outgoing-server.jpg"><img class="alignnone size-full wp-image-3426" title="pop3-outgoing-server" src="http://www.itegritygroup.com/wp-content/uploads/2011/10/pop3-outgoing-server.jpg" alt="pop3-outgoing-server" width="402" height="442" /></a></p>
<p>7. Select the “<strong>Advanced</strong>” tab. You shouldn’t have to make changes to this page, but it’s a good idea to double check the settings. For POP3, the “<strong>Incoming server (POP3)</strong>” should be set to 110 and “<strong>Outgoing server (SMTP)</strong>” to 25.</p>
<p><a href="http://www.itegritygroup.com/wp-content/uploads/2011/10/pop3-advanced.jpg"><img class="alignnone size-full wp-image-3427" title="pop3-advanced" src="http://www.itegritygroup.com/wp-content/uploads/2011/10/pop3-advanced.jpg" alt="pop3-advanced" width="402" height="442" /></a></p>
<p>8. At this point your email should be configured properly. Click the “<strong>OK</strong>“ button and you’ll be taken back to the “<strong>Internet E-mail Settings</strong>” window. Click on the “<strong>Test Account Settings</strong>” button and if a test email is able to be sent and received successfully then you’re finished. Click on the “<strong>Next</strong>“ button and then “<strong>Finish</strong>“ in the window that follows.</p>
<p>Note: If these setting don&#8217;t work, try using <strong>587</strong> in the<strong> Outgoing server (SMTP)</strong> field on the advanced tab instead of <strong>25</strong> as some ISPs block port 25.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.itegritygroup.com/dreamhost-pop3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

