subscribe

You can update this text in your control panel, under Theme Options. Nam massa. Ut tempor augue non sapien lobortis aliquam. Maecenas.

Tag: membership

Discover How to Build Profitable Membership Site

Tuesday, October 27th, 2009

200910272027.jpgAs mentioned a few days back – the popular Membership Site Mastermind Course has just reopened its doors to new members for the last time in 2009 – for 3 days only.

In short – Membership sites are where you sign up readers to pay a monthly subscription to receive teaching, tips, community, coaching or some other benefit from you. They don’t suit every niche and they do take a lot of work – but if you get them right they can be incredibly profitable.

A $100,000 a month example – at Blog World Expo I managed to catch part of a session of Timothy Sykes whose TimAlerts membership site pulls in over $100,000 a month. He built this off the back of a free blog (which he still runs) and with really affordable software (he uses WordPress) and mainly free plugins.

So yes – membership sites can be very profitable when you get them right.

Bonuses for Fast Action – If you signup in the next 24 hours Yaro is including some fast action bonuses including presentations on:

  • buying and selling websites
  • building profitable blogs
  • using video in online marketing
  • conversion points in online marketing

If you want a taste of Yaro’s style and the direction of this course grab this free report which is a great introduction to the topic and contains some great information on the topic whether you do the full course or not.

Again – the doors for Membership Site Mastermind close again on Friday at midnight. Also, as usual Yaro has a money back guarantee on this teaching – if you sign up and then find it’s not for you you can always get your money back.

If a membership site is on your radar as a potential way to extend your blog then this course is well worth checking out. Sign up Here.

Post from: Blog Tips at ProBlogger.
468x60.jpg

Discover How to Build Profitable Membership Site

Learn How to Create Your Own Membership Site – Free Report

Thursday, October 22nd, 2009

msm_logo.pngIf there was one emerging trend spoken about more than anything else in the Make Money Blogging track at Blog World Expo it was ‘membership sites’. A number of sessions were directly on the topic while quite a few others touched on the topic (including the ones I spoke on).

It seems more and more bloggers are looking to expand in this way – whether it be by setting up teaching courses, starting paid forums or setting up areas where they offer subscribers exclusive content to paying subscribers.

By no means is it the only model to make money online – but it is one that more and more bloggers are looking towards and one that we’re even seeing more mainstream media doing also.

Yaro has this week relaunched a free report on the topic of Membership Sites – The Membership Site Mastermind Report.

The reports shares how Yaro uses membership sites to make a six figure income, how he runs the technology side of things, gives insights on how he gets members to stick on his sites and more. It’s a free report to anyone who gives an email address.

Yaro will be relaunching his Membership Site Mastermind course in the next week or so – but this report is free and contains useful information even if you go no further than downloading it and not going on with the full course.

PS: Get more free teaching on Membership Sites from Yaro in these two videos here and here. Also check out an interview Yaro did with Daniel Scocco on his $10,000 a month membership site.

Post from: Blog Tips at ProBlogger.
468x60.jpg

Learn How to Create Your Own Membership Site – Free Report

How to Use WordPress as a Membership Directory

Saturday, March 1st, 2008

pghdesigners.jpg

This article was written by Chris Cagle.

Do you want to create a moderated membership directory that showcases your member’s information? Do you want it to be flexible, be very little work after initial setup, and use a world-class open source platform that you are already familiar with?

Your first thought might not be to use WordPress for such a project, but since it already has an extremely easy way to accept, moderate and update registrations – it’s a perfect candidate.

In this tutorial I will show you how I built a successful membership directory using nothing more than a standard WordPress 2.3+ install and 2 very powerful plugins.

The Plugin Installs

The heart of the site is powered by two plugins.

First, use the WP User Manager plugin from Dealsway to add new fields to the user profiles. The install and setup is pretty straight forward – just activate the plugin and add any new fields you want via it’s own admin section. The information entered in these fields will become the information that will create the member’s “homepage.”

Secondly, we use the famous Role Manager plugin which restricts what your members can do once they are logged into your site. This is important because in order for a member to be granted their own author page, he or she needs to have made at least one post.

In my case, I didn’t want my members to have the ability to post anything, just to only fill out their profile information. To get around this, I used the Role Manager plugin as-is, but changed the Author role to only have the rights Publish Posts and Read. (The Hide Dashboard capability you see in the screen shot is a function of the IWG Hide Dashboard plugin. It was an easy way to clean up the admin panel for my members.)

changerole.gif

Setting WordPress Options

After you have installed all the plugins, we need to get WordPress ready for your new registrations.

In your Admin panel, under options, set your New User Default Role to Subscriber. This ensures that a member won’t be given an author page until you “approve” and manually move them to the Author role. (A Subscriber can’t make posts, an Author can.)

newuserdefault.gif

Once a member has registered and filled out all the appropriate profile information, we need to “approve” that member. We do this by simply moving that member into the Author role and making a post on his or her behalf. I want each approved member to have made a post in order to create the New Member Feed [example]. To post on behalf of that member, choose that member’s name out of the dropdown list in the Post Author section in the sidebar before publishing their post.

chooseauthor.gif

This post doesn’t need to be anything spectacular. On Pittsburgh Designers, I simply write “This business has been added as a member. Please visit their Design Profile.”

There are other ways of doing this to make it slightly simpler, but I do it this way because I want to use WordPress’s default feed as a New Member Feed.

Your membership management duties are now done.

Creating the Author Page

All that’s left now is the need to create the author.php template to display all this new member profile information that the WP User Manager plugin allowed us to accept.

For the sake of this tutorial, we only added 2 new fields to the member profile page: business_name and business_owner.

At the top of the author.php template we will add this code. Hint: Each new field you add will need to be declared here.

<?php
/*
Template Name: Author Template
*/

global $wp_query;
$curauth = $wp_query->get_queried_object();

$key="wpum_"."business_name";
$business_name = get_usermeta($curauth->ID, $key);

$key="wpum_"."business_owner";
$business_owner = get_usermeta($curauth->ID, $key);

?>

Now right below that, in the body section of your template, we are going to add this data and markup to display it in a structured way:

<?php get_header(); ?>
<div id="bodycontent" >
<div class="bodytext" >
<h2><?php echo $business_name; ?></h2>
<p>The owner of this business is <?php echo $business_owner; ?></p>
</div>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>

The next step is to also show some of the default fields that the member entered within their profile. I only want to show the member’s website address and About the user section, so we modify our template to look like this:

<?php get_header(); ?>
<div id="bodycontent" >
<div class="bodytext" >
<h2><?php echo $business_name; ?></h2>
<p>The owner of this business is <?php echo $business_owner; ?></p>
<p>Website: <a href="<?php echo $curauth->user_url; ?>"><?php echo $curauth->user_url;
?></a></p>
<p>About the Business: <?php echo $curauth->description; ?></p>
</div>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>

Hint: A full list of $curauth-> calls can be viewed in the WordPress Codex.

Lastly, we want to do some basic error checking.

What would happen if the member didn’t put anything in the business_owner field? In this case, we can just wrap that line in an if statement (…or any variable we want to protect against being blank):

<?php if ($business_owner != null) { echo "<p>The owner of this business is
".$business_owner."</p>"; }; ?>

Listing your Members

So how do you list all of your approved members? It is as simple as adding the wp_list_authors to any template file. This is the customized version of that function I use:

<?php wp_list_authors('hide_empty=1&show_fullname=0&optioncount=0&exclude_admin=0');
?>

Tutorial Wrapup

This tutorial was based on my experiences in building the Pittsburgh Designers community into a thriving, local membership directory for creative types. Mosey on over to the site and take a peek for yourself how what a finished project like this can look like.

You can download the complete finished author.php template here.

About the Author

Chris Cagle is a freelance web designer from Pittsburgh, PA, whose projects include Pittsburgh Designers and AdClustr.

--------------


Thank you for subscribing to my feed. Download my ebook about how to create a WordPress theme


Copyright © 2007 Wpdesigner.com. All Rights Reserved.