Forum Replies Created
-
AuthorPosts
-
December 14, 2011 at 5:20 am in reply to: Subscribe Button does not link to PayPal only to subscribe button image #27977
admin
KeymasterI doubt your customers will be looking at this forum post but I have removed the links of your website from every post here so there should be no mention of your site on this thread anymore.
admin
KeymasterYou can change the Wording using this method:
If you don’t like how the Thank you page shortcode displays items then don’t display the “Thank You” page links (its an optional step). Your customers will get an email after the purchase with the links regardless (this email is customizable and you can put the details that you want).
admin
KeymasterAdding custom code on a live site is not recommended (consider installing another copy of WordPress in a sub-directory for this kind of testing). When testing you could do something like the following to test and see what value is being passed and what part of the code is getting executed:
// Add For Gravity Forms Post Submission
function gf_register_add_ons($user_id, $config, $entry, $user_pass)
{
//Lets see which form is being submitted
echo "<br />The form being submitted is: ".$form['id'];
exit;
.....
.....
.....This will show the value of the
$form['id']
variable then exit out. It can help you troubleshoot the coding error quickly (if any).December 14, 2011 at 4:43 am in reply to: Display Price on Collect Details page for ARB and Authorize.net #39436admin
KeymasterI see the difference now… you are using “Subscription” button on the following page:
http://www.lumanetllc.com/shop/
Whereas on the following page you are using “Add to Cart” buttons:
http://www.lumanetllc.com/shop/test-product
Subscription products does not get added to the cart (recurring payments are different than the standard one time add to cart purchase so they are processed via a separate API). So when you are clicking the subscription button it is not adding to the cart it is simply taking the customer to the payment page for payment.
We can add a function to this plugin that will show the subscription details on that payment page
December 14, 2011 at 4:12 am in reply to: Emember not logging in wordpress users and emember users #30609admin
KeymasterWP eMember doesn’t modify any capability. When it creates the WordPress user, it simply assigns the “Role” you specified for that particular membership level. I am pretty sure that role editor plugin is applying some filter to change the custom capability after the user is logged in via WordPress. I will send you an email to get site access so I can check it out more.
December 14, 2011 at 3:58 am in reply to: Downloaded file size is 0 (Zero) byte or 404 error or Other file download error #19987admin
KeymasterYeah thats very strange… lets take a look at the .htaccess file with W3 Total Cache active but all the individual caching inactive. Can you please post the content of the .htaccess file (from the site root) for the following two conditions?
– W3 Total Cache inactive (when the downloads work fine)
– With W3 Total Cache active but all caching turned off
admin
KeymasterWhen I enter the URL of the PDF file in the browser’s address bar adobe shows an error and the file doesn’t open (this would stop PDF Stamper from being able to open the file). I have sent you a screenshot of the error in the email so you can see it. Please make sure your PDF file is created properly with correct formatting. More details on this here:
December 13, 2011 at 7:17 am in reply to: Display Price on Collect Details page for ARB and Authorize.net #39434admin
KeymasterI see.. what version of the payment gateway bundle are you using?
December 13, 2011 at 7:15 am in reply to: Shopping cart empties when a new product added OR move to another page #28782admin
KeymasterSomething on your site is definitely resetting (clearing out) the session data on page load.
Do the PHP Session Test mentioned in the following post (check under the “How To Find Out If You Are Having a PHP Session Issue” section):
https://support.tipsandtricks-hq.com/forums/topic/php-session-not-working-correctly
You will see that as soon as you browse away from the page (meaning you are loading the site again) the PHP session values gets destroyed.
December 13, 2011 at 7:02 am in reply to: Explanation on the "Use WordPress Mailing System" checkbox option #16532admin
KeymasterIf you have the email address filled in using the following format then you don’t need the change from email address plugin:
Name <emailaddress@gmail.com>
admin
KeymasterYou should be able to have multiple WordPress installs without problem. There is most likely an issue with the path conversion on this server so the PDF stamper is getting confused. I have sent you an email to get site access so I can investigate what is happening.
admin
KeymasterOpen the “wp_eStore1.php” file from eStore and look for the following block of code:
if(function_exists('bb2_install'))
{
$msg .= '<br />You have the Bad Behavior plugin active! This plugin is known to block PayPal's payment notification (IPN). Please see <a href="https://support.tipsandtricks-hq.com/forums/topic/list-of-plugins-that-dont-play-nice-conflicting-plugins" target="_blank">this post</a> for more details.<br />';
}Once you find it delete that block of code and that will turn off the warning display from eStore.
Then find the following block of code from “wp_eMember1.php” file for eMember:
if(function_exists('bb2_install'))
{
$msg .= '<div class="updated fade">You have the Bad Behavior plugin active! This plugin is known to block PayPal's payment notification (IPN). Please see <a href="https://support.tipsandtricks-hq.com/forums/topic/list-of-plugins-that-dont-play-nice-conflicting-plugins" target="_blank">this post</a> for more details.</div>';
}Once you find it delete that code block and it will turn off the bad behavior warning from eMember.
December 13, 2011 at 4:30 am in reply to: Automatic Discounts – Can you only set up one automatic discount? #39556admin
KeymasterWP eStore only allows one auto discount option (auto discounts are troublesome so we only allow one).
admin
KeymasterOkay it looks like the server is not setting the “https” PORT number for the “https” image url (most likely because it is an external image). I have added a condition in the plugin to force setting the port which should sort this out. Please download a new build of the plugin from here and check it out:
December 13, 2011 at 3:41 am in reply to: Emember not logging in wordpress users and emember users #30607admin
KeymasterCan you please tell me which “User Role Editor plugin” you are using. Since you are using custom role eMember is most likely getting confused somewhere. By “Capabilities” you mean the user role right?
-
AuthorPosts