Forum Replies Created
-
AuthorPosts
-
February 8, 2012 at 10:21 pm in reply to: Copy of customer product download email in notification email sent out by estore #41763PeterMember
Hi,
In your eStore configuration settings there is a section called “Email Settings”. In this section there is a checkbox called “Append Buyer Email and Payment Parameters to Admin Email” which you can enable to receive a copy of the buyer’s email.
PeterMemberHi,
Your version is old.
Just follow the instructions here to get the latest version:
https://support.tipsandtricks-hq.com/forums/topic/re-install-or-load-a-fresh-build-of-the-plugins
February 7, 2012 at 7:24 am in reply to: How to change the location of the member fill in the blank data entry fields? #41632PeterMemberHi,
I checked out your site and your theme is definitely butchering the display.
I might have a quick and dirty hack for you.
Add the following code at the end of the affiliate_platform_style.css file:
input,input[type="text"],input[type="button"]{
display: inline-block;
}
Be sure to take a copy of the original in case you need to revert the changes/
February 7, 2012 at 5:30 am in reply to: A somewhat different use for eMember – newbie question… #41666PeterMemberHi Paul,
See my answers and questions inline:
====
When I click on a forbidden page (as an unregistered user), I get to see “Please Login to view this Content (Not a member? Join Today)
But when I click on a forbidden POST – I only see “Content is restricted”
Is it possible for that message to be the same as in case of blocked pages?
====
Seems like you are protecting the post using a shortcode but you’re protecting the page using the “eMember Protection Options” flags in the page editor of wordpress.
Is that right?
I suspect this is why you are seeing the different messages.
If you’re using the shortcode you can suppress the restricted message such as “This content is for members only” by specifying in the shortcode as follows:
[emember_protected do_not_show_restricted_msg=1]
your protected content goes here
[/emember_protected]
PeterMemberHi Jason,
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.
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.
However if you’re desperate and really need this then here is a hack I’ve just come up with:
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.
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.
This is the ORIGINAL code:
function aff_login_widget()
{
if(aff_main_check_security())
{
$output = show_aff_widget_logged_in_details();
}
else
{
$output = show_aff_widget_login_form();
}
return $output;
}
Modify the above so it looks like the following:
function aff_login_widget()
{
$affiliate_login_url = get_option('wp_aff_login_url');
if(aff_main_check_security())
{
$output = show_aff_widget_logged_in_details($affiliate_login_url);
}
else
{
$output = show_aff_widget_login_form($affiliate_login_url);
}
return $output;
}
Regarding the SSL question, you might have to wait till Admin sees this post because he is the expert in that subject.
PeterMemberYes that’s right.
PeterMemberHi,
Regarding your question:
“why buy now link redirect to home page?”
Have you double-checked that your product ID has been correctly entered in the link?
ie, ?wp_eStore_buy_now=X
where X is a valid product ID which you can get from your eStore product configuration.
Can you also please send a link to the page which contains your “buy now” text link?
February 7, 2012 at 1:41 am in reply to: Customer Orders 'Download' Video But Link Is 'Pay Per View' Version #41699PeterMemberHi again,
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:
“Download MOV File”
“Download FLV File”
etc
Just a suggestion….this might make it more seamless for your customers.
February 7, 2012 at 1:37 am in reply to: Customer Orders 'Download' Video But Link Is 'Pay Per View' Version #41698PeterMemberHi,
If I understand you correctly you’re trying to offer PPV and downloadable simultaneously. Is that right?
If so, this isn’t supported and you will have to create separate products as per admin’s advice in this post:
February 7, 2012 at 1:28 am in reply to: Discount automatically apply to differents member level #25453PeterMemberHi,
Yep we get your point and I’m certain admin has this in consideration.
It’s just that sometimes there are higher priority features which need to be implemented first
February 6, 2012 at 11:14 pm in reply to: How to make a Pay for online Video viewing site with access for 30 days #18128PeterMemberHi,
My understanding is that you should do the following:
1. What amount of hours do I set the link expiration for in the “eStore > Settings > Digital Product Delivery Settings > Duration of Download Link”?
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)
2. What does the shortcode for 7 day access look like?
[wp_eStore_APR expiry=N status=unexpired]
7 days converts to 10080 minutes. Therefore shortcode will be:
[wp_eStore_APR expiry=10080 status=unexpired]
3. What does the shortcode for 30 days look like?
[wp_eStore_APR expiry=N status=unexpired]
Same deal as above…..30 days equals 43200 minutes
[wp_eStore_APR expiry=43200 status=unexpired]
PeterMemberHi,
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.
PeterMemberHi Zain,
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?
February 6, 2012 at 9:44 pm in reply to: A somewhat different use for eMember – newbie question… #41661PeterMemberHi Paul,
Looks like your sales page is a static html page (not part of WordPress) – is that right?
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.
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.
February 6, 2012 at 9:32 pm in reply to: Best way to let only some users to be able to download a product freely #41687PeterMemberHi,
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.
see admin’s last two replies in this post:
-
AuthorPosts