<?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>DAP Documentation &#187; Personalization</title>
	<atom:link href="http://www.digitalaccesspass.com/doc/category/personalization/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.digitalaccesspass.com/doc</link>
	<description>Documentation for DigitalAccessPass.com</description>
	<lastBuildDate>Wed, 08 Feb 2012 07:08:56 +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>Internationalization &amp; Custom Messages</title>
		<link>http://www.digitalaccesspass.com/doc/internationalization/</link>
		<comments>http://www.digitalaccesspass.com/doc/internationalization/#comments</comments>
		<pubDate>Tue, 15 Mar 2011 19:51:33 +0000</pubDate>
		<dc:creator>Ravi Jayagopal</dc:creator>
				<category><![CDATA[Customization]]></category>
		<category><![CDATA[DAP]]></category>
		<category><![CDATA[Internationalization]]></category>
		<category><![CDATA[Personalization]]></category>

		<guid isPermaLink="false">http://www.digitalaccesspass.com/doc/?p=1316</guid>
		<description><![CDATA[The article below applies to both of the following groups&#8230; A) Customizing DAP&#8217;s Default Messages Those who wish to replace DAP&#8217;s default error and success messages (like &#8230; &#8220;Sorry, No User found with the email address&#8230;&#8221; when someone is trying to use the &#8220;Forgot Password&#8221; feature, or the message &#8220;Sorry, either you have entered an [...]]]></description>
			<content:encoded><![CDATA[<p>The article below applies to both of the following groups&#8230;</p>
<h3>A) Customizing DAP&#8217;s Default Messages</h3>
<p>Those who wish to replace DAP&#8217;s default error and success messages (like &#8230; &#8220;Sorry, No User found with the email address&#8230;&#8221; when someone is trying to use the &#8220;Forgot Password&#8221; feature, or the message &#8220;Sorry, either you have entered an invalid username/password, or you may not have activated your account yet.&#8221; which is shown when someone uses the wrong email/password when logging in to your membership site &#8211; with English text of their own choice, and</p>
<h3>B) Internationalization</h3>
<p>Those who wish to replace those messages with text in a completely different non-English, international language (like Spanish, Danish, French, etc).</p>
<h4>Non-English Content</h4>
<p>DAP is &#8220;international-friendly&#8221;.</p>
<p>Starting v4.1, you can now customize the &#8220;Member-Facing&#8221; pages in DAP – like &#8220;My Content&#8221;, &#8220;My Profile&#8221; and &#8220;My Affiliate Info&#8221; pages – in any non-English language of your choice. We tested with many languages – like Spanish, Dutch, French, and even Chinese! Others will/should work too – as long the character set is UTF-8 based.</p>
<p>Now please note that WordPress is already international-friendly, which means you can already create all of your WordPress page and post content in any WP-supported international language.</p>
<p>So we&#8217;re excited to be able to help create membership sites in multiple languages.</p>
<h4>Non-English Emails</h4>
<p>And what&#8217;s really cool, is that you can now also send Autoresponder &amp; Broadcast emails in your language.</p>
<p>This is a very powerful feature for those who are often restricted by 3rd-party email services in sending out non-english emails.</p>
<p>In fact, the last time we checked, even the big-boys like Aweber don&#8217;t let you do that!</p>
<h3>Customizing Language Files</h3>
<h4>1) Language File Setup for PHP</h4>
<p>Open the file&#8230;</p>
<blockquote><p>/dap/inc/language/<strong>english.php </strong></p></blockquote>
<p>and save the file as&#8230;</p>
<blockquote><p>/dap/inc/language/<strong>custom.php </strong></p></blockquote>
<p>in the same folder.</p>
<p>Then you can change the english text (last section that is not in caps &#8211; like &#8220;Sorry, no data found&#8221; in the example below) in your language, and upload it back to the same folder ( <strong>/dap/inc/content/language</strong> )</p>
<blockquote><p><strong>define(&#8220;MSG_SORRY_NO_DATA_FOUND&#8221;,&#8221;<span style="color: #ff0000;">Sorry, no data found.</span>&#8220;);</strong></p></blockquote>
<p>becomes&#8230;</p>
<blockquote><p><strong>define(&#8220;MSG_SORRY_NO_DATA_FOUND&#8221;,&#8221;<span style="color: #ff0000;">Désolé, aucune donnée trouvée.</span></strong><strong>&#8220;);</strong></p></blockquote>
<p>(That&#8217;s the French translation, according to Google &#8211; blame them if it&#8217;s not right <img src='http://www.digitalaccesspass.com/doc/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<h4>2) Language File Setup for JavaScript</h4>
<p>DAP also allows you to customize the JavaScript alerts and messages that pop-up for client-side validations of form fields.</p>
<p>Open the file&#8230;</p>
<blockquote><p>/dap/inc/language/<strong>jsenglish.js</strong></p></blockquote>
<p>and save the file as&#8230;</p>
<blockquote><p>/dap/inc/language/<strong>jscustom.js<br />
</strong></p></blockquote>
<p>You may then change the text inside this JavaScript file and upload it back to same folder.</p>
<p>That&#8217;s it!</p>
<p>&nbsp;</p>
<h2>Contents of english.php</h2>
<blockquote><p>//&#8212;&#8212;&#8212;- Added 03/22/2011 &#8212;&#8212;&#8212;//<br />
define(&#8220;MSG_ALREADY_LOGGEDIN_1&#8243;,&#8221;You are already logged in.&#8221;);<br />
define(&#8220;MSG_ALREADY_LOGGEDIN_2&#8243;,&#8221;Click here to continue&#8230;&#8221;);<br />
define(&#8220;MSG_PLS_LOGIN&#8221;,&#8221;Sorry, you must log in before you can view this content.&#8221;);<br />
define(&#8220;MSG_CLICK_HERE_TO_LOGIN&#8221;,&#8221;Click here to log in&#8221;);<br />
define(&#8220;MSG_SORRY_EMAIL_NOT_FOUND&#8221;,&#8221;Sorry, No User found with the email address &#8220;);<br />
define(&#8220;MSG_PASSWORD_SENT&#8221;,&#8221;Please check your email. Your Password has been sent to &#8220;);</p>
<p>//&#8212;&#8212;&#8212;- GENERAL TEXT &#8212;&#8212;&#8212;//<br />
define (&#8220;ACTIVATION_EMAIL_SUBJECT&#8221;, &#8220;%%FIRST_NAME%%, Welcome to %%SITE_NAME%% (Activation)&#8221;);<br />
define (&#8220;AFF_PAYMENT_EMAIL_SUBJECT&#8221;, &#8220;%%FIRST_NAME%%, You&#8217;ve Got An Affiliate Payment&#8221;);<br />
define (&#8220;FORGOT_PASSWORD_EMAIL_SUBJECT&#8221;, &#8220;Your Long Lost Password!&#8221;);<br />
define (&#8220;LOCKED_EMAIL_SUBJECT&#8221;, &#8220;Your account has been locked&#8221;);<br />
define (&#8220;UNLOCKED_EMAIL_SUBJECT&#8221;, &#8220;Your account has been Unlocked&#8221;);<br />
define (&#8220;INVALID_PASSWORD_MSG&#8221;,&#8221;Sorry, either you have entered an invalid username/password, or you may not have activated your account yet.&#8221;);<br />
define(&#8220;SUCCESS_ACTIVATION&#8221;,&#8221;SUCCESS! Your account has been successfully activated! Use the email address and password sent in the activation email to log in below&#8230;&#8221;);</p>
<p>define(&#8220;MSG_SORRY_NO_DATA_FOUND&#8221;,&#8221;Sorry, no data found.&#8221;);<br />
define(&#8220;COLNAME_AFFID_TEXT&#8221;,&#8221;Aff Id&#8221;);<br />
define(&#8220;COLNAME_NAME_TEXT&#8221;,&#8221;Name&#8221;);<br />
define(&#8220;COLNAME_FIRSTNAME_TEXT&#8221;,&#8221;First Name&#8221;);<br />
define(&#8220;COLNAME_LASTNAME_TEXT&#8221;,&#8221;Last Name&#8221;);<br />
define(&#8220;COLNAME_EMAIL_TEXT&#8221;,&#8221;Email&#8221;);<br />
define(&#8220;COLNAME_AMTEARNED_TEXT&#8221;,&#8221;Amount Earned&#8221;);<br />
define(&#8220;COLNAME_DATETIME_TEXT&#8221;,&#8221;Date/Time&#8221;);<br />
define(&#8220;COLNAME_AMTPAID_TEXT&#8221;,&#8221;Amount Paid&#8221;);<br />
define(&#8220;COLNAME_HTTPREFERER_TEXT&#8221;,&#8221;HTTP Referer&#8221;);<br />
define(&#8220;COLNAME_DESTINATION_TEXT&#8221;,&#8221;Destination&#8221;);</p>
<p>//&#8212;&#8212;&#8212;- USER PROFILE TEXT &#8212;&#8212;&#8212;//<br />
define(&#8220;USER_PROFILE_HEADING_TEXT&#8221;,&#8221;Profile Information&#8221;);<br />
define(&#8220;USER_PROFILE_FIRST_NAME_LABEL&#8221;,&#8221;First Name&#8221;);<br />
define(&#8220;USER_PROFILE_LAST_NAME_LABEL&#8221;,&#8221;Last Name&#8221;);<br />
define(&#8220;USER_PROFILE_EMAIL_LABEL&#8221;,&#8221;Email&#8221;);<br />
define(&#8220;USER_PROFILE_USER_NAME_LABEL&#8221;,&#8221;Username&#8221;);<br />
define(&#8220;USER_PROFILE_NEW_PASSWORD_LABEL&#8221;,&#8221;Password&#8221;);<br />
define(&#8220;USER_PROFILE_REPEAT_PASSWORD_LABEL&#8221;,&#8221;Repeat Password&#8221;);<br />
define(&#8220;USER_PROFILE_PAYPAL_EMAIL_LABEL&#8221;,&#8221;Paypal Email&#8221;);<br />
define(&#8220;USER_PROFILE_PAYPAL_EMAIL_EXTRA_LABEL&#8221;,&#8221;For Affiliates Only&#8221;);<br />
define(&#8220;USER_PROFILE_COMPANY_LABEL&#8221;,&#8221;Company&#8221;);<br />
define(&#8220;USER_PROFILE_TITLE_LABEL&#8221;,&#8221;Title&#8221;);<br />
define(&#8220;USER_PROFILE_ADDRESS1_LABEL&#8221;,&#8221;Address 1&#8243;);<br />
define(&#8220;USER_PROFILE_ADDRESS2_LABEL&#8221;,&#8221;Address 2&#8243;);<br />
define(&#8220;USER_PROFILE_CITY_LABEL&#8221;,&#8221;City&#8221;);<br />
define(&#8220;USER_PROFILE_STATE_LABEL&#8221;,&#8221;State&#8221;);<br />
define(&#8220;USER_PROFILE_ZIP_LABEL&#8221;,&#8221;Zip&#8221;);<br />
define(&#8220;USER_PROFILE_COUNTRY_LABEL&#8221;,&#8221;Country&#8221;);<br />
define(&#8220;USER_PROFILE_PHONE_LABEL&#8221;,&#8221;Phone&#8221;);<br />
define(&#8220;USER_PROFILE_FAX_LABEL&#8221;,&#8221;Fax&#8221;);<br />
define(&#8220;USER_PROFILE_UNSUBSCRIBE_LABEL&#8221;,&#8221;You are currently receiving product and &lt;br/&gt;account related emails. Uncheck to stop&lt;br/&gt;receiving all emails (not recommended)&#8221;);<br />
define(&#8220;USER_PROFILE_SUCCESS_MESSAGE&#8221;,&#8221;SUCCESS! User has been successfully updated.&#8221;);</p>
<p>//&#8212;&#8212;&#8212;- AFFILIATE PAGE LABELS &#8212;&#8212;&#8212;//<br />
define(&#8220;AFFILIATE_INFO_TOTALEARNINGS_SUBHEADING&#8221;,&#8221;Total Earnings&#8221;);<br />
define(&#8220;AFFILIATE_INFO_AFFLINK_SUBHEADING&#8221;,&#8221;Affiliate Link&#8221;);<br />
define(&#8220;AFFILIATE_INFO_YOURAFFLINKHOME_LABEL&#8221;,&#8221;Your Affiliate Link &#8211; redirects to home page:&#8221;);<br />
define(&#8220;AFFILIATE_INFO_AFFLINKSPECIFIC_LABEL&#8221;,&#8221;Affiliate Link To Specific Page:&#8221;);<br />
define(&#8220;AFFILIATE_INFO_AFFLINKSPECIFIC_EXTRA_TEXT&#8221;,&#8221;To link to a specific page, just add the text &amp;quot;&amp;amp;p=&amp;lt;insert_url_here&amp;gt;&amp;quot; to the end of your affiliate link, like this: (no &amp;quot;http://&amp;quot; in the 2nd link at the end &#8211; should start with &amp;quot;www&amp;quot;)&#8221;);<br />
define(&#8220;AFFILIATE_INFO_TEST_TEXT&#8221;,&#8221;test&#8221;);<br />
define(&#8220;AFFILIATE_INFO_PAYMENT_DETAILS_SUBHEADING&#8221;,&#8221;Payment Details&#8221;);<br />
define(&#8220;AFFILIATE_INFO_EARNINGS_DETAILS_SUBHEADING&#8221;,&#8221;Earnings Details&#8221;);<br />
define(&#8220;AFFILIATE_INFO_TRAFFIC_STATISTICS_SUBHEADING&#8221;,&#8221;Traffic Statistics&#8221;);</p>
<p>//&#8212;&#8212;&#8212;- USER LINKS PAGE TEXT &#8212;&#8212;&#8212;//<br />
define(&#8220;USER_LINKS_YOUCURRENTLYHAVEACCESSTO_TEXT&#8221;,&#8221;You currently have access to &#8220;);<br />
define(&#8220;USER_LINKS_PRODUCTS_TEXT&#8221;,&#8221; product(s).&#8221;);<br />
define(&#8220;USER_LINKS_ACCESS_START_DATE_TEXT&#8221;,&#8221;Access Start Date&#8221;);<br />
define(&#8220;USER_LINKS_ACCESS_END_DATE_TEXT&#8221;,&#8221;Access End Date&#8221;);<br />
define(&#8220;USER_LINKS_DESCRIPTION_TEXT&#8221;,&#8221;Description&#8221;);<br />
define(&#8220;USER_LINKS_LINKS_TEXT&#8221;,&#8221;Links&#8221;);<br />
define(&#8220;USER_LINKS_NOLINKSFOUND_TEXT&#8221;,&#8221;No links found.&#8221;);</p></blockquote>
<h2></h2>
<p>&nbsp;</p>
<h2>Contents Of jsenglish.php</h2>
<blockquote><p>//New entry MSG_EMAIL_INVALID added on 07/14/2011<br />
var MSG_EMAIL_INVALID = &#8220;Sorry, email id must of a valid format, may not be blank or contain any special characters&#8221;;</p>
<p>var MSG_MISSING_INFO = &#8220;Please enter missing information&#8230;&#8221;;</p>
<p>var MSG_ENTER_EMAIL = &#8220;Please enter your email address before we can email you the password&#8221;;</p>
<p>var MSG_ENTER_PASSWORD = &#8220;Sorry, the password field may not be empty&#8221;;</p>
<p>var MSG_PASSWORDS_MISMATCH = &#8220;The two Passwords don&#8217;t match. Please try again&#8230;&#8221;;</p>
<p>var MSG_PASSWORD_INVALID = &#8220;Sorry, password contains invalid characters. Please choose from numbers and alphabets only.&#8221;;</p>
<p>var MSG_UPDATING_PROFILE = &#8220;Please wait&#8230; Updating User Profile &#8230;&#8221;;</p>
<p>var MSG_OPTOUT_WARNING = &#8220;WARNING: If you uncheck this box, you may not receive emails relevant to the product you have purchased. Are you sure you still want to Unsubscribe?&#8221;;</p>
<p>var MSG_NO_SPECIAL = &#8220;Sorry, no special characters allowed&#8221;;</p></blockquote>
<p>Other links&#8230;.</p>
<p><a href="http://www.digitalaccesspass.com/doc/customizing-login-form/">To customize the DAP Stand-alone Login form, click here.</a></p>
<p><a href="http://digitalaccesspass.com/doc/customizing-login-widget/">To customize the DAP Login/Logout widget, click here.</a></p>
<p><a href="http://www.digitalaccesspass.com/doc/customizing-error-messages-on-protected-pages/">To customize the DAP default Error Message with the &#8216;Lock&#8217; image, click here.</a></p>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://www.digitalaccesspass.com/doc/internationalization/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Creating A Ready-Made Affiliate Toolbox</title>
		<link>http://www.digitalaccesspass.com/doc/creating-a-ready-made-affiliate-toolbox/</link>
		<comments>http://www.digitalaccesspass.com/doc/creating-a-ready-made-affiliate-toolbox/#comments</comments>
		<pubDate>Fri, 29 Oct 2010 21:36:21 +0000</pubDate>
		<dc:creator>Ravi Jayagopal</dc:creator>
				<category><![CDATA[Admin]]></category>
		<category><![CDATA[Affiliates]]></category>
		<category><![CDATA[Customization]]></category>
		<category><![CDATA[DAP]]></category>
		<category><![CDATA[Features]]></category>
		<category><![CDATA[Personalization]]></category>
		<category><![CDATA[Setup]]></category>
		<category><![CDATA[Strategy]]></category>

		<guid isPermaLink="false">http://www.digitalaccesspass.com/doc/?p=804</guid>
		<description><![CDATA[You already know that DAP has a built-in affiliate program, and everyone who joins your site (or gets a free or paid account) is automatically made into an &#8220;Instant Affiliate&#8221;. DAP also lets you create an Affiliate Tool Box for your affiliates, with ready-to-use banners, emails, subjects, signatures and text links &#8211; all with their [...]]]></description>
			<content:encoded><![CDATA[<p>You already know that DAP has a built-in affiliate program, and everyone who joins your site (or gets a free or paid account) is automatically made into an &#8220;Instant Affiliate&#8221;.</p>
<p>DAP also lets you create an <strong>Affiliate Tool Box</strong> for your affiliates, with ready-to-use banners, emails, subjects, signatures and text links &#8211; all with their own personalized affiliate link embedded into it already.</p>
<p>So all they have to do is <strong>copy</strong>, <strong>paste</strong>, and hit <strong>send</strong>.</p>
<p>See the sample screen-shots below that show what our own affiliate tool box looks for DAP affiliates who wish to promote DigitalAccessPass.com to others.</p>
<h2>Banners</h2>
<p><a onclick="window.open('http://www.digitalaccesspass.com/doc/wp-content/uploads/2010/10/dap_affiliatetools_banners1.png','_banners','scrollbars=yes,resizable=yes,width=1000,height=1000,left='+(screen.availWidth/2-500)+',top='+(screen.availHeight/2-500)+'');return false;" href="http://www.digitalaccesspass.com/doc/wp-content/uploads/2010/10/dap_affiliatetools_banners1.png" target="_blank" rel="lightbox[804]" title="dap_affiliatetools_banners"><img class="alignnone size-full wp-image-806" style="border: 1px solid black;" title="dap_affiliatetools_banners" src="http://www.digitalaccesspass.com/doc/wp-content/uploads/2010/10/dap_affiliatetools_banners1.png" alt="" width="650" height="624" /></a></p>
<h2>Email Copy</h2>
<p><img class="alignnone size-full wp-image-807" style="border: 1px solid black;" title="dap_affiliatetools_swipecopy" src="http://www.digitalaccesspass.com/doc/wp-content/uploads/2010/10/dap_affiliatetools_swipecopy.png" alt="" width="651" height="996" /></p>
<h2>Text Links</h2>
<p><img class="alignnone size-full wp-image-810" style="border: 1px solid black;" title="dap_affiliatetools_textlinks" src="http://www.digitalaccesspass.com/doc/wp-content/uploads/2010/10/dap_affiliatetools_textlinks.png" alt="" width="654" height="936" /></p>
<p><br class="spacer_" /></p>
<h2>How To Create The Affiliate Tool Box</h2>
<p>Create as many different pages you want on your blog &#8211; like &#8220;Banners&#8221;, &#8220;Email Swipe Copy&#8221; or &#8220;Text Links&#8221;.</p>
<p>Or create just one big page for all of this &#8211; like &#8220;Affiliate Tool Box&#8221;.</p>
<p><a href="http://DigitalAccessPass.com/AffiliateToolboxCode.txt" target="_blank">Download this text file</a> which has all of the ready-made HTML code that you need to insert into the WordPress pages.</p>
<p>Feel free to modify the text as required, and be careful not to delete any of the special characters that are in there just for the formatting.</p>
<h2><a href="http://DigitalAccessPass.com/AffiliateToolboxCode.txt" target="_blank">Download Sample Affiliate ToolBox Code</a><br class="spacer_" /></h2>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://www.digitalaccesspass.com/doc/creating-a-ready-made-affiliate-toolbox/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Creating Ready-made Banners &amp; Copy For Affiliates</title>
		<link>http://www.digitalaccesspass.com/doc/creating-ready-made-banners-copy-for-affiliates/</link>
		<comments>http://www.digitalaccesspass.com/doc/creating-ready-made-banners-copy-for-affiliates/#comments</comments>
		<pubDate>Tue, 07 Sep 2010 06:27:52 +0000</pubDate>
		<dc:creator>Ravi Jayagopal</dc:creator>
				<category><![CDATA[Affiliates]]></category>
		<category><![CDATA[Customization]]></category>
		<category><![CDATA[Examples]]></category>
		<category><![CDATA[Merge Tags]]></category>
		<category><![CDATA[Personalization]]></category>
		<category><![CDATA[Setup]]></category>

		<guid isPermaLink="false">http://www.digitalaccesspass.com/doc/?p=620</guid>
		<description><![CDATA[DAP lets you create a &#8220;Affiliate Promo Materials&#8221; page that has ready-made, ready-to-copy-paste banner images, HTML code, and email copy, that includes the affiliate link of the affiliate viewing the page, already readily embedded and customized just for her. Here&#8217;s all you need to know: Wherever you insert the Affiliate Merge Tag&#8230;. %%AFF_LINK%% &#8230;into your [...]]]></description>
			<content:encoded><![CDATA[<p>DAP lets you create a &#8220;Affiliate Promo Materials&#8221; page that has ready-made, ready-to-copy-paste banner images, HTML code, and email copy, that includes the affiliate link of the affiliate viewing the page, already readily embedded and customized just for her.</p>
<p>Here&#8217;s all you need to know:</p>
<p>Wherever you insert the Affiliate Merge Tag&#8230;.</p>
<blockquote><p><strong>%%AFF_LINK%% </strong></p></blockquote>
<p>&#8230;into your blog posts/pages, it will get automatically get replaced by the affiliate&#8217;s actual affiliate link, that looks like this&#8230;</p>
<blockquote><p><strong>http://YourSite.com/dap/a/?a=1234</strong></p></blockquote>
<p>So, that&#8217;s all you really need to know to create a custom, affiliate promo page.</p>
<p>Creating Customized Banners</p>
<p>Normally, your banner code for affiliates would look like this:</p>
<blockquote><p><strong>&lt;img src=&#8221;/path/to/banner/image.jpg&#8221;&gt;</strong></p></blockquote>
<p>That would simply display a banner that is not linked to any link.</p>
<p>Then, here&#8217;s how you would link it to any link.</p>
<blockquote><p><strong>&lt;a href=&#8221;http://LinkToSomething.com&#8221;&gt;</strong>&lt;img src=&#8221;/path/to/banner/image.jpg&#8221;&gt;<strong>&lt;/a&gt;</strong></p></blockquote>
<p>Now, instead of the link above, you would insert your Affiliate Merge Tag in there, like this:</p>
<blockquote><p><strong>&lt;a href=&#8221;</strong><strong>%%AFF_LINK%% </strong><strong>&#8220;&gt;</strong>&lt;img src=&#8221;/path/to/banner/image.jpg&#8221;&gt;<strong>&lt;/a&gt;</strong></p></blockquote>
<p>That would display the image, as well as link it to the affiliate&#8217;s own custom affiliate link. The above code is what you would enter into the promo page in the &#8220;Visual&#8221; tab, because you want the affiliate to see the actual raw HTML code that she can copy/paste and publish on their web site.</p>
<p>So when the affiliate views your promo page, they would not see an actual image that is linked to their affiliate link, but the raw HTML &#8211; just like what you see below &#8211; which they can copy and publish on their web site.</p>
<blockquote><p><strong>&lt;a href=&#8221;http://YourSite.com/dap/a/?a=1234</strong><strong> </strong><strong>&#8220;&gt;</strong>&lt;img src=&#8221;/path/to/banner/image.jpg&#8221;&gt;<strong>&lt;/a&gt;</strong></p></blockquote>
<p>Obviously, you don&#8217;t want them to directly link to the image on your site. So you just tell them that they need to download the image/banner and upload to their web site.</p>
<p>The same can be done for email copy too.</p>
<p>That&#8217;s how simple it is.</p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow: hidden;"><strong>%%AFF_LINK%%</strong></div>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://www.digitalaccesspass.com/doc/creating-ready-made-banners-copy-for-affiliates/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How To Use DAP&#8217;s Default Password</title>
		<link>http://www.digitalaccesspass.com/doc/how-to-use-daps-default-password/</link>
		<comments>http://www.digitalaccesspass.com/doc/how-to-use-daps-default-password/#comments</comments>
		<pubDate>Mon, 16 Aug 2010 03:36:17 +0000</pubDate>
		<dc:creator>Veena Prashanth</dc:creator>
				<category><![CDATA[3rd Party Integration]]></category>
		<category><![CDATA[3rd Party List Integration]]></category>
		<category><![CDATA[Aweber]]></category>
		<category><![CDATA[Config]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[Examples]]></category>
		<category><![CDATA[Features]]></category>
		<category><![CDATA[Merge Tags]]></category>
		<category><![CDATA[Personalization]]></category>
		<category><![CDATA[Setup]]></category>
		<category><![CDATA[Users]]></category>

		<guid isPermaLink="false">http://www.digitalaccesspass.com/doc/?p=519</guid>
		<description><![CDATA[Starting DAP 3.8, DAP has a new feature where you can ask DAP to always generate a pre-chosen, default password of your choice for all new members. So all new users will be assigned the same default password, which they can of course change as soon as (or any time after) they login. This is [...]]]></description>
			<content:encoded><![CDATA[<p>Starting DAP 3.8, DAP has a new feature where you can ask DAP to always generate a pre-chosen, default password of your choice for all new members.</p>
<p>So all new users will be assigned the same default password, which they can of course change as soon as (or any time after) they login.</p>
<p>This is especially helpful for new users, if instead of DAP, you want a third-party service like Aweber to send out the new member&#8217;s &#8220;Welcome Email&#8221; which contains their email and password.</p>
<p>Since DAP is unable to pass the randomly generated password to Aweber, instead, you can setup a default password by going to</p>
<blockquote><p><strong>Setup &gt; Config &gt; Advanced &gt; &#8220;If you want DAP to generate a default password for all new users, enter it here. If not, leave blank&#8221;</strong></p></blockquote>
<p>So if you set this password to say, &#8220;<strong>changethis</strong>&#8220;, then DAP will give out the same password to all new users.</p>
<p>Then, in the welcome email you configure at, say, Aweber, you would put the Aweber merge code for email id, and then enter this pre-selected password (because you already know what it is) into your Aweber email, like this:</p>
<blockquote><p>Hello {!firstname},</p>
<p>Welcome to Example.com. You may log in to your member&#8217;s area at:</p>
<p>Email: {!email}<br />
Password: changethis</p>
<p>Thank you,</p>
<p>- Admin from Example.com</p></blockquote>
<p>And if you ever change the default password in DAP, don&#8217;t forget to also change it in your welcome email at Aweber (or 3rd party email service).</p>
<p>Also, don&#8217;t use the default password in any subsequent emails, other than the Welcome email (very first email sent to member through Aweber), because the member may have already changed their password by then.</p>
<p><strong>WARNING</strong>: You must have also set up <a href="http://www.digitalaccesspass.com/doc/aweber-integration/">DAP/Aweber integration</a> first before you attempt to do this.</p>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://www.digitalaccesspass.com/doc/how-to-use-daps-default-password/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>&#8220;ProductLinks&#8221; Widget: Product-Specific Content</title>
		<link>http://www.digitalaccesspass.com/doc/product-specific-details/</link>
		<comments>http://www.digitalaccesspass.com/doc/product-specific-details/#comments</comments>
		<pubDate>Fri, 09 Jul 2010 18:59:40 +0000</pubDate>
		<dc:creator>Veena Prashanth</dc:creator>
				<category><![CDATA[Access Control]]></category>
		<category><![CDATA[Config]]></category>
		<category><![CDATA[Customization]]></category>
		<category><![CDATA[Examples]]></category>
		<category><![CDATA[Personalization]]></category>
		<category><![CDATA[Products]]></category>
		<category><![CDATA[Setup]]></category>
		<category><![CDATA[Strategy]]></category>
		<category><![CDATA[Widgets]]></category>

		<guid isPermaLink="false">http://www.digitalaccesspass.com/doc/?p=473</guid>
		<description><![CDATA[You already know that you can create a &#8220;My Content&#8221; kind of page within WordPress, that will list all products that a user has access to, and then each product will list the content that they currently have access to (content that has already dripped on them). But this page is a full-summary of all [...]]]></description>
			<content:encoded><![CDATA[<p>You already know that you can create a &#8220;My Content&#8221; kind of page within WordPress, that will list all products that a user has access to, and then each product will list the content that they currently have access to (content that has already dripped on them).</p>
<p>But this page is a full-summary of all products, all listed on one page.</p>
<p>Instead, if you wished to create product-specific download pages, where you create a separate page for each product, that lists all the content within just that product alone, then that&#8217;s where DAP&#8217;s &#8220;ProductLinks&#8221; Widget comes in handy.</p>
<p>Here&#8217;s how you set it up.</p>
<ol>
<li>In WordPress admin, go to &#8220;Appearance &gt; Widgets&#8221; and enable the &#8220;DAP ProductLinks&#8221; widget by dragging it onto a widgetized section of your theme&#8217;s sidebar.<br />
<a href="http://www.digitalaccesspass.com/doc/wp-content/uploads/2011/08/dap_productlinks_widget_setup.png" rel="lightbox[473]" title="dap_productlinks_widget_setup"><img title="dap_productlinks_widget_setup" src="http://www.digitalaccesspass.com/doc/wp-content/uploads/2011/08/dap_productlinks_widget_setup.png" alt="" width="673" height="330" /></a></li>
<li>As soon as you do that, the DAP ProductLinks widget will show up in your blog&#8217;s side bar.<br />
<a href="http://www.digitalaccesspass.com/doc/wp-content/uploads/2011/08/dap_productlinks_sidebar.png" rel="lightbox[473]" title="dap_productlinks_sidebar"><img title="dap_productlinks_sidebar" src="http://www.digitalaccesspass.com/doc/wp-content/uploads/2011/08/dap_productlinks_sidebar.png" alt="" width="424" height="316" /></a></li>
<li>By default, each of the product names &#8211; like &#8220;Gold Membership&#8221; in the above example &#8211; will link to whatever URL you put into the &#8220;Post-Login URL&#8221; for that particular product (DAP Dashboard &gt; Products &gt; Manage). So the next step is to create a separate page for each product, and then enter the permalink for this new page, into the Post-Login URL of that Product within DAP.</li>
<li>Create a new page in WordPress &#8211; call it, &#8220;<strong>Gold Membership Content</strong>&#8221; (for example). In the body of the page, enter the following DAP merge tag:<strong>%%PRODUCT_DETAILS_&lt;id&gt;%%<br />
</strong></p>
<p title="dap_productlinks_mergetag">Replace the entire text <strong>&lt;id&gt;</strong> with the actual Product id from DAP (Products &gt; Manage)</p>
<p>So, if the product&#8217;s id is 6 in DAP, then the merge code becomes:</p>
<p><strong>%%PRODUCT_DETAILS_6%%</strong></p>
<p>Save the page. And if you gave the page the title &#8220;Gold Membership Content&#8221;, then the permalink for this page will be:<br />
<strong>http://YourSite.com/gold-membership-content/</strong></p>
<p><a href="http://www.digitalaccesspass.com/doc/wp-content/uploads/2011/08/dap_productlinks_mergetag.png" rel="lightbox[473]" title="dap_productlinks_mergetag"><img title="dap_productlinks_mergetag" src="http://www.digitalaccesspass.com/doc/wp-content/uploads/2011/08/dap_productlinks_mergetag.png" alt="" width="390" height="359" /></a></li>
<li>Take the above permalink and enter it into the product &#8220;Gold Membership&#8221; in the &#8220;Post-Login URL&#8221; field. That&#8217;s it!<br />
<a href="http://www.digitalaccesspass.com/doc/wp-content/uploads/2011/08/dap_productlinks_productsettings.png" rel="lightbox[473]" title="dap_productlinks_productsettings"><img title="dap_productlinks_productsettings" src="http://www.digitalaccesspass.com/doc/wp-content/uploads/2011/08/dap_productlinks_productsettings.png" alt="" width="604" height="345" /></a></li>
<li>Do the above for all products and you&#8217;re done.</li>
</ol>
<p>&nbsp;</p>
<h3>End Result</h3>
<ul>
<li>For each product that your member buys, the &#8220;Your Products&#8221; widget will show in the side-bar.</li>
<li>It will list all of the products that the member has purchased.</li>
<li>Each of the product names will link to it&#8217;s own specific content page</li>
<li>When member goes to that page, the DAP merge tag you entered for that product will expand into product details and product-specific content links just for that product.</li>
</ul>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://www.digitalaccesspass.com/doc/product-specific-details/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>Merge Tags For Email</title>
		<link>http://www.digitalaccesspass.com/doc/merge-tags-for-email/</link>
		<comments>http://www.digitalaccesspass.com/doc/merge-tags-for-email/#comments</comments>
		<pubDate>Mon, 24 May 2010 23:00:39 +0000</pubDate>
		<dc:creator>Ravi Jayagopal</dc:creator>
				<category><![CDATA[Broadcasts]]></category>
		<category><![CDATA[Config]]></category>
		<category><![CDATA[Customization]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[Email Resources]]></category>
		<category><![CDATA[Personalization]]></category>
		<category><![CDATA[Setup]]></category>

		<guid isPermaLink="false">http://www.digitalaccesspass.com/doc/?p=418</guid>
		<description><![CDATA[Here are the merge-tags that you can use in outgoing autoresponder and broadcast emails sent through DAP. (Click here for merge tags you can use in your WordPress blog posts/pages) %%FIRST_NAME%% This will be replaced by the first-name of the user. %%LAST_NAME%% This will be replaced by the first-name of the user. %%EMAIL_ID%% This will [...]]]></description>
			<content:encoded><![CDATA[<p>Here are the merge-tags that you can use in outgoing autoresponder and broadcast emails sent through DAP. (<a href="http://www.digitalaccesspass.com/doc/merge-tags-in-wordpress-posts/">Click here for merge tags you can use in your WordPress blog posts/pages</a>)</p>
<p><strong>%%FIRST_NAME%%</strong></p>
<p>This will be replaced by the first-name of the user.</p>
<p><strong>%%LAST_NAME%%</strong></p>
<p>This will be replaced by the first-name of the user.</p>
<p><strong>%%EMAIL_ID%%</strong></p>
<p>This will be replaced by the email id of the user.</p>
<p><strong>%%PASSWORD%%</strong></p>
<p>This will be replaced by the password of the user.</p>
<p><strong>%%SITE_NAME%%</strong></p>
<p>This will be replaced by whatever text you have entered in &#8220;<strong>Setup &gt; Config &gt; Basic &gt; Site Name</strong>&#8221; in your DAP Dashboard.</p>
<p><strong>%%ADMIN_NAME%%</strong></p>
<p>This will be replaced by whatever text you have entered in &#8220;<strong>Setup &gt; Config &gt; Basic &gt; Admin Name</strong>&#8221; in your DAP Dashboard.</p>
<p><strong>%%ADMIN_EMAIL%%</strong></p>
<p>This will be replaced by whatever text you have entered in &#8220;<strong>Setup &gt; Config &gt; Basic &gt; Admin Email</strong>&#8221; in your DAP Dashboard.</p>
<p><strong>%%AFF_LINK%%</strong></p>
<p>This will be replaced by the actual affiliate link of the member (Eg., http://yoursite.com/dap/a/?a=1234)</p>
<p><strong>%%SITE_URL_DAP%%</strong></p>
<p>Replaced by your actual web site url (Eg., http://yoursite.com)</p>
<p><strong>%%UNSUB_LINK%%</strong></p>
<p>This is replaced by a 1-click Unsubscribe link that you can add to the bottom of your outgoing broadcast and autoresponder emails.</p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 183px; width: 1px; height: 1px; overflow: hidden;">
<p>This will be replaced by whatever text you have entered in &#8220;<strong>Setup &gt; Config &gt; Basic &gt; Admin Email</strong>&#8221; in your DAP Dashboard.</p>
</div>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://www.digitalaccesspass.com/doc/merge-tags-for-email/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Merge Tags For WordPress Posts &amp; Pages</title>
		<link>http://www.digitalaccesspass.com/doc/merge-tags-in-wordpress-posts/</link>
		<comments>http://www.digitalaccesspass.com/doc/merge-tags-in-wordpress-posts/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 03:23:24 +0000</pubDate>
		<dc:creator>Ravi Jayagopal</dc:creator>
				<category><![CDATA[Customization]]></category>
		<category><![CDATA[LiveLinks]]></category>
		<category><![CDATA[Personalization]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Setup]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.digitalaccesspass.com/doc/?p=169</guid>
		<description><![CDATA[Here are the merge-tags that you can use in your WP posts, and what they mean. (Click here for merge tags for Autoresponder &#38; Broadcast Emails) %%LOGIN_FORM%% This is better suited for a WP &#8220;page&#8221;. This text will be replaced by a login form using which your members can log in to your membership site. [...]]]></description>
			<content:encoded><![CDATA[<p>Here are the merge-tags that you can use in your WP posts, and what they mean. (<a href="http://www.digitalaccesspass.com/doc/merge-tags-for-email/">Click here for merge tags for Autoresponder &amp; Broadcast Emails</a>)</p>
<p><strong>%%LOGIN_FORM%%</strong></p>
<p>This is <a href="http://www.digitalaccesspass.com/doc/creating-a-login-page-within-wordpress/">better suited for a WP &#8220;page&#8221;</a>. This text will be replaced by a login form using which your members can log in to your membership site.</p>
<p><strong>%%AFFDETAILS%%</strong></p>
<p>This will be replaced by the entire Affiliate section from the default home page at YourSite.com/dap/ . Better suited for a Page.</p>
<p><strong>%%USERPROFILE%%</strong></p>
<p>This will be replaced by the user profile from the default home page at YourSite.com/dap/. Better suited for a Page.</p>
<p><strong>%%USERLINKS%%</strong></p>
<p>This will be replaced by the user links section (the list of what products and what links user currently has access to) from the default home page at YourSite.com/dap/. Better suited for a Page.</p>
<p><strong>%%FIRST_NAME%%</strong></p>
<p>This will be replaced by the first-name of the user.</p>
<p><strong>%%EMAIL%%</strong></p>
<p>This will be replaced by the email id of the user.</p>
<p><strong>%%AFF_LINK%%</strong></p>
<p>This will be replaced by the raw affiliate link of the member. If you want it to show up as a link in your blog post, use it like this:</p>
<blockquote><p>&lt;a href=&#8221;%%AFF_LINK%%&#8221;&gt;%%AFF_LINK%%&lt;/a&gt;</p></blockquote>
<p><strong>%%MSG%%</strong></p>
<p>1) Create a WP &#8220;page&#8221; with the slug &#8220;error&#8221;, and it can be accessed at http://YourSite.com/error/</p>
<p>2) In the body of the page, put the text %%MSG%% &#8211; followed by whatever copy you want.</p>
<p>3) Enter the URL from Step #1 on your &#8220;Products&#8221; page, in the field &#8220;Error Page URL&#8221;</p>
<p>4) Logout of DAP, and log back in for the changes to take effect.</p>
<p>Impact: When someone tries to visit a link that has expired, or a link that they don&#8217;t have access to, they will be redirected to the above URL, and the system error message will be shown where you put in the merge code %%MSG%%.</p>
<p><strong>%%PRODUCT_DETAILS_&lt;insert-product-id&gt;%%</strong></p>
<p>Replaces merge tag with Product-specific details (including links available to the member as part of that Product) on a specific WordPress page/post.</p>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://www.digitalaccesspass.com/doc/merge-tags-in-wordpress-posts/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>DAP&#8217;s Incredibly Powerful Affiliate Program</title>
		<link>http://www.digitalaccesspass.com/doc/incredibly-powerful-affiliate-program/</link>
		<comments>http://www.digitalaccesspass.com/doc/incredibly-powerful-affiliate-program/#comments</comments>
		<pubDate>Fri, 07 Aug 2009 21:07:52 +0000</pubDate>
		<dc:creator>Ravi Jayagopal</dc:creator>
				<category><![CDATA[3rd Party Integration]]></category>
		<category><![CDATA[Affiliates]]></category>
		<category><![CDATA[Cancellations/Refunds]]></category>
		<category><![CDATA[ClickBank]]></category>
		<category><![CDATA[Examples]]></category>
		<category><![CDATA[Personalization]]></category>
		<category><![CDATA[Setup]]></category>
		<category><![CDATA[Strategy]]></category>
		<category><![CDATA[Switching to DAP]]></category>

		<guid isPermaLink="false">http://www.digitalaccesspass.com/doc/?p=106</guid>
		<description><![CDATA[DAP offers you a built-in Affiliate Program for your web site, where all your Members can automatically and instantly be enrolled as Affiliates. And here are a few, rarely implemented features in DAP that you won&#8217;t find in too many other affiliate providers: 1) Instant Affiliates This means that as soon as a buyer purchases [...]]]></description>
			<content:encoded><![CDATA[<p>DAP offers you a built-in Affiliate Program for your web site, where all your Members can automatically and instantly be enrolled as Affiliates.</p>
<p>And here are a few, rarely implemented features in DAP that you won&#8217;t find in too many other affiliate providers:</p>
<h3>1) Instant Affiliates</h3>
<p>This means that as soon as a buyer purchases any product, or even signs up for a free product, they can get an <strong>instant affiliate link</strong> that they can immediately start using to promote your membership site.</p>
<p>In fact, you can even send them their own unique affiliate link right in their welcome email itself, the same email where you send them their login info! So even before they&#8217;ve logged in to your site to download or view the content that they&#8217;ve just purchased, they&#8217;re already and affiliate and can start promoting your site to others, and earn back their investment even before they&#8217;ve reached your refund period.</p>
<h3>2) Affiliate Link Redirection</h3>
<p>Let&#8217;s say you were an Affiliate of Amazon.com. Now imagine if Amazon gave you just one, static affiliate link to promote ALL of their products across their ENTIRE web site. That is, one standard affiliate link to promote millions of products, and anyone who clicked on that standard link would always land at Amazon&#8217;s home page, no matter what &#8211; and that there was no way to direct affiliate traffic directly to any of the actual product pages.</p>
<p>Imagine if you saw a link on our blog that read &#8220;Click here to check out the amazing Bamboo Fun tablet&#8221; and the link, instead of taking you directly to the product page of the Bamboo fun, took you to Amazon&#8217;s home page? How incredibly annoying would that be for the visitor to always be taken to Amazon&#8217;s home page no matter what product someone were recommending? Think Amazon would be the e-commerce juggernaut it is today without that implementing that simple feature?</p>
<p>But Amazon lets you link directly to the product pages of the product you are referring to (or recommending, or promoting).</p>
<p>Like&#8230;.</p>
<blockquote><p>&#8220;<strong>Check out the amazing <a href="http://www.amazon.com/o/ASIN/B000V9RL6G/nosim-20" target="_blank">Bamboo Fun tablet</a></strong>&#8221; (links directly to product page)</p>
<p>&#8220;<strong>Check out my <a href="http://amazon.com/o/ASIN/0979437601/nosim-20" target="_blank">best-selling book &#8216;No Business Like E-Business&#8217;</a> on Amazon</strong>&#8221; (links directly to the book page)</p></blockquote>
<p>We are amazed that so many affiliate software providers do not offer this simple, basic feature. And that is the ability to set the affiliate cookie, and then redirect the referred visitor to any page on any web site the affiliate wants the visitor to land on.</p>
<p>So when you use DAP, your affiliates are not forced to always send traffic to your home page. They can redirect the visitor (who just clicked on their affiliate link) to any part of your web site. In fact, they can redirect the visitor to any web page on any web site anywhere online! So they could be sending traffic to one of your free videos, one of your blog posts, or even to one of your articles published on someone else&#8217;s web site!</p>
<h3>3) Multi-Tier Affiliate Program</h3>
<p>DAP allows you to offer<a href="http://www.digitalaccesspass.com/doc/multi-tier-affiliate-program/"> multiple tiers of commissions</a>, not just one. So you can create an incredible revenue stream for your affiliates, where they get paid on the sales generated by their 1st level referrals. Which means more incentive for them to join and promote your affiliate program!</p>
<h3>4) Paying A Per-Lead Commission To Your ClickBank Affiliates</h3>
<p>You already know that DAP supports ClickBank purchases, and you can turn off the display of your affiliate section if you are using ClickBank&#8217;s own affiliate program, instead of DAP.</p>
<p>But wait &#8211; that does not mean that you can&#8217;t use the two affiliate programs IN TANDEM to pull of something really crazy &#8211; like awarding your ClickBank affiliates with a commission just for sending you a lead &#8211; meaning, the lead just signs up for your &#8220;free&#8221; newsletter &#8211; and of course, if they go on to purchase something from your web site (assuming you are selling through ClickBank), then they get the usual CB commissions.</p>
<p>So here&#8217;s how it works:</p>
<ul>
<li>Every member on your DAP-powered site gets their own affiliate link that looks like:<br />
<strong>http://YourSite.com/dap/a/?a=1234</strong></li>
<li>And their CB affiliate link for your product would look like <strong>
<p>http://affnick.merchantnick.hop.clickbank.net</strong></li>
<li>Now DAP&#8217;s affiliate link has the capability of redirecting to any page on your site (or any page on any web site) by adding the destination URL to the affiliate link.</li>
<li>So, now your affiliate adds their CB affiliate link to the END of their DAP affiliate link, like this:<br />
<strong>http://YourSite.com/dap/a/?a=1234&amp;p=</strong><strong>http://affnick.merchantnick.hop.clickbank.net</strong></li>
<li>So when someone clicks on this above link that your affiliate is promoting, then two things happen:<br />
a) The DAP affiliate cookie is set<br />
b) The CB cookie is also set</li>
<li>So within DAP, you can set up just a Per-Lead Affiliate Commission for your Product (which is say, a free newsletter or a free PDF, or whatever)</li>
<li>So when the referred user signs up at your membership site, they first get paid the Per-Lead Commission</li>
<li>If they then go on to purchase other products from your web site (which obviously you&#8217;re selling through ClickBank, otherwise, this whole section is of no meaning to you), then they get the Per-Sale commission from ClickBank too!</li>
</ul>
<p>So that sums up some of the best features that are part of DAP.</p>
<p>Of course, there&#8217;s still all the other cool affiliate features in DAP, like&#8230;</p>
<ul>
<li><strong>Commission Override</strong>: Give special treatment to your Top Affiliates and JV partners by giving them higher commissions than the rest of your affiliates.</li>
<li>Pay affiliates both <strong>one-time or monthly recurring</strong> commissions for the life of the subscriber.</li>
<li><strong>Pay-Per-Lead</strong> and <strong>Pay-Per-Sale</strong></li>
<li><strong>Ready-made</strong> Affiliate Links Displayed for Users</li>
<li>Ready-made <a href="http://www.digitalaccesspass.com/doc/creating-a-ready-made-affiliate-toolbox/">Affiliate Toolbox</a> for your affiliates</li>
<li><strong>Affiliate-Analytics</strong>:<br />
* Real-time Earnings Reporting<br />
* Real-time Payment Report<br />
* Real-time Traffic Stats for both Affiliates and Admin (with referers)</li>
<li><strong>Paypal Mass-Pay Ready</strong>: You get a Paypal Mass-Pay ready, fully formatted affiliate list with all commissions listed.</li>
<li><strong>Offline Payments</strong>: Export Affiliates for payment, pay them using any offline means (eg., checks), and then once the checks have been mailed, you can mark them all as &#8220;Paid&#8221;.</li>
<li><strong>Process Refund for Affiliates</strong>: When you process a “refund”, DAP will also reverse the affiliate commission. It will not reverse the Pay-per-lead amounts. Only the Pay-per-sale amount is negated.</li>
</ul>
<p>So these are the features available to right out-of-the-box, just waiting for you to start signing up an army of affiliates from day 1!</p>
<p>For more information about the Affiliate Module, check out our documentation page at http://DigitalAccessPass.com/documentation/ and see the</p>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://www.digitalaccesspass.com/doc/incredibly-powerful-affiliate-program/feed/</wfw:commentRss>
		<slash:comments>36</slash:comments>
		</item>
		<item>
		<title>Creating Member Profile, My Content &amp; Affiliate Sections within WordPress</title>
		<link>http://www.digitalaccesspass.com/doc/creating-member-affiliate-sections-within-wordpress/</link>
		<comments>http://www.digitalaccesspass.com/doc/creating-member-affiliate-sections-within-wordpress/#comments</comments>
		<pubDate>Mon, 04 May 2009 22:19:03 +0000</pubDate>
		<dc:creator>Ravi Jayagopal</dc:creator>
				<category><![CDATA[Affiliates]]></category>
		<category><![CDATA[Customization]]></category>
		<category><![CDATA[Personalization]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.digitalaccesspass.com/doc/?p=44</guid>
		<description><![CDATA[DAP&#8217;s Member-Facing Pages DAP really has only 3 &#8220;member-facing&#8221; pages&#8221;: My Content: A &#8220;My Content&#8221; type page, that shows all the products that the member has purchased or signed up for. This is the page that shows the links newly appearing as and when they are dripped on the member. My Profile: A &#8220;My Profile&#8221; [...]]]></description>
			<content:encoded><![CDATA[<h3>DAP&#8217;s Member-Facing Pages</h3>
<p>DAP really has only 3 &#8220;member-facing&#8221; pages&#8221;:</p>
<ul>
<li><strong>My Content: </strong>A &#8220;My Content&#8221; type page, that shows all the products that the member has purchased or signed up for. This is the page that shows the links newly appearing as and when they are dripped on the member.</li>
<li><strong>My Profile: </strong>A &#8220;My Profile&#8221; page, which shows all of the user profile fields &#8211; like first name, last name, email, password, address, etc. They can change all of their contact information on this page.</li>
<li><strong>Affiliate Info: </strong>An &#8220;Affiliate Info&#8221; page, which shows the member their own personalized affiliate link, their link-referral stats, commissions earned, commissions paid, etc. If you want to make this page more powerful, you can add banners and emails and promo copy that the affiliate can simply copy/paste and send to their list.</li>
</ul>
<p>So basically, only 3 &#8220;member&#8221; pages as far as DAP is concerned. The rest of your actual content is going to be within WordPress and other folders anyway: Your pages, your posts, your videos, PDF, etc.</p>
<p><a href="../wp-content/uploads/2009/05/dap_memberdashboardlinks.png" rel="lightbox[44]" title="dap_memberdashboardlinks"><img title="dap_memberdashboardlinks" src="../wp-content/uploads/2009/05/dap_memberdashboardlinks.png" alt="" width="480" height="615" /></a></p>
<p>Now let&#8217;s see how you can put all of these 3 components, right with your WordPress blog.</p>
<ul>
<li>&#8220;<strong>My Content</strong>&#8221; section &#8211; use the merge tag <strong>%%USERLINKS%%</strong></li>
<li><strong>&#8220;My Profile</strong>&#8221; (username/password) &#8211; merge tag <strong>%%USERPROFILE%%</strong></li>
<li><strong>&#8220;Affiliate Info</strong>&#8221; Section &#8211; merge tag <strong>%%AFFDETAILS%%</strong></li>
</ul>
<p>You can either put them all on one WordPress page &#8211; eg., create a single page called &#8220;<strong>My Account</strong>&#8221; and in the body of that page, put all 3 merge tags one after the other).</p>
<p>Or you can split them up and create 3 separate pages to display these sections, like shown in the image below.</p>
<h3><strong>Creating a &#8220;Member Content&#8221; Page within WordPress</strong></h3>
<p>This is the page that shows all of a member&#8217;s content details &#8211; like what products the user has purchased, what are the access start and end dates for that purchase, and all of the content within each product &#8211; all separately organized.<strong><br />
</strong></p>
<p>To create such a page, simply create a WordPress “<strong>Page</strong>” (not &#8216;post&#8217;) with the title &#8220;<strong>My Content</strong>&#8220;  (for example)<strong> </strong>and within the body of the page, enter the text <strong>%%USERLINKS%%</strong> and save the new page. Now if you visit the page, and you are logged in, it will show you something similar to the image below.</p>
<p>And if you gave this page the title of &#8220;My Content&#8221;, then the actual link to this page would be <strong>YourSite.com/blog/my-content/</strong></p>
<p><a href="http://www.digitalaccesspass.com/doc/wp-content/uploads/2009/05/dap_mycontent.png" rel="lightbox[44]" title="dap_mycontent"><img class="alignnone size-full wp-image-846" style="border: 1px solid black;" title="dap_mycontent" src="http://www.digitalaccesspass.com/doc/wp-content/uploads/2009/05/dap_mycontent.png" alt="" width="433" height="835" /></a></p>
<h3><strong>Creating a &#8220;Member Profile&#8221; Page within WordPress</strong></h3>
<p>This is the section that shows the user&#8217;s profile information, where they can change their name, email id, address and other details.<strong><br />
</strong></p>
<p>For this, create a WordPress “<strong>Page</strong>” (not &#8216;post&#8217;) with the text <strong>%%USERPROFILE%%</strong> in the body of the page, and a title of say, <strong>User Profile</strong> (or) <strong>My Profile</strong> and save the new page.</p>
<p>If you used the text &#8220;User Profile&#8221; for the title, then the actual link to this page would be <strong>YourSite.com/blog/user-profile/</strong></p>
<p><strong><img class="alignnone size-full wp-image-847" style="border: 1px solid black;" title="dap_profile" src="http://www.digitalaccesspass.com/doc/wp-content/uploads/2009/05/dap_profile.png" alt="" width="510" height="852" /><br />
</strong></p>
<h3><strong>Creating an &#8220;Affiliate&#8221; Page within WordPress</strong></h3>
<p>This is the page that shows your users their affiliate link (which is instantly created for them upon purchasing any product on your site), link clicks, referrer details, earnings and payments.</p>
<p>For this, create a WordPress “<strong>Page</strong>” (not &#8216;post&#8217;) with the text <strong>%%AFFDETAILS%%</strong> in the body of the page, and a title of say, <strong>Affiliate</strong>, and save the new page.</p>
<p>If you used the text &#8220;Affiliates&#8221; for the title, then the actual link to this page would be <strong>YourSite.com/blog/affiliates/</strong></p>
<p><a href="http://www.digitalaccesspass.com/doc/wp-content/uploads/2009/05/dap_affiliatedetails.png" rel="lightbox[44]" title="dap_affiliatedetails"><img class="alignnone size-full wp-image-848" style="border: 1px solid black;" title="dap_affiliatedetails" src="http://www.digitalaccesspass.com/doc/wp-content/uploads/2009/05/dap_affiliatedetails.png" alt="" width="495" height="907" /></a></p>
<p>That&#8217;s it!</p>
<p>Now if you want to make the affiliate page more powerful by creating a &#8220;ready-made affiliate toolbox&#8221; for your affiliates, then see this: <a href="http://www.digitalaccesspass.com/doc/creating-a-ready-made-affiliate-toolbox/">Creating an Affiliate Toolbox</a></p>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://www.digitalaccesspass.com/doc/creating-member-affiliate-sections-within-wordpress/feed/</wfw:commentRss>
		<slash:comments>35</slash:comments>
		</item>
		<item>
		<title>Creating A Login Page Within WordPress</title>
		<link>http://www.digitalaccesspass.com/doc/creating-a-login-page-within-wordpress/</link>
		<comments>http://www.digitalaccesspass.com/doc/creating-a-login-page-within-wordpress/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 19:26:02 +0000</pubDate>
		<dc:creator>Ravi Jayagopal</dc:creator>
				<category><![CDATA[Access Control]]></category>
		<category><![CDATA[Config]]></category>
		<category><![CDATA[Customization]]></category>
		<category><![CDATA[FAQ]]></category>
		<category><![CDATA[Personalization]]></category>
		<category><![CDATA[Protection FAQ]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress FAQ]]></category>
		<category><![CDATA[WordPress Plugins]]></category>

		<guid isPermaLink="false">http://www.digitalaccesspass.com/doc/?p=38</guid>
		<description><![CDATA[Now DAP already provides you with a built-in login form, at YourSite.com/dap/login.php But if you want to put this form &#8220;within&#8221; your WordPress blog, so as to give your login form the same Look &#38; Feel as the rest of your blog, all you need to do, is&#8230; 1) Create a WordPress “Page” (not &#8216;post&#8217;) [...]]]></description>
			<content:encoded><![CDATA[<p>Now DAP already provides you with a built-in login form, at <span style="color: #0000ff;">YourSite.com/dap/login.php</span></p>
<p>But if you want to put this form &#8220;within&#8221; your WordPress blog, so as to give your login form the same Look &amp; Feel as the rest of your blog, all you need to do, is&#8230;</p>
<p>1) Create a WordPress “<strong>Page</strong>” (not &#8216;post&#8217;) with the text <strong>%%LOGIN_FORM%%</strong> in the body of the page, and a title of say, <strong>Login</strong>, and save the new page. If you used the text &#8220;Login&#8221; for the title, then the actual link to this page would be <strong>YourSite.com/blog/login</strong></p>
<p>2) This page now shows up as &#8220;Login&#8221; along with the rest of your &#8220;pages&#8221; on your blog.</p>
<p>3) Go to DAP Admin &gt; Config &gt; Advanced (drop down). Scroll down to the field that says:</p>
<blockquote><p><strong>Location of your login page (eg., if using WordPress). Should start with a forward slash (`/`)</strong></p></blockquote>
<p>In the text box, enter the full link to your login page from Step 1:</p>
<blockquote><p><strong>http://YourSite.com/blog/login</strong></p>
<p>Or if your blog is in the root, then&#8230;</p>
<p><strong>http://YourSite.com/login</strong></p></blockquote>
<p>That&#8217;s it!</p>
<p>When someone clicks on the &#8220;Login&#8221; link that now shows in your &#8220;Pages&#8221; menu, they will now see a nicely formatted login form.</p>
<p><strong>Related</strong>: <a href="http://www.digitalaccesspass.com/doc/logout-link/">Where is the Logout Link?</a></p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px; overflow: hidden;"><strong>YourSite.com/blog/login</strong></div>
<!-- PHP 5.x -->]]></content:encoded>
			<wfw:commentRss>http://www.digitalaccesspass.com/doc/creating-a-login-page-within-wordpress/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
	</channel>
</rss>

