miercuri, 20 octombrie 2010

SEOmoz Daily SEO Blog

SEOmoz Daily SEO Blog


Promote SEOmoz & Make Money - Announcing Our New Affiliate Program!

Posted: 19 Oct 2010 12:48 PM PDT

Posted by JoannaLord

Are you an SEOmoz fan? Do you love our software? Do you dream of introducing Roger to your friends? Well, what if you could do all that and make money? Too awesome to believe, huh? Well now you can! We are excited to present our new affiliate program, which has higher payouts, an easier management platform, and better service all-around.

For years we have been struggling to really let the potential of our promoters and evangelists shine through. Well enough of that.

We have moved to the HasOffers platform, another Seattle-based startup that is quickly earning a reputation as an industry leader. With HasOffers our affiliates will now enjoy more visibility into their account, top-notch reporting, and an easy to navigate platform for better usability.

Now let's talk money!
Like I said, we are paying out big for your help in promoting our software. It's a win-win...you get to share software you love and make money while you're at it! Here is what the payouts look like.

Affiliate payout table
              (Wowzers is right! These are the highest affiliate payouts in our industry!)

 

Got questions? We have some answers!

How long does my cookie last?

We are giving a generous 60-day cookie, to make sure you get the credit you deserve!

What kinds of tracking does HasOffers provide me?

Our new program offers real-time tracking. This means when they convert...you know! Please note the tracking will begin on the click, not the impression.

What kind of resources are available to me?
We have over 25 different creatives in there for you to get started with. This includes a variety of themes as well as sizes. We are also going to be adding to this regularly, based on affiliate feedback and needs. In addition to a plethora of creatives, we provide you a variety of optimized landing pages to help your traffic better understand what SEOmoz PRO is all about and purchase with confidence!

What kinds of campaigns are allowed?
We allow a number of different campaigns--website, blog, email, and coupon are just some examples. Currently, we are not accepting incentivized traffic and paid search campaigns require affiliate manager approval.

How often do I get paid?
We work off a 30-day pay period, and then we will be paying on Net 30 after the close of each pay period.

What about all my other questions?
Well friends, this is the awesome part. We have moved this affiliate program in-house because we are serious about making this a top-notch affiliate program. If you have any questions you can contact us directly at affiliate@seomoz.org, and will get back to you speedy as speedy can be!

That about sums it up for now. We are so excited, and urge all of you check out the program and sign up! If you are looking for more information you can read about the new affiliate program in detail or if you are ready to sign up and get promoting, you can join below!


Become and Affiliate button


 


Do you like this post? Yes No

Seth's Blog : The shipit journal is back in stock...

[You're getting this note because you subscribed to Seth Godin's blog.]

The shipit journal is back in stock...

For those following along, I've been discovering that creating and shipping a physical product can be lumpy.

I printed more copies than I thought would sell, but they sold out in 2 days. I then printed another batch the same size, which also sold out in two days. So this time, I printed 20,000 more workbooks and they're in the warehouse, ready to ship. (Currently there are sets of workbooks at two different prices, but they're the same, so grab the cheap ones while they last).

If this batch sells out, you'll be able to place an order and we can reprint and ship them as soon as they're ready. And I'll stop bothering you. Sorry.

I'm told that selling out is a good problem to have, but I'd rather have the right amount. Thanks for your patience. I think we're getting less lumpy now.

  • Email to a friend

More Recent Articles

Don't want to get this email anymore? Click the link below to unsubscribe.


Click here to safely unsubscribe now from "Seth's Blog" or change your subscription or subscribe

Your requested content delivery powered by FeedBlitz, LLC, 9 Thoreau Way, Sudbury, MA 01776, USA. +1.978.776.9498

 

Michael Gray - Graywolf's SEO Blog

Michael Gray - Graywolf's SEO Blog


Thesis Tutorial: How to Conditionally Change Content

Posted: 20 Oct 2010 07:30 AM PDT

Post image for Thesis Tutorial: How to Conditionally Change Content

In yesterday’s post, we spoke about why you would want to change your content based on traffic intent. In today’s post, I’m going to give you a basic framework about how to do it. This post is written as a Thesis Tutorial, because working with Thesis is just easier (see my Thesis review), but you can easily adapt the code to any website or theme.

OK. Like all Thesis customizations, we’re going to need to open up the custom_functions.php file. In this example, we are going to offer different social buttons based on where the user came from. If they came from a social site, we’ll show the interactive buttons with counts/votes. If they came from anyplace else, we’re going to show static graphic icon buttons.

For the website I’m using I put the buttons under the author byline, so my code will go in that function (if you are going to copy and paste, wait until the end for the final code so you get all the semicolons and parentheses).

//this is author byline
function uauthor_byline()

I’m going to make sure the buttons only appear on single pages so I’ll need the following bit of code:

if (is_single())

Ok now we get to the programming. We’ll need two variables and one array. The variables will hold the referring URL and a flag that tells whether that condition is true, and the array will hold the list of sites we are checking against.

$CUsocial = false; // this is the flag for social traffic
$CUref = $_SERVER['HTTP_REFERER']; //this is the referring URL
$CUsocialar = array('reddit', 'stumbleupon', 'digg', 'twitter', 'facebook', 'delicious'); // this is an array of social sites

So what we want to do next is take the list of social sites and see if any of them are in the referer. If they are, we set the flag to true.

//check all the social sites
$i=0;while ($i<=count($CUsocialar)){
if(stristr($CUref, $CUsocialar[$i])) {
$CUsocial = true;
}
$i++;
}

Now, if you’re a stickler, you could make the case that, if Twitter was in the filename and not the domain, we could get a false positive, and you would be correct. I just don’t think that’s going to happen often enough to be a real concern. OK so now we know whether the referring site is any of the social websites we want to trap for. If it is, the $CUsocial variable will be ‘true’ so we’ll need this bit of code:

if ($CUsocial){
//code for active social websites goes here
}else{
//code for default condition goes here
?>}

The code above has a placeholder for the buttons you can get from places like digg, stumbleupon and facebook. Since there are so many tutorials and instructions from the original websites, I just left placeholders. Here’s the full code:

function uauthor_byline() {
if (is_single()){
$CUsocial = false; // this is the flag for social traffic
$CUref = $_SERVER['HTTP_REFERER']; //this is the referring URL
$CUsocialar = array('reddit', 'stumbleupon', 'digg', 'twitter', 'facebook', 'delicious'); // this is an array of social sites
//check all the social sites
$i=0;while ($i<=count($CUsocialar)){ if(stristr($CUref, $CUsocialar[$i])) { $CUsocial = true; } $i++; }
if ($CUsocial){
//code for active social websites goes here
}else{
//code for default condition goes here
}
}

The following is just a starting point and can be re-used and expanded upon. For example, if you want to trap for search engines, here’s the extra code you would need:

$CUsearch = false; //this is the flag for search traffic
$CUsearchar = array('google', 'yahoo', 'bing'); //this is an array of search sites

//check all the search sites
$i=0;while ($i<=count($CUsocialar)){
if(stristr($CUref, $CUsearchar[$i])) {
$CUsearch = true;
}
$i++;
}

But you can use the code all over the site content, header, sidebar, etc. You can combine it with date based triggers, or there are many, many different possibilities, if you spend time playing with the code.
Creative Commons License photo credit: The U.S. Army

This post originally came from Michael Gray who is an SEO Consultant. Be sure not to miss the Thesis WordPress Theme review.

Thesis Tutorial: How to Conditionally Change Content

tla starter kit

Related posts:

  1. Thesis Tutorial – Adding Date Based Triggers to Your Posts There are a lot of times when you are working...
  2. Change Your Content Based on Traffic Intent A few weeks ago, Brent Payne made a post about...
  3. Thesis Tutorial – How to Add Adsense Section Targeting Using Adsense on your blog usually isn’t the most profitable...
  4. Make Thesis Work Better With Digg and Facebook If you’re involved with social media sites like Digg, Facebbok...
  5. How to Add a Carousel to Your Thesis Blog If you’ve spent any time visiting blogs lately chances are...

Advertisers:

  1. Text Link Ads - New customers can get $100 in free text links.
  2. BOTW.org - Get a premier listing in the internet's oldest directory.
  3. Ezilon.com Regional Directory - Check to see if your website is listed!
  4. Page1Hosting - Class C IP Hosting starting at $2.99.
  5. Directory Journal - List your website in our growing web directory today.
  6. Content Customs - Unique and high quality SEO writing services, providing webmasters with hundreds of SEO articles per week
  7. Majestic SEO - Competitive back link intellegence for SEO Analysis
  8. Glass Whiteboards - For a professional durable white board with no ghosting, streaking or marker stains, see my Glass Whiteboard Review
  9. Need an SEO Audit for your website, look at my SEO Consulting Services
  10. KnowEm - Protect your brand, product or company name with a continually growing list of social media sites.
  11. Scribe SEO Review find out how to better optimize your wordpress posts.
  12. TigerTech - Great Web Hosting service at a great price.

Daily Snapshot: Got Questions About Cyber Security?

The White House Your Daily Snapshot for
Wednesday, October 20, 2010
 

Today at 1:30 p.m.: Open for Questions on Cyber Security

As part of National Cyber Security Awareness Month, Howard Schmidt, Cybersecurity Coordinator and Special Assistant to the President, will be answering your questions about Awareness Month, the “Stop.Think.Connect” initiative to encourage safety online and the things that people and businesses can do to protect themselves in a live video chat today at 1:30 p.m. EDT. Watch and submit your questions.

Photo of the Day

 Photo of the Day

President Barack Obama talks with Javier Garcia of Brownsville, Tex., in the Green Room of the White House before the two of them entered the East Room for the signing ceremony of the Executive Order for the White House Initiative on Educational Excellence for Hispanic Americans Oct. 19, 2010. Javier introduced the President at the event. (Official White House Photo by Pete Souza)

Today's Schedule

All times are Eastern Daylight Time

9:30 AM: The President receives the Presidential Daily Briefing

10:30 AM: The President meets with Secretary of State Clinton

11:00 AM: First Lady Michelle Obama presents the PCAH's Coming Up Taller Award WhiteHouse.gov/live

11:10 AM: The President meets with his national security team for his monthly meeting on Afghanistan and Pakistan

1:30 PM: The Vice President delivers remarks at a rally for Senator Harry Reid

1:30 PM: Open for Questions: Cyber Security WhiteHouse.gov/live

3:10 PM: The President departs the White House en route Andrews Air Force Base

3:25 PM: The President departs Andrews Air Force Base en route Portland, Oregon

4:15 PM: First Lady Michelle Obama speaks at the White House Kitchen Garden Fall Harvest WhiteHouse.gov/live  (audio only)

8:40 PM: The President arrives in Portland, Oregon

9:45 PM: The President delivers remarks at a rally

11:45 PM: The President departs Portland, Oregon en route Seattle, Washington

12:30 AM: The President arrives in Seattle, Washington

WhiteHouse.gov/live  Indicates Events that will be livestreamed on WhiteHouse.gov/live.

In Case You Missed It

Here are some of the top stories from the White House blog

President Obama Signs Executive Order On Education and Hispanics
President Obama signs an Executive Order to renew and enhance the White House Initiative on Educational Excellence for Hispanics.

Adrienne Explains How College Students Are Benefiting from the Affordable Care Act
Adrienne Lowe, like many college students, was wondering how she was going to get health care after she graduates from college. Because of the Affordable Care Act, she now has the option of remaining on her parents’ health insurance plan.

White House White Board: CEA Chair Austan Goolsbee Explains the Jobs Trends
In the second edition of White House White Board, Austan Goolsbee, Chairman of the Council of Economic Advisers, looks back at the President’s record on the economy through the perspective of the last three years in private sector employment.

Get Updates

Sign up for the Daily Snapshot

Stay Connected

 


 
This email was sent to e0nstar1.blog@gmail.com
Manage Subscriptions for e0nstar1.blog@gmail.com
Sign Up for Updates from the White House

Unsubscribe e0nstar1.blog@gmail.com | Privacy Policy

Please do not reply to this email. Contact the White House

The White House • 1600 Pennsylvania Ave NW • Washington, DC 20500 • 202-456-1111
 

 

 

SEOptimise

SEOptimise


SES Chigaco 2010 – What is the future of search marketing?

Posted: 19 Oct 2010 08:01 AM PDT

The SES Chicago conference starts today and ahead of this they’ve launched another great video – this follows on from previous popular videos we posted here for the SES London and SES Chigaco events last year.

Great stuff again from Jonathan Allen, Bob Tripathi and the SES guys and if you’re at the conference make sure you catch Jonathan’s talk about transforming approach to video – if you’re not you’ll have to keep an eye on the SES tweetwall like the rest of us!

© SEOptimise – Download our free business guide to blogging whitepaper and sign-up for the SEOptimise monthly newsletter. SES Chigaco 2010 – What is the future of search marketing?

Related posts:

  1. Hear SEOptimise Speak at SMX Advanced London 2010
  2. 30 Resources on Google, Search & SEO Changes in 2010
  3. 15% Discount Code for SMX Advanced London 2010