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,966 through 13,980 (of 14,824 total)
← 1 2 3 … 931 932 933 … 987 988 989 →
  • Author
    Posts
  • October 20, 2011 at 4:05 am in reply to: Protect URL to Presentation #37730
    admin
    Keymaster

    eMember can’t really protect content outside of WordPress environment since it is a WordPress plugin. Can you embed these presentations inside a WordPress post or page rather than keeping them as stand alone HTML page? Since it is an adobe product chances are that they have a plugin to embed the presentation in a page created by the popular content management systems (WordPress, Joomla, Drupal etc.).

    October 20, 2011 at 4:00 am in reply to: How To Customize The Affiliate Signup Page #37508
    admin
    Keymaster

    Look for the following field in the settings menu of the affiliate plugin:

    Make PayPal Email Address a Required Field

    If you can’t see that field then please update the plugin to a more recent build. Please do the following to update:

    1. Deactivate and delete the currently installed version of the plugin(s).

    2. Download a fresh build of the plugin(s) from here:

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

    3. Upload and activate this version of the plugin(s). The specific update instruction for the plugin in question can be accessed from here:

    https://support.tipsandtricks-hq.com/plugin-installation-and-upgrade-instructions

    October 20, 2011 at 3:44 am in reply to: customize manual page #21017
    admin
    Keymaster

    We also added an option so that you can embed the manual checkout form on a WordPress page. To use this option do the following:

    1. Create a WordPress page and use the [wp_eStore_on_page_manual_gateway_form] shortcode on that page.

    2. Go to the “Payment Gateway Settings” screen of eStore and Specify the URL of the page that you just created in step 1 in the “Embed Manual Checkout Form on a WordPress Page” field (you can find this field in the manual checkout section).

    Now, eStore will send your customers to this page when they choose to pay using manual method.

    October 20, 2011 at 3:44 am in reply to: Customize Manual Gateway form #34108
    admin
    Keymaster

    We just added an option so that you can embed the manual checkout form on a WordPress page. To use this option do the following:

    1. Create a WordPress page and use the [wp_eStore_on_page_manual_gateway_form] shortcode on that page.

    2. Go to the “Payment Gateway Settings” screen of eStore and Specify the URL of the page that you just created in step 1 in the “Embed Manual Checkout Form on a WordPress Page” field (you can find this field in the manual checkout section).

    Now, eStore will send your customers to this page when they choose to pay using manual method.

    October 20, 2011 at 3:41 am in reply to: Manual checkout design #37716
    admin
    Keymaster

    We just added an option for this today. Please do the following:

    Please do the following:

    1. Deactivate and delete the currently installed version of the plugin(s).

    2. Download a fresh build of the plugin(s) from here:

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

    3. Upload and activate this version of the plugin(s). The specific update instruction for the plugin in question can be accessed from here:

    https://support.tipsandtricks-hq.com/plugin-installation-and-upgrade-instructions

    After the update do the following:

    1. Create a WordPress page and use the [wp_eStore_on_page_manual_gateway_form] shortcode on that page.

    2. Go to the “Payment Gateway Settings” screen of eStore and Specify the URL of the page that you just created in step 1 in the “Embed Manual Checkout Form on a WordPress Page” field (you can find this field in the manual checkout section).

    Now, eStore will send your customers to this page when they choose to pay using manual method.

    October 20, 2011 at 12:33 am in reply to: Product Links not shown on Thank You Page #37718
    admin
    Keymaster

    PDT and Auto return must be enabled correctly so that the plugin can verify the payment data dynamically and offer the links on the “Thank you” page.

    There is a video tutorial on this page that can be helpful to see if you make a mistake:

    http://www.tipsandtricks-hq.com/ecommerce/wp-estore-instant-digital-product-delivery-499

    – A lot of users make mistake when they enter the PDT identity token. Double checking this value is also a good idea.

    – Is the PHP session working correctly on your site? Please post a link to your products page

    – Did you notice any error on the “Thank You” page when you got sent to that page after the payment?

    October 20, 2011 at 12:25 am in reply to: Login page getting called for each protected page #37700
    admin
    Keymaster

    "Now it's giving me an error when I try to add a member" – that indicates a problem in the plugin behavior. Please do the following (Just to make sure that the issue is not resulting from a custom modification or unwanted code changes):

    1. Deactivate and delete the currently installed version of the plugin(s).

    2. Download a fresh build of the plugin(s) from here:

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

    3. Upload and activate this version of the plugin(s). The specific update instruction for the plugin in question can be accessed from here:

    https://support.tipsandtricks-hq.com/plugin-installation-and-upgrade-instructions

    Do you have any caching plugins active?

    October 19, 2011 at 11:43 pm in reply to: Multilanguage support #37651
    admin
    Keymaster

    Try the following:

    1. Open the “wp_eStore1.php” file and find the following block of code:

    $cart_language = get_option('eStore_cart_language');
    if (!empty($cart_language))
    $language_file = "languages/".$cart_language;
    else
    $language_file = "languages/eng.php";
    include_once($language_file);

    2. Once you find it replace it with the following block of code:

    function wp_eStore_load_qTranslate_lang()
    {
    $cart_language = qtrans_getLanguage();
    switch ($cart_language)
    {
    case "en":
    $language_file = "languages/eng.php";;
    break;
    case "it":
    $language_file = "languages/ita.php";;
    break;
    case "de":
    $language_file = "languages/ger.php";;
    break;
    }
    if(empty($language_file))
    {
    $cart_language = get_option('eStore_cart_language');
    if (!empty($cart_language)){
    $language_file = "languages/".$cart_language;
    }
    else{
    $language_file = "languages/eng.php";
    }
    }
    include_once($language_file);
    }
    add_action('init', 'wp_eStore_load_qTranslate_lang');

    3. Now, when you select a language from the qTranslate widget eStore will load the corresponding language file specified inside the “switch” statement.

    October 19, 2011 at 11:00 pm in reply to: About renewal and drip content… #37714
    admin
    Keymaster

    1. Yes, as soon as someone cancels the subscription (if he signed up using a subscription payment plan) then his eMember account is also deactivated.

    2. It really upto you as to how you want to setup your membership level but the way you have it looks good to me.

    October 19, 2011 at 10:38 pm in reply to: Showing as Logged out after Purchase? #37712
    admin
    Keymaster

    When Authorize.net returns you to the site it actually doesn’t return to your site (pay attention to the address bar and you will see what I mean). It just shows the “Thank You” page in a frame (it doesn’t actually redirect to the page like PayPal does). Since it loads your thank you page in a frame the dynamic parts of the site doesn’t load accordingly. To get around it, you can simply have a link on your “Thank You” page that tells the user to click on it and take an action.

    October 19, 2011 at 10:30 pm in reply to: Can't get Aweber working #37690
    admin
    Keymaster

    You can send it to us via this form (also send us a screenshot of the email parser too):

    https://support.tipsandtricks-hq.com/contact

    October 19, 2011 at 10:29 pm in reply to: Unable to change e-mail address and e-mail notifications not being sent #37713
    admin
    Keymaster

    1. Remember that the email has to be unique in the WordPress system. So if a WP user (not eMember member) exists with that email address then it won’t allow you to choose that address. Head over to the WordPress users database and search for that email address to make sure it is not being used (maybe you just need to delete that old user account?)

    2. Go to the Email Settings tab of eMember and check to make sure you have everything filled out and then save the values by hitting the update button. Try the forgot password after that.

    It is also a good idea to update the plugin. Please do the following:

    1. Deactivate and delete the currently installed version of the plugin(s).

    2. Download a fresh build of the plugin(s) from here:

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

    3. Upload and activate this version of the plugin(s). The specific update instruction for the plugin in question can be accessed from here:

    https://support.tipsandtricks-hq.com/plugin-installation-and-upgrade-instructions

    October 19, 2011 at 8:19 am in reply to: Tips and Tricks HQ – Useful Troubleshooting Links #37514
    admin
    Keymaster

    WP PDF Stamper Specific

    PDF Stamping Error Checklist – https://support.tipsandtricks-hq.com/forums/topic/an-error-occurred-while-trying-to-stamp-the-file-pdf-file-creation-checklist

    Debug Plain PayPal Button – https://support.tipsandtricks-hq.com/forums/topic/running-debug-for-plain-paypal-button-and-wp-pdf-stamper-integration

    PDF File URL protection/security – http://www.tipsandtricks-hq.com/wp-pdf-stamper/adding-extra-protection-to-your-source-pdf-files-219

    October 19, 2011 at 8:18 am in reply to: Tips and Tricks HQ – Useful Troubleshooting Links #37513
    admin
    Keymaster

    WP Affiliate Platform Specific

    Clicks tracked but not the sales – https://support.tipsandtricks-hq.com/forums/topic/clicks-are-tracked-but-not-the-sales

    Manually set and display affiliate ID – https://support.tipsandtricks-hq.com/forums/topic/manually-setting-the-affiliate-id-and-showing-the-affiliate-id-of-the-referrer

    October 19, 2011 at 8:17 am in reply to: Tips and Tricks HQ – Useful Troubleshooting Links #37512
    admin
    Keymaster

    WP eMember Specific

    Content protection not working (common mistakes) – https://support.tipsandtricks-hq.com/forums/topic/wp-emember-content-protection-not-working-common-mistakes

    Membership upgrade, renewal and cancellation – https://support.tipsandtricks-hq.com/forums/topic/membership-upgrade-renewal-and-cancellation

    eStore and eMember integration troubleshooting – https://support.tipsandtricks-hq.com/forums/topic/wp-emember-and-estore-integration-troubleshooting

    WP eMember Debug (Payment Buttons) – https://support.tipsandtricks-hq.com/forums/topic/wp-emember-and-plain-paypal-button-integration-troubleshooting

    CSS Customization (login, registration forms) – https://support.tipsandtricks-hq.com/forums/topic/emember-login-registration-and-edit-profile-form-css-customization

    WP eMember custom coding/misc tweaks – http://www.tipsandtricks-hq.com/wordpress-membership/wp-emember-miscellaneous-tweaks-248

    eMember customize compact login widget – https://support.tipsandtricks-hq.com/forums/topic/wp-emember-creating-or-customizing-the-compact-login-widgetlinks

    Video Tutorials – http://www.tipsandtricks-hq.com/wordpress-membership/wp-emember-quick-setup-and-usage-video-tutorial-132

    Difference between a Buy Now and a Subscription button – https://support.tipsandtricks-hq.com/forums/topic/membership-payment-difference-between-buy-now-and-subscription-buttons

    How to Retrieve and Show Specific Details of the Logged-in Member – https://support.tipsandtricks-hq.com/forums/topic/how-to-retrieve-and-show-a-particular-info-of-the-logged-in-member

    Lost admin access with eMember – https://support.tipsandtricks-hq.com/forums/topic/just-lost-admin-privileges

    • This reply was modified 2 years, 9 months ago by admin.
  • Author
    Posts
Viewing 15 posts - 13,966 through 13,980 (of 14,824 total)
← 1 2 3 … 931 932 933 … 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