Forum Replies Created
-
AuthorPosts
-
amin007
ParticipantHi Leonardi, I have added an option (a new tab in the “Menu Affiliates” menu) so you can get an email list of all your affiliates which can be used to send email. I do not want to add the whole emailing functionality in the plugin at this stage as it makes the plugin heavy without added benefit. There are too many email management plugins and softwares out there already.
I will send you an updated version of the plugin so you get this new feature.
amin007
ParticipantFind the following bit of code in the “eStore_payment_submission.php” file:
echo '<div id="success">';
echo "".ESTORE_ORDER_COMPLETE;
echo 'Please click here to return to the Store.';
echo "</div>";
exit;Once you find it replace it with the following:
$return = get_option('cart_return_from_paypal_url');
$redirection_parameter = 'Location: '.$return;
header($redirection_parameter);
exit;This will automatically redirect the customer to the “Return URL” that you have specified in the settings menu of the plugin after the form submission.
amin007
ParticipantHi Pam, The site looks cool.. good job. Did you use NextGen gallery to create the product display that you have on the home page?
amin007
ParticipantIn your paypal profile you have encrypted payments turned on. Please turn it off and it will work fine. Here is how you can turn it off:
1. Log into your PayPal account.
2. Click the ‘Profile’ subtab
3. Click on the ‘Website Payment Preferences’ link in the ‘Selling Preferences’ column
4. In the section titled ‘Encrypted Website Payments’ select ‘Off’
5. Save it.
amin007
ParticipantOkay in the “eStore_includes.php” file search for the following line:
$('.message').html("<h4>Email sent!</h4>")
it’s JQuery code but very simple… you can find the email address in a variable in this function so just append that to this message.
amin007
ParticipantHi Paul, the issue is that you used a negative value in the variation. The plugin do not handle this.
Creating two different products are fine but you can also do something like the following:
Base Price: $25
License Type|Professional or multiple computers:10|Personal – One Computer
This way by default the price will be $25+$10 = $35 for professional and for personal it will the base prices with is $25.
amin007
ParticipantYour site seems to have a lot of HTML violation and CSS errors. Not all violations are fatal but some of them can throw other property on the page off.
Just for a quick test… Can you please switch your theme to the wordpress default theme and check that page to see if you see any difference?
amin007
ParticipantYeah, you can add a new menu item that points to a new page. You will need to modify the “header.php” file in the “affiliates” directory to include this new nav menu.
amin007
ParticipantPlease download the version 2.8.1 from the following page:
You can use the following shortcode that will always display the cart (even if it’s empty).
[always_show_wp_shopping_cart]
amin007
ParticipantHi Jeremiah, This is not possible to do without code modification. If you are interested in tweaking the code yourself then I can give you some pointers.
amin007
ParticipantI have sent you a fresh copy of the plugin. Please use it without any modification to the plugin then let me know what issue you see and we will go from there.
amin007
ParticipantThere is no built in option to integrate WP eStore with iContact (There are too many autoresponder services out there and they all have slightly different integration methods, so it is impossible from my part to include all of them in the product).
If you can point me to their API/integration documentation then I should be able to give you some pointers.
amin007
ParticipantLooks like the cart is getting empty before it hit’s the reset somehow. Can you please upload the latest version of the plugin from the following URL:
http://www.tipsandtricks-hq.com/wordpress-simple-paypal-shopping-cart-plugin-768
amin007
ParticipantHi Dona, most autoresponder services do not have segmented list so the integration is based on a per list basis (to keep consistency among all the autoresponders).
amin007
ParticipantI will send you an updated version of the plugin that will work when you use the following tags in the “Manual Checkout” customer direction field:
{first_name}, {last_name}, {payer_email}
-
AuthorPosts