Forum Replies Created
-
AuthorPosts
-
amin007Participant
The thumbnail images are never going to be perfect when your image proportions are way out. The smart thumbnail option will try to fix it as much as it can but there is a limit. (If we are trying to fit a size 18 into a size 10 dress then its just not going to happen
amin007ParticipantIf everything else is working fine then I think the database column for the coupon code field in the customer database table might be out of sync. Upgrading the plugin with a fresh build should help. Please get a fresh build of the plugin from here and give it a go:
amin007ParticipantThis has nothing to do with WP3.2
It simply means the corresponding eMember user account for the “Admin” account doesn’t have the access to view the content of the comments in question. Check your “Manage Content Protection” settings and make sure that this membership level (the level this admin user belongs to in eMember) has access to those comments. Have you recently change the settings of the “Protect Comments Separately” field?
amin007ParticipantIf a product is already in the cart it will just increase the quantity by one. This is not an error.
amin007ParticipantYou can use a email field in the contact form and match it up with the sales notification. Alternatively you can ask for the file name or some other reference number for matching purpose.
amin007ParticipantYeah, we should have something ready in a few weeks.
amin007ParticipantIt seems like you want the following:
– Non-members will only be given the opportunity to signup as a free member first (you already have this figured out).
– After they become a member and have seen the videos you to up-sell them to the premium membership.
When your visitors are logged in as a free member they don’t see the usual “join us” or “login” message anymore. When a member stumbles upon some protected content that his membership level doesn’t have access to, he is shown some “Content is protected” type message.
So in your case all you need to do is customize the “Content is protected” messages (displayed to free members when they try to access paid content) to include a link to your hidden up-sell page. This page explains how you can customize the message that gets displayed to the users:
When you customize those messages you can add HTML Links there too. For exmaple, the following:
define("EMEMBER_CONTENT_RESTRICTED","Content is restricted.");
can be changed to the following:
define("EMEMBER_CONTENT_RESTRICTED","Content is restricted. <a href="www.example.com/your-hidden-payment-page">Please buy the premium membership</a>");
There are a few different protected message that gets displayed based on various scenario. You can modify them all.
July 18, 2011 at 10:57 pm in reply to: New Affiliate Platform Customer. Link Expired. Now What? #34409amin007ParticipantYou can download a copy of the products you purchase from here:
amin007ParticipantYou are still using the old version of eStore so you didn’t update the plugin correctly. If you get a fresh build of eStore from here and update it using one of the update documentations here the eStore version should be v4.6.5 or above.
Please update your eStore correctly.
amin007ParticipantUpdate from user:
We did find one solution that seems to fix this and that is to disable the DataBase
Cache in the W3TC, Now with this disabled we can log out from eMember.amin007ParticipantYou want to send all your visitors to the “Join Us” page then they can decide which path to go for (free or one of the paid options). This page will explain more:
The basic idea for sending everyone to a generic “Join Us” page is because when a user is anonymous the software doesn’t know their intention (if they want to be a free member or a paid member).
amin007ParticipantNo, eStore doesn’t have any option like that.
amin007ParticipantI am not sure what you are going on about… the apache stuff is to fix the server where people are mixing up the “www” and “non-www” URLs which is treated as two different sites. How is this related to appending a “/” at the end of a URL??
When you create a link or a banner have complete control over what target URL you specify. If you need to specify a URL with a “/” at the end then simply use a URL with a forward slash when you create the link or in your default landing page URL settings.
amin007ParticipantMost admins never use creatives. It is likely that you will only ever use Text and banner ads. So don’t worry about the creatives section.
Creatives can be articles full of affiliate links and stuff or a video embed code so your affiliates just copy that and post it on their site without having to write everything up themselves. In some businesses this can be helpful.
amin007ParticipantOpen the “eStore_misc_functions.php” file and look for the following line of code:
$output = get_button_code_for_element($ret_product,true,'',$buttonImage);
Once you find it please change it with the following:
$output = get_button_code_for_element($ret_product,false,'',$buttonImage);
The 2nd argument (false) tells it not to use break line when it creates the button.
-
AuthorPosts