<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Tips and Tricks HQ Forum &#187; Recent Posts</title>
		<link>http://www.tipsandtricks-hq.com/forum/</link>
		<description>Support Forum for Tips and Tricks HQ Products</description>
		<language>en-US</language>
		<pubDate>Tue, 07 Feb 2012 06:54:34 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.tipsandtricks-hq.com/forum/search.php</link>
		</textInput>
		<atom:link href="http://www.tipsandtricks-hq.com/forum/rss/" rel="self" type="application/rss+xml" />

		<item>
			<title>BobR on "How to make a Pay for online Video viewing site with access for 30 days"</title>
			<link>http://www.tipsandtricks-hq.com/forum/topic/how-to-make-a-pay-for-online-video-viewing-site-with-access-for-30-days/page/3#post-29024</link>
			<pubDate>Tue, 07 Feb 2012 06:53:31 +0000</pubDate>
			<dc:creator>BobR</dc:creator>
			<guid isPermaLink="false">29024@http://www.tipsandtricks-hq.com/forum/</guid>
			<description>&#60;p&#62;Thanks for the help guys. Sorry for so much back and forth (though I can't be the only user trying to accomplish this).&#60;/p&#62;
&#60;p&#62;In essence, it is impossible to have a 7-day access and a 30-day access product live under one eStore roof...&#60;/p&#62;
&#60;p&#62;Since the link expiration must be set to the greater amount required (in this scenario, 30 days), and since the APR cookie will be re-issued each time it is clicked from the initial download link, then there is no way to stop a user (who purchased 7-day access) from going to their email on day 10, clicking the encrypted link, and watching the content on that page (thanks to the freshly-issued cookie).&#60;/p&#62;
&#60;p&#62;Or am I mistaken?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Peter on "A somewhat different use for eMember - newbie question..."</title>
			<link>http://www.tipsandtricks-hq.com/forum/topic/a-somewhat-different-use-for-emember-newbie-question/page/2#post-29023</link>
			<pubDate>Tue, 07 Feb 2012 05:30:57 +0000</pubDate>
			<dc:creator>Peter</dc:creator>
			<guid isPermaLink="false">29023@http://www.tipsandtricks-hq.com/forum/</guid>
			<description>&#60;p&#62;Hi Paul,&#60;br /&#62;
See my answers and questions inline:&#60;/p&#62;
&#60;p&#62;====&#60;br /&#62;
When I click on a forbidden page (as an unregistered user), I get to see &#34;Please Login to view this Content (Not a member? Join Today)&#60;/p&#62;
&#60;p&#62;But when I click on a forbidden POST - I only see &#34;Content is restricted&#34;&#60;/p&#62;
&#60;p&#62;Is it possible for that message to be the same as in case of blocked pages?&#60;br /&#62;
====&#60;/p&#62;
&#60;p&#62;Seems like you are protecting the post using a shortcode but you're protecting the page using the &#34;eMember Protection Options&#34; flags in the page editor of wordpress.&#60;br /&#62;
Is that right?&#60;br /&#62;
I suspect this is why you are seeing the different messages.&#60;/p&#62;
&#60;p&#62;If you're using the shortcode you can suppress the restricted message such as &#34;This content is for members only&#34; by specifying in the shortcode as follows:&#60;/p&#62;
&#60;p&#62;[emember_protected do_not_show_restricted_msg=1]&#60;/p&#62;
&#60;p&#62;your protected content goes here&#60;/p&#62;
&#60;p&#62;[/emember_protected]
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Peter on "Affiliate wigget links"</title>
			<link>http://www.tipsandtricks-hq.com/forum/topic/affiliate-wigget-links#post-29022</link>
			<pubDate>Tue, 07 Feb 2012 05:07:09 +0000</pubDate>
			<dc:creator>Peter</dc:creator>
			<guid isPermaLink="false">29022@http://www.tipsandtricks-hq.com/forum/</guid>
			<description>&#60;p&#62;Hi Jason,&#60;br /&#62;
Regarding the sidebar widget Affiliate links - you'll need to perform a small hack in the code to get the links to show your configured affiliate url.&#60;/p&#62;
&#60;p&#62;I'm personally reluctant to encourage source code hacks as this causes complications if you need to download an updated version of the plugin in the future because you'll lose the changes or will need to re-hack them.&#60;/p&#62;
&#60;p&#62;However if you're desperate and really need this then here is a hack I've just come up with:&#60;/p&#62;
&#60;p&#62;1) make a copy of the wp_affiliate_login_widget.php file and keep this original version in a separate and safe directory on your computer in case you stuff things up.&#60;/p&#62;
&#60;p&#62;2) After you've made a copy of the original file, now edit the wp_affiliate_login_widget.php file and look for the code where the following function is defined.&#60;/p&#62;
&#60;p&#62;This is the ORIGINAL code:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#60;br /&#62;
function aff_login_widget()&#60;br /&#62;
{&#60;br /&#62;
    if(aff_main_check_security())&#60;br /&#62;
    {&#60;br /&#62;
        $output = show_aff_widget_logged_in_details();&#60;br /&#62;
    }&#60;br /&#62;
    else&#60;br /&#62;
    {&#60;br /&#62;
        $output = show_aff_widget_login_form();&#60;br /&#62;
    }&#60;br /&#62;
    return $output;&#60;br /&#62;
}&#60;br /&#62;
&#60;/code&#62; &#60;/p&#62;
&#60;p&#62;Modify the above so it looks like the following:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#60;br /&#62;
function aff_login_widget()&#60;br /&#62;
{&#60;br /&#62;
    $affiliate_login_url = get_option('wp_aff_login_url');&#60;br /&#62;
    if(aff_main_check_security())&#60;br /&#62;
    {&#60;br /&#62;
        $output = show_aff_widget_logged_in_details($affiliate_login_url);&#60;br /&#62;
    }&#60;br /&#62;
    else&#60;br /&#62;
    {&#60;br /&#62;
        $output = show_aff_widget_login_form($affiliate_login_url);&#60;br /&#62;
    }&#60;br /&#62;
    return $output;&#60;br /&#62;
}&#60;br /&#62;
&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Regarding the SSL question, you might have to wait till Admin sees this post because he is the expert in that subject.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Peter on "Can I set affiliate commissions separately?"</title>
			<link>http://www.tipsandtricks-hq.com/forum/topic/can-i-set-affiliate-commissions-separately#post-29021</link>
			<pubDate>Tue, 07 Feb 2012 03:50:39 +0000</pubDate>
			<dc:creator>Peter</dc:creator>
			<guid isPermaLink="false">29021@http://www.tipsandtricks-hq.com/forum/</guid>
			<description>&#60;p&#62;Yes that's right.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Peter on "subscription payment link?"</title>
			<link>http://www.tipsandtricks-hq.com/forum/topic/subscription-payment-link#post-29020</link>
			<pubDate>Tue, 07 Feb 2012 03:44:14 +0000</pubDate>
			<dc:creator>Peter</dc:creator>
			<guid isPermaLink="false">29020@http://www.tipsandtricks-hq.com/forum/</guid>
			<description>&#60;p&#62;Hi,&#60;br /&#62;
Regarding your question:&#60;br /&#62;
&#34;why buy now link redirect to home page?&#34;&#60;/p&#62;
&#60;p&#62;Have you double-checked that your product ID has been correctly entered in the link?&#60;br /&#62;
ie, ?wp_eStore_buy_now=X&#60;/p&#62;
&#60;p&#62;where X is a valid product ID which you can get from your eStore product configuration.&#60;/p&#62;
&#60;p&#62;Can you also please send a link to the page which contains your &#34;buy now&#34; text link?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Peter on "&#34;Update Link&#34; button not visible"</title>
			<link>http://www.tipsandtricks-hq.com/forum/topic/update-link-button-not-visible#post-29019</link>
			<pubDate>Tue, 07 Feb 2012 03:32:26 +0000</pubDate>
			<dc:creator>Peter</dc:creator>
			<guid isPermaLink="false">29019@http://www.tipsandtricks-hq.com/forum/</guid>
			<description>&#60;p&#62;Hi Christin,&#60;br /&#62;
Yep I know what you mean because I just tried it myself.&#60;/p&#62;
&#60;p&#62;However this will only be a problem if you have a really small screen size.&#60;/p&#62;
&#60;p&#62;The reason why it behaves like this is because the popup is being created with a &#34;fixed&#34; position.&#60;/p&#62;
&#60;p&#62;Unfortunately you might have to put up with it for now and let's wait for admin to see if he has any better suggestions.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>kien on "subscription payment link?"</title>
			<link>http://www.tipsandtricks-hq.com/forum/topic/subscription-payment-link#post-29018</link>
			<pubDate>Tue, 07 Feb 2012 03:28:26 +0000</pubDate>
			<dc:creator>kien</dc:creator>
			<guid isPermaLink="false">29018@http://www.tipsandtricks-hq.com/forum/</guid>
			<description>&#60;p&#62;do you have release day for this update? And why buy now link redirect to home page?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>wzp on "How to make a Pay for online Video viewing site with access for 30 days"</title>
			<link>http://www.tipsandtricks-hq.com/forum/topic/how-to-make-a-pay-for-online-video-viewing-site-with-access-for-30-days/page/3#post-29017</link>
			<pubDate>Tue, 07 Feb 2012 03:25:11 +0000</pubDate>
			<dc:creator>wzp</dc:creator>
			<guid isPermaLink="false">29017@http://www.tipsandtricks-hq.com/forum/</guid>
			<description>&#60;p&#62;1. The encrypted link, when clicked, if the link is not expired, causes an APR cookie to be issued.&#60;/p&#62;
&#60;p&#62;2. The browser is told to delete the cookie at the end of the current browser session.  This is deliberate, as we want the access to be controlled by the same duration and expiration settings that manage the encrypted links.&#60;/p&#62;
&#60;p&#62;3. Once access has been granted, the expiry setting of the APR shortcode controls the amount of time access will be granted for that session.  Think of it as a timeout setting.  If access is being granted to a page with a continuous feed, it limits the number of minutes the user can watch the feed.  When the expiry expires for the cookie, the user must get a new cookie.&#60;/p&#62;
&#60;p&#62;4. The purpose of the automagic cookie deletion and the expiry settings is to prevent people from saving and sharing cookies.&#60;/p&#62;
&#60;p&#62;Once this is understood, you see why we recommend the link duration and number of clicks being set as stated.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>kimmy on "Can I set affiliate commissions separately?"</title>
			<link>http://www.tipsandtricks-hq.com/forum/topic/can-i-set-affiliate-commissions-separately#post-29016</link>
			<pubDate>Tue, 07 Feb 2012 02:01:33 +0000</pubDate>
			<dc:creator>kimmy</dc:creator>
			<guid isPermaLink="false">29016@http://www.tipsandtricks-hq.com/forum/</guid>
			<description>&#60;p&#62;Just to doublecheck - put 50% in the Additional Product Details -&#38;gt; Product Specific Commission -&#38;gt; Primary Commission  (and leave the 2nd tier commission empty)?&#60;br /&#62;
Thanks.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>kimmy on "Can I set affiliate commissions separately?"</title>
			<link>http://www.tipsandtricks-hq.com/forum/topic/can-i-set-affiliate-commissions-separately#post-29015</link>
			<pubDate>Tue, 07 Feb 2012 01:57:30 +0000</pubDate>
			<dc:creator>kimmy</dc:creator>
			<guid isPermaLink="false">29015@http://www.tipsandtricks-hq.com/forum/</guid>
			<description>&#60;p&#62;thank you!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Peter on "Customer Orders &#039;Download&#039; Video But Link Is &#039;Pay Per View&#039; Version"</title>
			<link>http://www.tipsandtricks-hq.com/forum/topic/customer-orders-download-video-but-link-is-pay-per-view-version#post-29014</link>
			<pubDate>Tue, 07 Feb 2012 01:41:27 +0000</pubDate>
			<dc:creator>Peter</dc:creator>
			<guid isPermaLink="false">29014@http://www.tipsandtricks-hq.com/forum/</guid>
			<description>&#60;p&#62;Hi again,&#60;br /&#62;
I forgot to add that there's nothing to stop you from creating buttons for each of the separate products with names which reflect the type of download such as:&#60;/p&#62;
&#60;p&#62;&#34;Download MOV File&#34;&#60;/p&#62;
&#60;p&#62;&#34;Download FLV File&#34;&#60;br /&#62;
etc&#60;/p&#62;
&#60;p&#62;Just a suggestion....this might make it more seamless for your customers.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Peter on "Customer Orders &#039;Download&#039; Video But Link Is &#039;Pay Per View&#039; Version"</title>
			<link>http://www.tipsandtricks-hq.com/forum/topic/customer-orders-download-video-but-link-is-pay-per-view-version#post-29013</link>
			<pubDate>Tue, 07 Feb 2012 01:37:04 +0000</pubDate>
			<dc:creator>Peter</dc:creator>
			<guid isPermaLink="false">29013@http://www.tipsandtricks-hq.com/forum/</guid>
			<description>&#60;p&#62;Hi,&#60;br /&#62;
If I understand you correctly you're trying to offer PPV and downloadable simultaneously. Is that right?&#60;/p&#62;
&#60;p&#62;If so, this isn't supported and you will have to create separate products as per admin's advice in this post:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.tipsandtricks-hq.com/forum/topic/can-you-have-both-pay-per-view-download-video-options-on-same-page&#34; rel=&#34;nofollow&#34;&#62;http://www.tipsandtricks-hq.com/forum/topic/can-you-have-both-pay-per-view-download-video-options-on-same-page&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kirk on "A somewhat different use for eMember - newbie question..."</title>
			<link>http://www.tipsandtricks-hq.com/forum/topic/a-somewhat-different-use-for-emember-newbie-question/page/2#post-29012</link>
			<pubDate>Tue, 07 Feb 2012 01:35:59 +0000</pubDate>
			<dc:creator>Kirk</dc:creator>
			<guid isPermaLink="false">29012@http://www.tipsandtricks-hq.com/forum/</guid>
			<description>&#60;p&#62;Hi Pauley13,&#60;br /&#62;
Something to consider since your requirements and workflows are probably stretching the limits of this free support forum.&#60;br /&#62;
I provide a service where I completely configure and setup eMember and any of the other Tips and Tricks plugins. It might save you a lot of time so you can get on with working on your business. If you are interested, have a look at my website and contact me there:&#60;br /&#62;
&#60;a href=&#34;http://wpfullservice.com/custom-work/&#34; rel=&#34;nofollow&#34;&#62;http://wpfullservice.com/custom-work/&#60;/a&#62;&#60;br /&#62;
Thanks,&#60;br /&#62;
Kirk.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Peter on "Discount automatically apply to differents member level"</title>
			<link>http://www.tipsandtricks-hq.com/forum/topic/discount-automatically-apply-to-differents-member-level#post-29011</link>
			<pubDate>Tue, 07 Feb 2012 01:28:16 +0000</pubDate>
			<dc:creator>Peter</dc:creator>
			<guid isPermaLink="false">29011@http://www.tipsandtricks-hq.com/forum/</guid>
			<description>&#60;p&#62;Hi,&#60;br /&#62;
Yep we get your point and I'm certain admin has this in consideration. &#60;/p&#62;
&#60;p&#62;It's just that sometimes there are higher priority features which need to be implemented first :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>perrij3 on "Issues with getting video to autoplay"</title>
			<link>http://www.tipsandtricks-hq.com/forum/topic/issues-with-getting-video-to-autoplay#post-29010</link>
			<pubDate>Tue, 07 Feb 2012 01:24:23 +0000</pubDate>
			<dc:creator>perrij3</dc:creator>
			<guid isPermaLink="false">29010@http://www.tipsandtricks-hq.com/forum/</guid>
			<description>&#60;p&#62;Thanks wpCommerce, that was the issue. Everything is working great now. Thanks again!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>SanDiegoWebGuy on "Discount automatically apply to differents member level"</title>
			<link>http://www.tipsandtricks-hq.com/forum/topic/discount-automatically-apply-to-differents-member-level#post-29009</link>
			<pubDate>Tue, 07 Feb 2012 00:26:15 +0000</pubDate>
			<dc:creator>SanDiegoWebGuy</dc:creator>
			<guid isPermaLink="false">29009@http://www.tipsandtricks-hq.com/forum/</guid>
			<description>&#60;p&#62;More than a year has passed, and this feature is still apparently on the cutting room floor. Any chance to see it revived? I would really value the ability to grant discounts on specific items if the buyer has a current membership.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>pauley13 on "A somewhat different use for eMember - newbie question..."</title>
			<link>http://www.tipsandtricks-hq.com/forum/topic/a-somewhat-different-use-for-emember-newbie-question#post-29008</link>
			<pubDate>Mon, 06 Feb 2012 23:49:29 +0000</pubDate>
			<dc:creator>pauley13</dc:creator>
			<guid isPermaLink="false">29008@http://www.tipsandtricks-hq.com/forum/</guid>
			<description>&#60;p&#62;hmmm.... you're gonna hate me, LOL&#60;/p&#62;
&#60;p&#62;Another problem&#60;/p&#62;
&#60;p&#62;1. I restricted ALL content in &#34;Manage Access Levels&#34;&#60;br /&#62;
2. Then I enabled a couple of pages for the FREE user&#60;br /&#62;
3. And then I enabled ALL pages/posts, etc for the PREMIUM user&#60;/p&#62;
&#60;p&#62;Works fine for the free user. Only the pages I wanted are shown.&#60;br /&#62;
But then i logged in as a premium user... and it's more or less the same!&#60;/p&#62;
&#60;p&#62;What could I be doing wrong?&#60;/p&#62;
&#60;p&#62;cx :) p
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Willis on "Customer Orders &#039;Download&#039; Video But Link Is &#039;Pay Per View&#039; Version"</title>
			<link>http://www.tipsandtricks-hq.com/forum/topic/customer-orders-download-video-but-link-is-pay-per-view-version#post-29007</link>
			<pubDate>Mon, 06 Feb 2012 23:45:21 +0000</pubDate>
			<dc:creator>Willis</dc:creator>
			<guid isPermaLink="false">29007@http://www.tipsandtricks-hq.com/forum/</guid>
			<description>&#60;p&#62;I have created a website (www.home-exercise-rehab.com) with options for customers to either purchase a 'download' of a video or opt for a 'pay per view' version. (I had to do a bit of a 'cheat' to get the 'Download' &#38;amp; 'PPV' options into the 'same' box, WP-eStore doesn't allow this yet - technically they are two boxes over lapping.) The download version has three variables (.mov/.flv/.mp4). Several customers have clicked the link in their 'purchased download' email and instead of downloading, it shows a one off 'pay per view' version?&#60;/p&#62;
&#60;p&#62;I have verified that the settings are correct and the 'download' option is ticked in the Digital Content Details, but what I have noticed is that it only seems to happen when the customer selects a variable version it is not the initial version given in the Digital Product URL. [what I mean by this, to clarify, is that technically we are offering three different file options which all have there own specific URL, but in the Products &#38;gt; Digital Content Details &#38;gt; Digital Product URL box you can only enter one URL - I believe this is the correct way of doing this] &#60;/p&#62;
&#60;p&#62;So if I have set this URL as the 'myfileurl.mov' but in the 'Variations' section offer MOV/FLV/MP4 options - if a customer selects to download the .mov version, the email and download link work fine but when they select to download the .flv version, the encrypted link opens a window and shows them a 'pay per view' version??? Even though the email actually says, click the 'DOWNLOAD' version.&#60;/p&#62;
&#60;p&#62;Am I doing something wrong in my set up? Or if this just an error on the 'link' file within the purchase email.&#60;/p&#62;
&#60;p&#62;Any idea or help would be much appreciated.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>pauley13 on "A somewhat different use for eMember - newbie question..."</title>
			<link>http://www.tipsandtricks-hq.com/forum/topic/a-somewhat-different-use-for-emember-newbie-question#post-29006</link>
			<pubDate>Mon, 06 Feb 2012 23:39:26 +0000</pubDate>
			<dc:creator>pauley13</dc:creator>
			<guid isPermaLink="false">29006@http://www.tipsandtricks-hq.com/forum/</guid>
			<description>&#60;p&#62;OK! I think I'm getting it to work :) :) :)&#60;br /&#62;
But I do have one more question, if I may:&#60;/p&#62;
&#60;p&#62;After I've blocked all the pages I wanted blocked as well as POSTS - I get two different things:&#60;/p&#62;
&#60;p&#62;1. When I click on a forbidden page (as an unregistered user), I get to see &#34;Please Login to view this Content (Not a member? Join Today)&#60;/p&#62;
&#60;p&#62;2. But when I click on a forbidden POST - I only see &#34;Content is restricted&#34;&#60;/p&#62;
&#60;p&#62;Is it possible for that message to be the same as in case of blocked pages?&#60;/p&#62;
&#60;p&#62;cheers :) p
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Peter on "How to make a Pay for online Video viewing site with access for 30 days"</title>
			<link>http://www.tipsandtricks-hq.com/forum/topic/how-to-make-a-pay-for-online-video-viewing-site-with-access-for-30-days/page/3#post-29005</link>
			<pubDate>Mon, 06 Feb 2012 23:14:38 +0000</pubDate>
			<dc:creator>Peter</dc:creator>
			<guid isPermaLink="false">29005@http://www.tipsandtricks-hq.com/forum/</guid>
			<description>&#60;p&#62;Hi,&#60;br /&#62;
My understanding is that you should do the following:&#60;/p&#62;
&#60;p&#62;1. What amount of hours do I set the link expiration for in the &#34;eStore &#38;gt; Settings &#38;gt; Digital Product Delivery Settings &#38;gt; Duration of Download Link&#34;?&#60;/p&#62;
&#60;p&#62;Set this to be greater than the presale period and the expected length of the broadcast. For you it looks like this should be at least 30 days?? (remember to convert this to hours)&#60;/p&#62;
&#60;p&#62;2. What does the shortcode for 7 day access look like?&#60;br /&#62;
[wp_eStore_APR expiry=N status=unexpired]&#60;/p&#62;
&#60;p&#62;7 days converts to 10080 minutes. Therefore shortcode will be:&#60;br /&#62;
[wp_eStore_APR expiry=10080 status=unexpired]&#60;/p&#62;
&#60;p&#62;3. What does the shortcode for 30 days look like?&#60;br /&#62;
[wp_eStore_APR expiry=N status=unexpired] &#60;/p&#62;
&#60;p&#62;Same deal as above.....30 days equals 43200 minutes&#60;/p&#62;
&#60;p&#62;[wp_eStore_APR expiry=43200 status=unexpired]
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Business Coach on "Installation error: Plugin could not be activated because it triggered an error"</title>
			<link>http://www.tipsandtricks-hq.com/forum/topic/installation-errorplugin-could-not-be-activated-because-it-triggered-a-fatal-err#post-29004</link>
			<pubDate>Mon, 06 Feb 2012 23:00:22 +0000</pubDate>
			<dc:creator>Business Coach</dc:creator>
			<guid isPermaLink="false">29004@http://www.tipsandtricks-hq.com/forum/</guid>
			<description>&#60;p&#62;Thank you for replying so quickly. I'll let you know how it goes.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>epimazzo on "User/Member content redirection"</title>
			<link>http://www.tipsandtricks-hq.com/forum/topic/usermember-content-redirection/page/2#post-29003</link>
			<pubDate>Mon, 06 Feb 2012 22:54:41 +0000</pubDate>
			<dc:creator>epimazzo</dc:creator>
			<guid isPermaLink="false">29003@http://www.tipsandtricks-hq.com/forum/</guid>
			<description>&#60;p&#62;Hey Peter! &#60;/p&#62;
&#60;p&#62;Thanks for the heads up! :-) &#60;/p&#62;
&#60;p&#62;Cheers
&#60;/p&#62;</description>
		</item>
		<item>
			<title>pauley13 on "A somewhat different use for eMember - newbie question..."</title>
			<link>http://www.tipsandtricks-hq.com/forum/topic/a-somewhat-different-use-for-emember-newbie-question#post-29002</link>
			<pubDate>Mon, 06 Feb 2012 22:53:02 +0000</pubDate>
			<dc:creator>pauley13</dc:creator>
			<guid isPermaLink="false">29002@http://www.tipsandtricks-hq.com/forum/</guid>
			<description>&#60;p&#62;I see - that's what I thought.&#60;br /&#62;
Well, I'll just have to work it out with this in mind then.&#60;br /&#62;
Thanks for your help!&#60;br /&#62;
:) paul
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Business Coach on "Installation error: Plugin could not be activated because it triggered an error"</title>
			<link>http://www.tipsandtricks-hq.com/forum/topic/installation-errorplugin-could-not-be-activated-because-it-triggered-a-fatal-err#post-29001</link>
			<pubDate>Mon, 06 Feb 2012 22:43:31 +0000</pubDate>
			<dc:creator>Business Coach</dc:creator>
			<guid isPermaLink="false">29001@http://www.tipsandtricks-hq.com/forum/</guid>
			<description>&#60;p&#62;Thank you for replying so quickly. I'll let you know how it goes.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Peter on "User/Member content redirection"</title>
			<link>http://www.tipsandtricks-hq.com/forum/topic/usermember-content-redirection/page/2#post-29000</link>
			<pubDate>Mon, 06 Feb 2012 22:32:00 +0000</pubDate>
			<dc:creator>Peter</dc:creator>
			<guid isPermaLink="false">29000@http://www.tipsandtricks-hq.com/forum/</guid>
			<description>&#60;p&#62;Hi,&#60;br /&#62;
Admin is currently on a flight for at least the next 10 hours. He will get back to you when he logs in after he lands.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>epimazzo on "User/Member content redirection"</title>
			<link>http://www.tipsandtricks-hq.com/forum/topic/usermember-content-redirection/page/2#post-28999</link>
			<pubDate>Mon, 06 Feb 2012 22:04:52 +0000</pubDate>
			<dc:creator>epimazzo</dc:creator>
			<guid isPermaLink="false">28999@http://www.tipsandtricks-hq.com/forum/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Any thoughts? Did you have access to the URL I sent? &#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Peter on "Customize CSS HTML Elements"</title>
			<link>http://www.tipsandtricks-hq.com/forum/topic/customize-css-html-elements#post-28998</link>
			<pubDate>Mon, 06 Feb 2012 21:55:43 +0000</pubDate>
			<dc:creator>Peter</dc:creator>
			<guid isPermaLink="false">28998@http://www.tipsandtricks-hq.com/forum/</guid>
			<description>&#60;p&#62;Hi Zain,&#60;br /&#62;
Might be easier if you can include a link to the page of the item you are trying to customise and what exactly you are trying to change?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Peter on "A somewhat different use for eMember - newbie question..."</title>
			<link>http://www.tipsandtricks-hq.com/forum/topic/a-somewhat-different-use-for-emember-newbie-question#post-28997</link>
			<pubDate>Mon, 06 Feb 2012 21:44:20 +0000</pubDate>
			<dc:creator>Peter</dc:creator>
			<guid isPermaLink="false">28997@http://www.tipsandtricks-hq.com/forum/</guid>
			<description>&#60;p&#62;Hi Paul,&#60;/p&#62;
&#60;p&#62;Looks like your sales page is a static html page (not part of WordPress) - is that right?&#60;/p&#62;
&#60;p&#62;Be aware that you won't be able to use shortcodes and buttons which are directly attributable to eMember functionality on external or static html pages. &#60;/p&#62;
&#60;p&#62;You will need to create your sales page with the paypal button within WordPress because any WordPress plugin will only work within the confines of your WP installation.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Ivy on "remove Wp Affiliate branding"</title>
			<link>http://www.tipsandtricks-hq.com/forum/topic/remove-wp-affiliate-branding#post-28996</link>
			<pubDate>Mon, 06 Feb 2012 21:32:53 +0000</pubDate>
			<dc:creator>Ivy</dc:creator>
			<guid isPermaLink="false">28996@http://www.tipsandtricks-hq.com/forum/</guid>
			<description>&#60;p&#62;&#60;a href=&#34;http://www.tipsandtricks-hq.com/forum/topic/removing-powered-by-wp-affiliate-platform&#34; rel=&#34;nofollow&#34;&#62;http://www.tipsandtricks-hq.com/forum/topic/removing-powered-by-wp-affiliate-platform&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Peter on "Best way to let only some users to be able to download a product freely"</title>
			<link>http://www.tipsandtricks-hq.com/forum/topic/best-way-to-let-only-some-users-to-be-able-to-download-a-product-freely#post-28995</link>
			<pubDate>Mon, 06 Feb 2012 21:32:39 +0000</pubDate>
			<dc:creator>Peter</dc:creator>
			<guid isPermaLink="false">28995@http://www.tipsandtricks-hq.com/forum/</guid>
			<description>&#60;p&#62;Hi,&#60;br /&#62;
In addition to Grant's suggestion, if you also have eMember you can create products which are restricted for members only - meaning that only logged in members can checkout.&#60;/p&#62;
&#60;p&#62;see admin's last two replies in this post:&#60;br /&#62;
&#60;a href=&#34;http://www.tipsandtricks-hq.com/forum/topic/full-store-page-but-restricting-add-to-cart-functionality-to-members-only&#34; rel=&#34;nofollow&#34;&#62;http://www.tipsandtricks-hq.com/forum/topic/full-store-page-but-restricting-add-to-cart-functionality-to-members-only&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>workhorse on "Affiliate wigget links"</title>
			<link>http://www.tipsandtricks-hq.com/forum/topic/affiliate-wigget-links#post-28994</link>
			<pubDate>Mon, 06 Feb 2012 21:06:58 +0000</pubDate>
			<dc:creator>workhorse</dc:creator>
			<guid isPermaLink="false">28994@http://www.tipsandtricks-hq.com/forum/</guid>
			<description>&#60;p&#62;I have the affiliate login url in my affiliate settings but the links to the affiliate signup and forgot password in the affiliate wigget has links to the defualt affiliate pages. I would like these to go to the affiliate sign up pages that is in the site proper. &#60;/p&#62;
&#60;p&#62;I would also like them to beusing the ssl layer. I set all my other affiliate login links to https. Is there anything else I should be doing to make sure that the affiliate program works in the ssl mode.&#60;/p&#62;
&#60;p&#62;Thank you.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;https://theultimateyogi.com/store/affiliate/&#34; rel=&#34;nofollow&#34;&#62;https://theultimateyogi.com/store/affiliate/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;the affiliate wigget is at the bottom of the side bar there.&#60;/p&#62;
&#60;p&#62;Jason
&#60;/p&#62;</description>
		</item>
		<item>
			<title>kidg21 on "MP4 Video Display shortcode"</title>
			<link>http://www.tipsandtricks-hq.com/forum/topic/mp4-video-display-shortcode#post-28993</link>
			<pubDate>Mon, 06 Feb 2012 20:51:59 +0000</pubDate>
			<dc:creator>kidg21</dc:creator>
			<guid isPermaLink="false">28993@http://www.tipsandtricks-hq.com/forum/</guid>
			<description>&#60;p&#62;BTW, I encounter the same issue through your demo page.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.tipsandtricks-hq.com/wp-affiliate-link-manager/tag/wp-lightbox-ultimate-demo&#34; rel=&#34;nofollow&#34;&#62;http://www.tipsandtricks-hq.com/wp-affiliate-link-manager/tag/wp-lightbox-ultimate-demo&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>kidg21 on "MP4 Video Display shortcode"</title>
			<link>http://www.tipsandtricks-hq.com/forum/topic/mp4-video-display-shortcode#post-28992</link>
			<pubDate>Mon, 06 Feb 2012 20:49:35 +0000</pubDate>
			<dc:creator>kidg21</dc:creator>
			<guid isPermaLink="false">28992@http://www.tipsandtricks-hq.com/forum/</guid>
			<description>&#60;p&#62;Still no change.&#60;/p&#62;
&#60;p&#62;I tested on a new Windows PC today to eliminate the caching variable.  This time I tried IE, FF, and Chrome with the Shockwave/Flash plugin disabled and encountered the same result that I got with the Kindle Fire.&#60;/p&#62;
&#60;p&#62;I've got my own code for embedding a SWF with a video object/HTML5 fallback.  I was hoping to avoid creating an additional page for the video, hence the lightbox angle.  If all else fails, I suppose I could test opening an iframe or inline HTML in the lightbox.&#60;/p&#62;
&#60;p&#62;I'm still hoping this method can get sorted out.  Thanks.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Christin on "&#34;Update Link&#34; button not visible"</title>
			<link>http://www.tipsandtricks-hq.com/forum/topic/update-link-button-not-visible#post-28991</link>
			<pubDate>Mon, 06 Feb 2012 20:37:51 +0000</pubDate>
			<dc:creator>Christin</dc:creator>
			<guid isPermaLink="false">28991@http://www.tipsandtricks-hq.com/forum/</guid>
			<description>&#60;br /&#62;</description>
		</item>
		<item>
			<title>Christin on "Links Not Appearing in My Posts"</title>
			<link>http://www.tipsandtricks-hq.com/forum/topic/links-not-appearing-in-my-posts#post-28990</link>
			<pubDate>Mon, 06 Feb 2012 20:16:17 +0000</pubDate>
			<dc:creator>Christin</dc:creator>
			<guid isPermaLink="false">28990@http://www.tipsandtricks-hq.com/forum/</guid>
			<description>&#60;p&#62;In addition to the other issue I have, I added some links through Internet Explorer since the &#34;Update Link&#34; button was visible through this browser, however, the links are not appearing in my posts. &#60;/p&#62;
&#60;p&#62;Are the keywords and links supposed to appear in previously posted posts or only in new ones? Thank you (again)!&#60;br /&#62;
Christin&#60;/p&#62;
&#60;p&#62;*Resolved my own issue* Thank you!!!
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>

