<?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>Internet Profits Blog &#187; Affiliate Marketing</title>
	<atom:link href="http://internetprofituniversity.com/blog/category/affiliatemarketing/feed/" rel="self" type="application/rss+xml" />
	<link>http://internetprofituniversity.com/blog</link>
	<description></description>
	<lastBuildDate>Fri, 20 Aug 2010 00:29:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Dynamic Domains with Hostgator</title>
		<link>http://internetprofituniversity.com/blog/dynamic-domains-with-hostgator/</link>
		<comments>http://internetprofituniversity.com/blog/dynamic-domains-with-hostgator/#comments</comments>
		<pubDate>Tue, 25 May 2010 01:05:48 +0000</pubDate>
		<dc:creator>Brian Kindsvater</dc:creator>
				<category><![CDATA[Affiliate Marketing]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://internetprofituniversity.com/blog/?p=185</guid>
		<description><![CDATA[To create dynamic domains, also called wildcard domains, with a Hostgator web hosting account, do the following:
1. Within your cpanel click to add a new subdomain.
2. Call the subdomain * (yes, just an asterisk).
3. For the document root use the root domain (public_html).  If the dynamic subdomains are for an add-on domain, then the [...]]]></description>
			<content:encoded><![CDATA[<p>To create dynamic domains, also called wildcard domains, with a Hostgator web hosting account, do the following:</p>
<p>1. Within your cpanel click to add a new subdomain.</p>
<p>2. Call the subdomain * (yes, just an asterisk).</p>
<p>3. For the document root use the root domain (public_html).  If the dynamic subdomains are for an add-on domain, then the document root will be public_html/youraddondomain.com.</p>
<p>That&#8217;s it.</p>
<p>Now, you can refer to a subdomain and it is automatically created on the fly.  Such as using the WordPress WP subdomains plugin to create subdomains out of pages.</p>
]]></content:encoded>
			<wfw:commentRss>http://internetprofituniversity.com/blog/dynamic-domains-with-hostgator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Customize PHPBay</title>
		<link>http://internetprofituniversity.com/blog/how-to-customize-phpbay/</link>
		<comments>http://internetprofituniversity.com/blog/how-to-customize-phpbay/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 00:53:06 +0000</pubDate>
		<dc:creator>Brian Kindsvater</dc:creator>
				<category><![CDATA[Affiliate Marketing]]></category>
		<category><![CDATA[PHPBay]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://internetprofituniversity.com/blog/?p=162</guid>
		<description><![CDATA[Using PHPBay is a great way to quickly create an eBay affiliate site.  Unfortunately, that ease also means anyone can create a ton of &#8216;eBay&#8217; sites and pages which, as you might suspect, Google frowns upon.  Anything mass produced &#8211; you might as well assume Google will not like that.
For that reason &#8216;just [...]]]></description>
			<content:encoded><![CDATA[<p>Using PHPBay is a great way to quickly create an eBay affiliate site.  Unfortunately, that ease also means anyone can create a ton of &#8216;eBay&#8217; sites and pages which, as you might suspect, Google frowns upon.  Anything mass produced &#8211; you might as well assume Google will not like that.</p>
<p>For that reason &#8216;just a PHPBay&#8217; site can be hit or miss in Google.  But there are some code customizations you can do to avoid being quickly fingerprinted as having another thin affiliate site:</p>
<p>1. Change up the default template.  You don&#8217;t need everything created by PHPBay to be a link.  All link and no text?  Change it so only the graphics are linked.  Or maybe just the text.  And change the default text while you&#8217;re at it.</p>
<p>2. Randomize the number of auction listings.  Instead of 10 listings per page, as everyone has, use php to get a random number, say between 5 and 15, then use that variable to control how many listings are shown on a page.  It size of the content and number of links will thus be different each time the Googlebot comes by.</p>
<p>Within your config.php file, do something like this:</p>
<pre>
# MAXIMUM ITEMS PER PAGE
$randomnum = mt_rand (5,15);
$config['paging_num'] = $randomnum;
</pre>
<p>3. Change the default image url used for seo links.  PHPBay by default makes the urls for images to be your domains/images/e/number.jpg.  That &#8216;/images/e/&#8217; is called a footprint.  Within your ebay.php file find this line:</p>
<pre>
var $image_replace = "images/e/";
</pre>
<p>and change it to something else, such as good keyword.</p>
<p>Then, in your .htaccess file change all references to &#8216;^images/e/&#8217; to your new location.</p>
<p>4. Change the default item listing for seo links.  PHP by default makes each product link &#8216;item-&#8217; followed by the product name.  That, again, is a footprint.  Within config.php, under Basic Options, find this line:</p>
<pre>
$config['url_prefix'] = "item-";
</pre>
<p>and change it to some other word, such as keyword, followed by the hyphen.</p>
<p>Then, in your .htaccess file, change the references to &#8216;^item&#8217; to your keyword.</p>
<p>There you have it, 4 easy ways to change your PHPBay footprint so you don&#8217;t automatically scream to Google &#8211; hey, eBay affiliate site here.  There are already enough stories of how Google hates eBay affiliate sites without adding yours to the collection.</p>
]]></content:encoded>
			<wfw:commentRss>http://internetprofituniversity.com/blog/how-to-customize-phpbay/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Comparing PPC ROI Software</title>
		<link>http://internetprofituniversity.com/blog/comparing-ppc-roi-software/</link>
		<comments>http://internetprofituniversity.com/blog/comparing-ppc-roi-software/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 02:02:14 +0000</pubDate>
		<dc:creator>Brian Kindsvater</dc:creator>
				<category><![CDATA[Affiliate Marketing]]></category>

		<guid isPermaLink="false">http://internetprofituniversity.com/blog/?p=159</guid>
		<description><![CDATA[This will be an ongoing post where various PPC ROI Software is compared:
Affiliate Reporting:
Pros:
- Hands-off, everything is automated for you.  This is a biggie.
- You can get lots of data about your campaigns
Cons:
- Expensive
- Reporting should be better graphically.  One would think profit green losses red, or some contrasting color combo.  Nope. [...]]]></description>
			<content:encoded><![CDATA[<p>This will be an ongoing post where various PPC ROI Software is compared:</p>
<p><strong>Affiliate Reporting:</strong></p>
<p>Pros:<br />
- Hands-off, everything is automated for you.  This is a biggie.<br />
- You can get lots of data about your campaigns</p>
<p>Cons:<br />
- Expensive<br />
- Reporting should be better graphically.  One would think profit green losses red, or some contrasting color combo.  Nope.  Nothing.  You have to see parenthesis in hard to read green bands to determine what is a winner and a loser.<br />
- Reporting should be better overall.  It&#8217;s not easy to see the results for each keyword.  The actual searched keyword is not available.  Not have a simple list of keywords and their results for each campaign &#8211; which should be basic.<br />
- subid addition to keywords means you can be tracked from your Adwords ads, without needing to click on them, as your subid can be matched to the merchant records</p>
<p><strong>Prosper 202 / Track 202:</strong></p>
<p>Pros:<br />
- Free<br />
- Can track anything</p>
<p>Cons:<br />
Have to manually enter a cost per click for each ad group, which is ridiculous &#8211; unless you only have one keyword per group.  Without real CPC data per keyword this is really worthless.</p>
<p><strong>Track 202 Pro:</strong></p>
<p>Pros:<br />
- Reasonably priced for smaller ppc marketers<br />
- All automated</p>
<p>Cons:<br />
- If you already have Adwords ads the software will automatically overwrite them to create a new url.  This can be terrible because not only do ads have to be re-approved, but you lose all your prior stats for ads &#8211; which may have given you a high CTR and low CPC.<br />
- Only tracks PPC through 3 major PPC networks.<br />
- Not as strong as Affiliate Reporting in handling Google API costs, so these fees can ratchet quickly</p>
<p><strong><br />
Extreme Conversions</strong></p>
<p>Pro:<br />
- Cheap<br />
- Shows actual searched keyword and match-type for bidded keyword<br />
- Extremely fast, internally creates campaigns on the fly, and not need to modify existing PPC campaigns</p>
<p>Cons:<br />
- No automation<br />
- Unless commission set in stone (clickbank) and CPC set in stone (never), will never get accurate stats worth anything</p>
<p><b>Stats Junky</b></p>
<p>This has some nice looking features, but the depth is just not there.  Without having access to your actual PPC accounts, it doesn&#8217;t seem like you&#8217;re going to get the most accurate numbers.</p>
<p>OK, if you&#8217;re on a budget, but at this time not a professional level ROI service.</p>
]]></content:encoded>
			<wfw:commentRss>http://internetprofituniversity.com/blog/comparing-ppc-roi-software/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Aged Domain Service</title>
		<link>http://internetprofituniversity.com/blog/aged-domain-service/</link>
		<comments>http://internetprofituniversity.com/blog/aged-domain-service/#comments</comments>
		<pubDate>Thu, 17 Dec 2009 22:37:06 +0000</pubDate>
		<dc:creator>Brian Kindsvater</dc:creator>
				<category><![CDATA[Affiliate Marketing]]></category>

		<guid isPermaLink="false">http://internetprofituniversity.com/blog/?p=149</guid>
		<description><![CDATA[I recently found a great aged domain service called Fresh Drop.  It is easy to find a domain name several years old with a keyword-related domain name.
I just tested the service, found a couple domains ready to be deleted, and purchased them.  They were both ultimately sold through the GoDaddy site.
Unexpectedly, I did [...]]]></description>
			<content:encoded><![CDATA[<p>I recently found a great aged domain service called <a href="http://freshdrop.net">Fresh Drop</a>.  It is easy to find a domain name several years old with a keyword-related domain name.</p>
<p>I just tested the service, found a couple domains ready to be deleted, and purchased them.  They were both ultimately sold through the GoDaddy site.</p>
<p>Unexpectedly, I did not own the domains immediately after buying them.  Instead, the redemption period had to run, which it did, before they were transferred to my account.  With the GoDaddy auction if the domain owner does redeem their domain then the purchase price is refunded.</p>
<p>I have now been able to confirm through whois that both domains have retained their age.  It appears as if I bought them 7+ years ago, not last week.  </p>
<p>Now we&#8217;ll see if this helps with SEO &#8211; it should.  I&#8217;ve only used the free features available at Fresh Drop, but I was impressed &#8211; impressive enough to get me to go back and also to write this post.</p>
<p>========<br />
Update: FreshDrop is NO LONGER Recommended</p>
<p>What was a good service has turned into a huge, greedy rip-off &#8211; about $100 a month just to see the age of domains available from GoDaddy.</p>
<p>Fortunately, there are alternatives:</p>
<p>PremiumDrops.com &#8211; has a list of expiring GoDaddy domains, with their age.  Here is a specific page: http://premiumdrops.com/list.php?l=Godaddy+Auctions&#038;a=show &#8211; However, the service is $25 per month.</p>
<p>DropAce.com &#8211; Free &#8211; Easy to scroll through lists of expiring and deleting domains, but does not easy show age of the domain.  Need to click on a domain name to see details, such as age.</p>
<p>GoDrops.com &#8211; Free &#8211; Nice of lists of daily dropped domains and their age.  Unfortunately, to preserve PageRank one needs to get a domain before it has dropped into general availability.  The service is thus good for getting a domain name, but not for getting an aged domain.</p>
<p>ExpiredDomains.org &#8211; Free &#8211; Great website with lists of domains and their age, including an ability for a keyword search.</p>
<p>JustDropped.com &#8211; Free &#8211; Good flexible search options, but not able to search or see age of domains.</p>
<p>Also &#8211; found http://EstiBot.com &#8211; very interesting domain naming tools</p>
]]></content:encoded>
			<wfw:commentRss>http://internetprofituniversity.com/blog/aged-domain-service/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FTC Survival Guide Released</title>
		<link>http://internetprofituniversity.com/blog/ftc-survival-guide-released/</link>
		<comments>http://internetprofituniversity.com/blog/ftc-survival-guide-released/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 22:46:13 +0000</pubDate>
		<dc:creator>Brian Kindsvater</dc:creator>
				<category><![CDATA[Affiliate Marketing]]></category>

		<guid isPermaLink="false">http://internetprofituniversity.com/blog/?p=147</guid>
		<description><![CDATA[If you&#8217;re concerned about the newly revised FTC guidelines regulating online marketing and testimonials, then the FTC Survival Guide is a must have.  Part of the new Internet Marketing Law Center, it includes invaluable information for webmasters on how to avoid lawsuits.
Includes the Webmaster&#8217;s Legal Guide, other legal resources, and over a dozen legal [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re concerned about the newly revised FTC guidelines regulating online marketing and testimonials, then the FTC Survival Guide is a must have.  Part of the new Internet Marketing Law Center, it includes invaluable information for webmasters on how to avoid lawsuits.</p>
<p>Includes the Webmaster&#8217;s Legal Guide, other legal resources, and over a dozen legal forms for Internet marketers.</p>
<p>As a reader of this blog you can get $25 off.  Simply use this coupon on the order page: IPUBLOG</p>
<p>Here is the link:  <a href="http://internetmarketinglawcenter.com">FTC Survival Guide</a></p>
]]></content:encoded>
			<wfw:commentRss>http://internetprofituniversity.com/blog/ftc-survival-guide-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Hot Trends Example</title>
		<link>http://internetprofituniversity.com/blog/google-hot-trends-example/</link>
		<comments>http://internetprofituniversity.com/blog/google-hot-trends-example/#comments</comments>
		<pubDate>Wed, 25 Nov 2009 07:55:26 +0000</pubDate>
		<dc:creator>Brian Kindsvater</dc:creator>
				<category><![CDATA[Affiliate Marketing]]></category>

		<guid isPermaLink="false">http://internetprofituniversity.com/blog/?p=144</guid>
		<description><![CDATA[Here is an example of how to take advantage of a hot trend and get some traffic to your website fast &#8230; and probably for years in the future.
Michelle Obama Monkey Face Picture
This is a picture that is all over the news as being offensive (or funny) because it is the top search result in [...]]]></description>
			<content:encoded><![CDATA[<p>Here is an example of how to take advantage of a hot trend and get some traffic to your website fast &#8230; and probably for years in the future.</p>
<p><a href="http://obamajoke.com/michelle-obama-monkey-face">Michelle Obama Monkey Face Picture</a></p>
<p>This is a picture that is all over the news as being offensive (or funny) because it is the top search result in Google images.</p>
<p>All you need is a hot topic like this, create a blog page like that website has done, and monetize it in some manner.</p>
<p>In this example, the monetization on that page is a CPA offer at the bottom which is related to the Obama administration.  A simple email submit.</p>
<p>And of course the additional traffic is likely to visit other web pages where there are additional monetization opportunities.</p>
<p>Could you do something like this?  Sure.  These hot topics pop up every day and many will have a shelf life for a long time.</p>
]]></content:encoded>
			<wfw:commentRss>http://internetprofituniversity.com/blog/google-hot-trends-example/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Membership Site Software Review</title>
		<link>http://internetprofituniversity.com/blog/membership-site-software-review/</link>
		<comments>http://internetprofituniversity.com/blog/membership-site-software-review/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 19:10:25 +0000</pubDate>
		<dc:creator>Brian Kindsvater</dc:creator>
				<category><![CDATA[Affiliate Marketing]]></category>

		<guid isPermaLink="false">http://internetprofituniversity.com/blog/?p=130</guid>
		<description><![CDATA[What software package will work if you want:
- To control access to a membership site (as opposed to offering a downloadable ebook)
- Have an affiliate program
- Offer coupons
Amember
website
Amember will do all of the above with PayPal.  It works great.
Downsides: Expensive at $180.
Has coupons by percent or dollar amount, and can limit how many times [...]]]></description>
			<content:encoded><![CDATA[<p>What software package will work if you want:</p>
<p>- To control access to a membership site (as opposed to offering a downloadable ebook)<br />
- Have an affiliate program<br />
- Offer coupons</p>
<p><strong>Amember</strong><br />
<a href="http://amember.com">website</a><br />
Amember will do all of the above with PayPal.  It works great.<br />
Downsides: Expensive at $180.<br />
Has coupons by percent or dollar amount, and can limit how many times coupon is used.<br />
Have to manually pay affiliates, and affiliate module has bare functionality and not always easy for affiliates to access.<br />
Amember can work with ClickBank, which would offer a trusted 3rd party payment mechanism affiliates.  However, there are the ClickBank fees, price restrictions, mandated return policy (which is incredible abuse for IM products), and the ClickBank TOS prohibit the use of coupons.</p>
<p><strong>DL Guard</strong><br />
<a href="http://dlguard.com">website</a><br />
Very disappointed as cannot get this software to work for membership sites.  It&#8217;s primary focus seems to be protecting digital downloads.<br />
No affiliate system.<br />
$147 for two website install.</p>
<p><strong>Rapid Action Profits</strong><br />
<a href="http://rapidactionprofits.com/?e=kindsvater ">website</a><br />
Expensive at $197 and appears to only protect downloads &#8211; not membership sites.<br />
Has an affiliate system and coupons.<br />
Extras such as split testing and one-time-offers.</p>
<p><strong>MemberWing</strong><br />
<a href="http://memberwing.com">website</a><br />
$100 WordPress membership plugin.  Allows different membership levels and can drip content.<br />
No affiliate system.<br />
No coupons.</p>
<p><strong>Simple Member Pro</strong><br />
<a href="http://simplememberpro.com">website</a><br />
$197, but license good for unlimited websites.<br />
Has affiliate system.<br />
Has coupons with dollar amounts, not percentage off.<br />
Script not encrypted so you can must custom modifications.<br />
CMS system.<br />
One time offers and dime sales.<br />
Only integrates with PayPal.<br />
Drip content.<br />
Free demo.</p>
<p><strong>Instant Member</strong><br />
<a href="http://instantmember.com">website</a><br />
$147 for 1 site<br />
Affiliate system<br />
Coupons<br />
Works with PayPal and ClickBank<br />
Drip content.</p>
<p><strong>Delavo</strong><br />
Purchased this when it had a different name &#8211; expensive, unbelievably complex and difficult to configure.  Waste of money.  Maybe it&#8217;s improved but not worth checking out again.</p>
<p><strong>Easy Member Pro</strong><br />
<a href="http://lawzilla.easymempro.hop.clickbank.net">website</a><br />
$97 for unlimited sites.<br />
Has affiliate system, but not much else.</p>
]]></content:encoded>
			<wfw:commentRss>http://internetprofituniversity.com/blog/membership-site-software-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHPBay and WordPress Subdomains</title>
		<link>http://internetprofituniversity.com/blog/phpbay-and-wordpress-subdomains/</link>
		<comments>http://internetprofituniversity.com/blog/phpbay-and-wordpress-subdomains/#comments</comments>
		<pubDate>Sat, 10 Oct 2009 02:05:30 +0000</pubDate>
		<dc:creator>Brian Kindsvater</dc:creator>
				<category><![CDATA[Affiliate Marketing]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://internetprofituniversity.com/blog/?p=121</guid>
		<description><![CDATA[Does PHPBay Pro work with the WordPress subdomains plugin so that pages can be created as subdomains and eBay auction listings will properly work on the subdomains?
Yep.  Works like a charm.
]]></description>
			<content:encoded><![CDATA[<p>Does PHPBay Pro work with the WordPress subdomains plugin so that pages can be created as subdomains and eBay auction listings will properly work on the subdomains?</p>
<p>Yep.  Works like a charm.</p>
]]></content:encoded>
			<wfw:commentRss>http://internetprofituniversity.com/blog/phpbay-and-wordpress-subdomains/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PopShops WordPress Plugin Test</title>
		<link>http://internetprofituniversity.com/blog/popshops-wordpress-plugin-test/</link>
		<comments>http://internetprofituniversity.com/blog/popshops-wordpress-plugin-test/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 17:40:50 +0000</pubDate>
		<dc:creator>Brian Kindsvater</dc:creator>
				<category><![CDATA[Affiliate Marketing]]></category>

		<guid isPermaLink="false">http://internetprofituniversity.com/blog/?p=104</guid>
		<description><![CDATA[This is a test of the Popshops Wordpress plugin.  There is an option to insert an already created shop into the blog.  But for this post, I will be testing the Popshops menu button to add a product while I type in this post.  So here goes &#8230; I&#8217;m about to press the button &#8230;

Star [...]]]></description>
			<content:encoded><![CDATA[<p>This is a test of the Popshops Wordpress plugin.  There is an option to insert an already created shop into the blog.  But for this post, I will be testing the Popshops menu button to add a product while I type in this post.  So here goes &#8230; I&#8217;m about to press the button &#8230;</p>
<p><a rel="nofollow" href="http://r.popshops.com/pp/63569/star-wars-princess-leia-slave-adult-costume"><img style="width: 150px;" src="http://images.Buycostumes.com/mgen/merchandiser/33117.jpg?zm=90,90,1,0,0" border="0" alt="Star Wars Princess Leia Slave Adult Costume" /></a><br />
<a rel="nofollow" href="http://r.popshops.com/pp/63569/star-wars-princess-leia-slave-adult-costume">Star Wars Princess Leia Slave Adult Costume</a><br />
Price: $49.99</p>
<p>Includes: Top<br />
briefs with skirt<br />
belt<br />
choker<br />
arm band<br />
hair clips<br />
headpiece.<br />
Earrings and shoes not included.</p>
<p>This is an officially licensed Star Wars costume.</p>
<p>==============</p>
<p>After pressing the button a pop-up menu appeared on the right side of my screen with a search option.  I typed in the word &#8216;costume&#8217; and said go find me a product.  About 4600 products appeared for buycostumes &#8211; which I selected.  The results show a thumbnail of the product, price, and description.  Basically, what I setup in my Preferences to have shown for a product.</p>
<p>Next to the product was a Big Blue Plus sign.  Clicking on the plus sign for the Princess Leia costume caused the above information to immediately be imported into this post.</p>
<p>I will now publish this post.</p>
<p>&#8212;&#8212;</p>
<p>Done.  Looks nice.  Now I&#8217;m back to editing this post.  The new product does not appear in my  Popshops online account, so this may be hard to keep track of if the product becomes unavailable or I lose my affiliate account with the merchant.</p>
<p>I also noticed the links go through Popshops.  No hiding the affiliate link for SEO purposes.</p>
<p>&#8212;-</p>
<p>Second edit.  After adding the popshops php code used for my regular, static websites that is designed to hide affiliate links and run all links through my domain url &#8211; no effect, even though the support page indicates it might work.  This is in Beta so I&#8217;ll assume it is not working.</p>
<p>&#8212;</p>
<p>Third edit.  Clicked on the link and checked my online popshops account.  Nothing.  I believe since this product was not added within a &#8217;shop&#8217; that it cannot be tracked or noticed in the online PopShops account.</p>
<p>However, I was able to modify the default product description.  I put product details on their own lines and created blank lines in a couple places.  This is extremely useful and one of the major problems with the PopShop accounts where product descriptions could be modified to make unique, but blank lines could not be added.  This has generally meant that descriptions are short and ugly.</p>
<p>Very nice.  But since the information appears to be &#8216;hard coded&#8217; into the blog post, I do not believe pricing will automatically update.  And there is no option for the great feature of having a replacement product shown.</p>
<p>&#8212;</p>
<p>Fourth edit: After clicking through the link to the merchant website I saw the Commission Junction PID was for the wrong website.  Looking at my PopShops account, the PID being used was for another website, but not IPU.  Checking further, though, IPU has not been setup as a website profile within PopShops.</p>
<p>So, now I have setup the IPU PID profile in PopShops.  I&#8217;m going to add the same product again, below, and see what happens (in the pop-up preferences I am also deselecting the option to show the price since it will not automatically update):</p>
<p><a rel="nofollow" href="http://r.popshops.com/pp/63572/star-wars-princess-leia-slave-adult-costume"><img style="width: 150px;" src="http://images.Buycostumes.com/mgen/merchandiser/33117.jpg?zm=90,90,1,0,0" border="0" alt="Star Wars Princess Leia Slave Adult Costume" /></a><br />
<a rel="nofollow" href="http://r.popshops.com/pp/63572/star-wars-princess-leia-slave-adult-costume">Star Wars Princess Leia Slave Adult Costume</a><br />
Includes: Top, briefs with skirt, belt, choker, arm band, hair clips, and headpiece. Earrings and shoes not included. This is an officially licensed Star Wars costume.</p>
<p>&#8212;-</p>
<p>No effect.  Still has the wrong PID, and still no SEO&#8217;d url.</p>
<p>Bottom line: very nice feature I will probably use.  Tracking though, for the product popper, leaves a lot to be desired unless one manually takes action to fix the PopShops url &#8211; such as changing the link to a domain link that redirects through the Popshops url.  Since the PID is all on PopShops end it cannot be fixed here.  Some of these problems may be fixed with pages using already created shops, but this testing as strictly been for the product popper option for the Popshops Wordpress plugin.</p>
]]></content:encoded>
			<wfw:commentRss>http://internetprofituniversity.com/blog/popshops-wordpress-plugin-test/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oprah Winfrey Sues Acai Berry Marketers</title>
		<link>http://internetprofituniversity.com/blog/oprah-winfrey-sues-acai-berry-marketers/</link>
		<comments>http://internetprofituniversity.com/blog/oprah-winfrey-sues-acai-berry-marketers/#comments</comments>
		<pubDate>Fri, 21 Aug 2009 23:26:36 +0000</pubDate>
		<dc:creator>Brian Kindsvater</dc:creator>
				<category><![CDATA[Affiliate Marketing]]></category>

		<guid isPermaLink="false">http://internetprofituniversity.com/blog/?p=94</guid>
		<description><![CDATA[
Oprah Winfrey has sued dozens of Acai Berry Marketers for fraudulently using her name to promote their products.
The lawsuit filed in New York federal court for trademark infringement.  The case is Oz. et al v. FWM Laboratories, Inc. et al, Case Number 1:2009cv07297.
Here is the initial list of defendants.  The Oprah lawsuit reserves [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://hjlas.com/click/?s=96521&amp;c=164084"><img style="border: 0px none; width: 336px; height: 280px;" src="http://hjlas.com/images/5474-164084-336x280.jpg?s=96521" alt="" /></a></p>
<p>Oprah Winfrey has sued dozens of Acai Berry Marketers for fraudulently using her name to promote their products.</p>
<p>The lawsuit filed in New York federal court for trademark infringement.  The case is Oz. et al v. FWM Laboratories, Inc. et al, Case Number 1:2009cv07297.</p>
<p>Here is the initial list of defendants.  The Oprah lawsuit reserves 500 additional names of defendants who can be sued in the action:</p>
<p><script type="text/javascript"><!--
google_ad_client = "pub-3691511137877196";
google_ad_slot = "3909779892";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p>FWM Laboratories, Inc.<br />
CPX Interactive LLC<br />
Netalab Corp<br />
Gillmap Limited<br />
Minired UAB<br />
Nutra Lane LLC<br />
Central Coast Nutraceuticals<br />
Pure Nutrients<br />
B67 Nutra Pure Systems<br />
SFL Nutrition, LLC<br />
Acai Berry Breeze<br />
Life Fit Labs LLC<br />
Rejuvenate Worldwide<br />
Healthbuy.com<br />
Physical Enhancement Labs<br />
MyColonRelief<br />
XM Labs LLC<br />
Rauscher Bekke, LLC<br />
Body Solution<br />
456 Vital Health Systems, LLC<br />
JDW Media, LLC<br />
Pure Vitamins<br />
Xlent Health<br />
Organica Research LLC<br />
Incline Health Ltd.<br />
Health Technology<br />
Natural Source Store, LLC<br />
0841092 B.C. Ltd.<br />
Bottom Two Investments<br />
Healthrezv, LLC<br />
Healthy Colon, Inc.<br />
Redux-V Holdings, Inc.<br />
Easy White, Inc.<br />
Jet Processing<br />
Monavie AS, LLC<br />
Brazilian Basics<br />
L&#8217;Avenir<br />
Ultra Green Products, LLC<br />
Rezberries, Crush LLC<br />
3V Marketing, LLC<br />
James Russell<br />
Mike Johnson<br />
David Dube<br />
Katherine Clements<br />
Pawel Reszka<br />
Mike Koens<br />
Touvan Sughiarto<br />
Ryan Bukevicz<br />
Mark Swartz<br />
Matthew Kelly<br />
Sidney Fein</p>
]]></content:encoded>
			<wfw:commentRss>http://internetprofituniversity.com/blog/oprah-winfrey-sues-acai-berry-marketers/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
