Tips and Tricks HQ Support

Support site for Tips and Tricks HQ premium products

  • Home
  • Contact Us
  • Documentation
  • Forum Home
    • Forum
    • Forum Search
    • Forum Login
    • Forum Registration
You are here: Home

admin

  • Profile
  • Topics Started
  • Replies Created
  • Engagements
  • Favorites

Forum Replies Created

Viewing 15 posts - 13,351 through 13,365 (of 14,824 total)
← 1 2 3 … 890 891 892 … 987 988 989 →
  • Author
    Posts
  • December 14, 2011 at 5:20 am in reply to: Subscribe Button does not link to PayPal only to subscribe button image #27977
    admin
    Keymaster

    I 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.

    December 14, 2011 at 5:12 am in reply to: Thank you page wording – how can I modify? #39589
    admin
    Keymaster

    You can change the Wording using this method:

    https://support.tipsandtricks-hq.com/forums/topic/how-to-customize-various-textmessages-displayed-by-the-plugin

    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).

    December 14, 2011 at 5:02 am in reply to: Registration Form Questions #39156
    admin
    Keymaster

    Adding 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 #39436
    admin
    Keymaster

    I 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 #30609
    admin
    Keymaster

    WP 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 #19987
    admin
    Keymaster

    Yeah 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

    December 13, 2011 at 7:36 am in reply to: Not Stamping but no errors #39354
    admin
    Keymaster

    When 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:

    http://www.tipsandtricks-hq.com/wp-pdf-stamper/minimum-requirements-for-the-wp-pdf-stamper-plugin-104

    December 13, 2011 at 7:17 am in reply to: Display Price on Collect Details page for ARB and Authorize.net #39434
    admin
    Keymaster

    I 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 #28782
    admin
    Keymaster

    Something 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 #16532
    admin
    Keymaster

    If 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>

    December 13, 2011 at 6:33 am in reply to: Error in manual stamping. – Error Code: 1 #39536
    admin
    Keymaster

    You 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.

    December 13, 2011 at 6:31 am in reply to: Turn off bad behaviour warnings #39567
    admin
    Keymaster

    Open 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? #39556
    admin
    Keymaster

    WP eStore only allows one auto discount option (auto discounts are troublesome so we only allow one).

    December 13, 2011 at 4:29 am in reply to: Saving subscribe button spikes CPU usage #39555
    admin
    Keymaster

    Okay 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:

    https://support.tipsandtricks-hq.com/update-request

    December 13, 2011 at 3:41 am in reply to: Emember not logging in wordpress users and emember users #30607
    admin
    Keymaster

    Can 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?

  • Author
    Posts
Viewing 15 posts - 13,351 through 13,365 (of 14,824 total)
← 1 2 3 … 890 891 892 … 987 988 989 →

Forum Related

  • Forum Home
  • Forum Search
  • Forum Registration
  • Forum Login

Support Related Forms

  • Contact Us
  • Customer Support
  • Request a Plugin Update
  • Request Fresh Download Links

Useful Links

  • Plugin Upgrade Instructions
  • WP eStore Documentation
  • WP eMember Documentation
  • WP Affiliate Platform Documentation
  • Tips and Tricks HQ Home Page
  • Our Projects

Quick Setup Video Tutorials

  • WP eStore Video Tutorial
  • WP eMember Video Tutorial
  • WP Affiliate Platform Video Tutorial
  • Lightbox Ultimate Video Tutorial

Our Other Plugins

  • WP Express Checkout
  • Stripe Payments Plugin
  • Simple Shopping Cart Plugin
  • Simple Download Monitor

Copyright © 2025 | Tips and Tricks HQ