Forum Replies Created
-
AuthorPosts
-
amin007Participant
Your table name is definitely wrong. You can’t access the eMember table name using the following since it not an object of the WPDB class.
$wpdb->wp_eMember_members_tbl
Try the following to get a feeling for how it works then you should be able to do more specific things:
global $wpdb;
$members_table_name = $wpdb->prefix . "wp_eMember_members_tbl";
$resultset = $wpdb->get_results("SELECT * FROM $members_table_name", OBJECT);
print_r($resultset);August 7, 2011 at 11:31 pm in reply to: Terms and Conditions tweak question (open t&c in the same window) #35263amin007ParticipantThat is strange… please post a link to the page where you have this.
Also, please get a fresh build of eStore from here to eliminate any other possibilities:
amin007ParticipantThe integration does not have the capability to update the MailChimp list. We are waiting for AWeber to fully release their robust API so background operations on list can be done via an API. From a product point of view we need to give the same set of features for all the supported autoresponders (AWeber, MailChimp and GetResponse).
amin007ParticipantThis is something the gallery plugin author will have to address. We cannot do much from our eStore plugin.
amin007Participant@gken8, When you say “simple PayPal button” do you mean a paypal button without eStore? I get the feeling that you are using WP eStore since you are trying to go to the following URL:
http://www.yoursite.com/wp-content/plugins/wp-cart-for-digital-products/paypal.php
Which payment integration documentation have you following from the documentation site?
August 7, 2011 at 2:21 am in reply to: How to Easily Export Member Details with Membership Level and State #35271amin007ParticipantThank you for sharing this method of member details exporting technique. The tutorial on exporting member details using PHPMyAdmin can be found here:
August 7, 2011 at 2:12 am in reply to: Terms and Conditions tweak question (open t&c in the same window) #35260amin007Participantamin007ParticipantThe fancy 7 and 8 display options are for MP3 only. If you are selling a PDF file then use one of the other fancy display options?
amin007ParticipantResent it (Please check the junk mail folder too).
amin007ParticipantWe only mention the last STABLE build on our official support site (this may not be the latest build). You can get an update anytime from here:
amin007ParticipantThe syntax is wrong. The table name is a string field. Also you are getting one row from many rows in the database where is your “condition” so it knows which row to pick based on that condition?
amin007ParticipantYour hosting provider should be able to look at this and help you but essentially you should never see things like the following in the URL when browsing live sites:
http://0338e98.netsolhost.com/blog1/....
Ask your hosting provider why the following address doesn’t resolve the domain name and shows the doming name there?
http://0338e98.netsolhost.com/blog1/?p=328
amin007ParticipantYou need to fix up the PayPal side of things first so that payments get processed instantly as it should. This post should give you more clues as to what you should be looking at in your PayPal profile:
https://support.tipsandtricks-hq.com/forums/topic/reasons-for-a-pending-paypal-payment#post-4174
amin007ParticipantCheck the following settings option:
WP Affiliate Settings -> Send Commission Notification to Affiliates
amin007ParticipantUpdated the library.
-
AuthorPosts