<?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>More Than Marketing &#187; WordPress</title>
	<atom:link href="http://morethanmarketing.net/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://morethanmarketing.net</link>
	<description>Todd Van Hoosear on social media and the evolution of marketing and business</description>
	<lastBuildDate>Thu, 23 Feb 2012 13:46:36 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Extending Absolute Privacy&#8217;s moderation ability safely</title>
		<link>http://morethanmarketing.net/2010/06/extending-absolute-privacys-moderation-ability-safely/</link>
		<comments>http://morethanmarketing.net/2010/06/extending-absolute-privacys-moderation-ability-safely/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 20:04:12 +0000</pubDate>
		<dc:creator>Todd Van Hoosear</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://morethanmarketing.net/?p=412</guid>
		<description><![CDATA[Yesterday I wrote about my collection of favorite WordPress plugins for managing a private user community. One of the plugins I mentioned was Absolute Privacy.
I love my friends, but I wouldn&#8217;t trust most of them with a loaded weapon. Similarly, I want to give my editors the ability to approve new users in a closed [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday <a href="http://morethanmarketing.net/2010/06/using-wordpress-for-a-private-forum/" target="_blank">I wrote about my collection of favorite WordPress plugins for managing a private user community</a>. One of the plugins I mentioned was <a href="http://wordpress.org/extend/plugins/absolute-privacy/" target="_blank">Absolute Privacy</a>.</p>
<p>I love my friends, but I wouldn&#8217;t trust most of them with a loaded weapon. Similarly, I want to give my editors the ability to approve new users in a closed WordPress forum I set up for one of our clients, but I don&#8217;t want to give editors all of the functionality that comes with the manage_options Capability.</p>
<p>I&#8217;m using the Absolute Privacy plugin for WordPress, which I&#8217;ve slowly been modifying myself, so it&#8217;s the one plug-in I&#8217;ve set to version 999 to ensure that it doesn&#8217;t get accidentally overridden by an overzealous admin (read: me). This means it&#8217;s also the one plugin I&#8217;ve been playing around with deeply.</p>
<p>By default, Absolute Privacy tests against the manage_options Capability flag to see if you should have permission to moderate new users. I don&#8217;t want to give my editors the ability to manage all WordPress options, so I did the following:</p>
<ol>
<li>In Users-&gt;Roles, I added a new capability called approve_new_users, and gave Administrators and Editors the capability.</li>
<li>Then I went into the code for Absolute Privacy and found the function that creates the Moderate Users menu item. I edited two lines of code:
<ul>
<li>I replaced the line that tests the user&#8217;s Capability to read<br /> <code>if (!current_user_can('approve_new_users'))</code></li>
<li>I edited the add_submenu_page call to read<br /> <code>add_submenu_page('users.php', 'Moderate Users', 'Moderate Users', 'approve_new_users', basename(__FILE__), array(&amp;$this,'moderateUsers'));</code></li>
</ul>
</li>
</ol>
<p>Done!</p>
]]></content:encoded>
			<wfw:commentRss>http://morethanmarketing.net/2010/06/extending-absolute-privacys-moderation-ability-safely/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using WordPress for a private forum</title>
		<link>http://morethanmarketing.net/2010/06/using-wordpress-for-a-private-forum/</link>
		<comments>http://morethanmarketing.net/2010/06/using-wordpress-for-a-private-forum/#comments</comments>
		<pubDate>Mon, 07 Jun 2010 20:02:34 +0000</pubDate>
		<dc:creator>Todd Van Hoosear</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://morethanmarketing.net/?p=415</guid>
		<description><![CDATA[I&#8217;ve recently launched a private forum on WordPress, and here&#8217;s a rundown of the plugins and add-ons I&#8217;ve used to secure the site, manage members, etc. (this isn&#8217;t a comprehensive list, just a list of the plug-ins that make locking down and managing a blog simpler):

Absolute Privacy &#8211; I played around with a LOT of [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve recently launched a private forum on WordPress, and here&#8217;s a rundown of the plugins and add-ons I&#8217;ve used to secure the site, manage members, etc. (this isn&#8217;t a comprehensive list, just a list of the plug-ins that make locking down and managing a blog simpler):</p>
<ul>
<li><strong><a href="http://wordpress.org/extend/plugins/absolute-privacy/" target="_blank">Absolute Privacy</a></strong> &#8211; I played around with a LOT of user moderation tools before settling on this one, with a few modifications, which I&#8217;ll talk about in a separate post. Absolute Privacy gives you the ability to ask for a first and last name during registration, set a password upfront (no emailing passwords), review and approve new users, force redirects for unregistered users (nicer than password-restricting the site using .htaccess), manage access to RSS feeds, and most importantly, <strong>edit all the confirmation emails new users get</strong>, something sorely missing in WordPress by default, and not handled well by other access management plugins. Simply put: spectacular!</li>
<li><a href="http://wordpress.org/extend/plugins/bm-custom-login/" target="_blank"><strong>BM Custom Login</strong></a> &#8211; This is what I used to redesign the look of the registration window, which keeps getting longer and longer as I add more fields! It&#8217;s nicely extensible, and plays well with all my plugins. </li>
<li><a href="http://wordpress.org/extend/plugins/cimy-user-extra-fields/" target="_blank"><strong>Cimy User Extra Fields</strong></a> &#8211; While this is definitely one of the more complicated and difficult-to-use plugins I&#8217;ve worked with, it&#8217;s also one of the most extensible, so for that reason I hold onto it. I use this plugin to add extra fields that allow the administrators and editors to make a call as to whether to allow the user to join the community or not. I haven&#8217;t gotten around to editing the Absolute Privacy&#8217;s Moderate Users screen to display the extra info (note to self), but if the moderator clicks on the profile link, they&#8217;ll see all the fields and can then go back and approve or deny the addition. </li>
<li><strong><a href="http://wordpress.org/extend/plugins/members/" target="_blank">Members</a></strong> &#8211; I use this to give me more capability to manage roles and, well, capabilities.</li>
<li><a href="http://wordpress.org/extend/plugins/members-list/" target="_blank"><strong>Members List</strong></a> &#8211; This allows me to create a public, searchable listing of members. I can easily edit how the list appears, and what it links to.</li>
<li><a href="http://wordpress.org/extend/plugins/register-plus/" target="_blank"><strong>Register Plus</strong></a> &#8211; It&#8217;s a crying shame that the developer has stopped making updates to this plug-in, as it looks like it could handle so much of what I want inside one plugin, but alas, most of it is broken. I still use it to display and manage the Terms of Service and other Disclaimers for the site, as well as to permit the use of multiple logins with the same email address (mostly for testing purposes). There are a TON of other features, but many of them don&#8217;t seem to work any longer.</li>
</ul>
<p>I&#8217;ll share some other plugins that I&#8217;m using to encourage user activity, but this is a great combination that provides me with some peace-of-mind.</p>
]]></content:encoded>
			<wfw:commentRss>http://morethanmarketing.net/2010/06/using-wordpress-for-a-private-forum/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

