Forum Replies Created
-
AuthorPosts
-
amin007
ParticipantSent you an email.
amin007
ParticipantWhat happens if you copy the URL from the email and paste it into the IE8 browser directly (do not click on the link)? Does it download fine then?
amin007
ParticipantThis document should help you (check the ‘How to make the “instruction” input box bigger’ section on that page):
http://www.tipsandtricks-hq.com/ecommerce/wordpress-estore-miscellaneous-tweaks-215
amin007
ParticipantLook for the following line of code in the function that I suggested to modify (show_product_fancy_style2):
$output .= get_thumbnail_image_section_code($ret_product);Once you find the above line change it to the following:
if(!empty($ret_product->thumbnail_url))
{
$output .= get_thumbnail_image_section_code($ret_product);
}This will make it so the thumbnail section is only displayed if there is a “Thumbnail images” specified for the product.
amin007
ParticipantThat email gets sent out from eStore whenever a product is purchased. If it happens to be a membership product then there will be an additional email that will get sent out to your customer requesting them to complete the registration. Obviously this 2nd email is not going out in your case.
You most likely haven’t integrated eStore with eMember correctly which is why this 2nd email is not going out. Please check the 3rd video tutorial from this page to integration eStore and eMember properly:
June 6, 2011 at 12:08 am in reply to: How to add date stamp to squeeze page to use MailChimp Autoresponder #33086amin007
ParticipantYou can use the “Signup Date Field Name” field in the mailchimp settings section to specify your date field name (there is a link to a documentation that will explain more on this).
If you do not specify anything in that field then eStore will automatically use the current date when signing up the user to your list. It sends the date in the “yyyy-mm-dd” format.
June 6, 2011 at 12:02 am in reply to: Is there a way to allow customers to make custom bundles using digital downloads #33092amin007
ParticipantIsn’t that the purpose of the shopping cart? You make each item as a product then your customers can choose which items they want to buy and they can add it to the cart then checkout in one go. What am I missing?
June 5, 2011 at 2:13 am in reply to: Alternative email address instead of PayPal address for Autoresponder #33084amin007
ParticipantThere is no built in option in eStore for what you are after so you will need a custom job. If you are a developer then yes you can modify the code to do this. If you are not a coder then we can do a custom development for you (please use the contact form to get a quote).
An alternative option might be to just separate the mailchimp integration slightly. Rather then automatically signing up your customers after Payment with their PayPal email address you can place a squeeze form (just for mailchimp signup purpose) on the “Thank You” page. So after the purchase when the customer land on the “Thank You” page you can instruct them to use the squeeze form with their business email address and it will sign them up at that stage.
amin007
ParticipantWhich NextGen gallery integration are you talking about? Please post a link to the integration documentation that you are following.
amin007
ParticipantNobody in the world will be able to give you any meaningful answer if you don’t reply to a specific question. You keep saying “they have been viewed”… Can you please elaborate on that? What type of content are you selling? Are these downloadable zip files?
“my statistics show they have been viewed” – What statistic? Where are you seeing this? What are you using for this statistic that you speak of?
amin007
ParticipantThose shortcodes should definitely work even when you use them in a nested configuration. I just tested them on my test site. Just to eliminate any other possibility… can you please download a fresh build of the two plugins from here and try it out?
amin007
ParticipantPlease get another build of eMember from here now and then check it out after the update please:
https://support.tipsandtricks-hq.com/update-request
Let me know how that goes.
amin007
ParticipantIf you are just using the API to stamp the PDF then that API won’t send the email but if you using the plain paypal button integration explained here then the PDF Stamper will send the email too (there are different APIs for different use):
June 5, 2011 at 12:34 am in reply to: Integrating WP Affiliate with Recurring Paypal Subscription/Membership #33069amin007
ParticipantThe following line of code indicates that the developer left a hook for affiliate plugin (which is great):
// Added for affiliate system link
do_action('membership_payment_processed', $user_id, $sub_id, $amount, $currency, $_POST['txn_id']);We could potentially use this hook to do an integration with this plugin without modifying the core code of the membership plugin. Can you please tell me which membership plugin you are using so I can read some documentation and verify the intended use of this hook?
amin007
ParticipantYou lost me there… what do you mean by “some of my download files which are for sale are showing up as viewed”?
Only eStore knows the location of your downloadable files and it will let someone download the file after a payment. spiders do not know the location of your downloadable files and cannot index it.
People often misunderstand how the whole thing works and get scared unnecessarily. This post might help you understand more:
https://support.tipsandtricks-hq.com/forums/topic/download-directory-protection
-
AuthorPosts