Forum Replies Created
-
AuthorPosts
-
March 23, 2010 at 7:22 am in reply to: Question about handling shipping costs with order through paypal #17157
amin007
ParticipantThe Simple shopping cart doesn’t let you specify weight for products.
March 22, 2010 at 10:59 pm in reply to: Clicking back button from PayPal site adds additional item to cart #19041amin007
ParticipantIt’s not a glitch… it’s a standard browser feature to repeat the last action when you refresh or go back. Now the last action you performed was a HTTP POST (add to cart button) so it repeats that. It will give you a warning when you do this though. You will have to click “yes” to that.
March 22, 2010 at 10:55 pm in reply to: Clicking back button from PayPal site adds additional item to cart #19040amin007
ParticipantIt’s not a glitch… it’s a standard browser feature to repeat the last action when you refresh or go back. Now the last action you performed was a HTTP POST (add to cart button) so it repeats that. It will give you a warning when you do this though. You will have to click “yes” to that.
March 21, 2010 at 10:25 pm in reply to: Internal Server Error with Paypal Checkout (shopping cart checkout shows error) #19017amin007
ParticipantFile permissions are correct.
What is the PHP version on your server? Can you please post a link to the page where you have the “Add to cart” buttons so I can have a look at it?
amin007
ParticipantThank you for filling out the questionnaires
(it makes troubleshooting easy for me)
I got a quick question for you. Is the target/landing page (socialmediabythesea.com) a WordPress page or post?
Sometimes people try to link to plain HTML page without realizing that WordPress plugins do not work on plain HTML page (for example, try to use the “Akismet” plugin to block spam on a non wordpress post or page).
If this is the problem then all you need to do is make your landing page in WordPress. WordPress allows you to make landing pages through the use of “Custom Page Templates”. This article should explain how “Custom Page Templates” can be created and used:
amin007
ParticipantUnder the “General settings” of the WP eMember plugin you should see the following field:
“Login Restriction by IP Address:”
If you can’t see that field then there is a possibility that the version is not correct. Please make sure the WP eMember version is 5.0.7 or higher.
amin007
ParticipantWP eStore doesn’t allow you to do this but looks like a good feature… I will add it in.
March 21, 2010 at 1:09 am in reply to: Improving Functionality of MailChimp / WP eStore integration (Amin) #18999amin007
ParticipantYeah, if you want to sign up customers to different list on a per product basis then you need to specify the list name in the “Autoresponder” Section of the product and it will be accessible in the loop that I pointed to you earlier.
March 21, 2010 at 1:01 am in reply to: Make some text or an image appear when an item is added? #18993amin007
ParticipantOkay that was my mistake.. I thought you were talking about the WP eStore plugin.
March 20, 2010 at 8:04 am in reply to: Improving Functionality of MailChimp / WP eStore integration (Amin) #18997amin007
Participant“using the API Key or using the login details.” – I meant you can uncomment the API part and use the API key path but at the moment eStore uses the “MailChimp” Login details to get hold of the API handle. This is why in the eStore’s settings menu you had to enter your “MailChimp” login details not API Key.
Modify around line 483 of “paypal.php” to add the product details to mailchimp. you can get the product name and id using the following:
$item_number = $current_cart_item['item_number'];
$item_name = $current_cart_item['item_name'];March 20, 2010 at 12:56 am in reply to: Improving Functionality of MailChimp / WP eStore integration (Amin) #18994amin007
Participant“why was this code commented out in the current version? Isn’t a MailChimp API key required to make the API Calls?”
You need a handle to the MailChimp API to make API calls. WP eStore gives two ways to do this… using the API Key or using the login details.
I have commented out the API Key option as some customers with older version of PHP was having issues with this option and it was becoming a support nightmare for me.
With that said, you will see the following line in “paypal.php” file:
$api = eStore_get_chimp_api();
The $api is your handle here.. just know that the “eStore_get_chimp_api” function will create this handle for you and you can start making api calls here.
March 20, 2010 at 12:40 am in reply to: Make some text or an image appear when an item is added? #18991amin007
ParticipantHi Jimmy, you can use the “Compact Cart” option in the settings menu which displays a compact version of the shopping cart in the widget. Let me know if this helps.
amin007
ParticipantThe problem with this is that when creating the database table you need to specify the column names that you want to create. How can we specify the additional column names when we don’t know what they are?
We are trying to see if there is any way to accommodate this. As soon as we can find a way we will add this option.
March 20, 2010 at 12:33 am in reply to: Phantom affiliate created, real affiliate clicks going to phantom affiliate #18988amin007
ParticipantHi Barbara, It is not possible for real affiliate clicks to be credited to phantom affiliates.
I am pretty sure you made typo when creating the affiliate link. check all your links to make sure you didn’t miss out the “t” in the link.
You can also search for an affiliate with the name “WillHol” in the admin panel and see if it exists. If it doesn’t then it proves the theory.
Remember, you don’t have to create an affiliate account to be able to refer traffic. The plugin will track the clicks whenever it sees a link with “ap_id” appended to it. This allows people using Google Adwords to measure sales conversion without actually creating affiliate accounts for each campaign.
amin007
ParticipantYes, you can use the DBAccess:: insert as many times as you want.
-
AuthorPosts