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 - 3,286 through 3,300 (of 14,824 total)
← 1 2 3 … 219 220 221 … 987 988 989 →
  • Author
    Posts
  • February 3, 2016 at 12:00 am in reply to: E Store not working with Authorize.net #54958
    admin
    Keymaster

    You must have made some changes to your authorize.net profile which has triggered this. Your authorize.net is now asking for a relay response URL. This is a requirement from authorize.net so ask them why they want it and they will be able to answer your question.

    Use the “Thank You” page URL of eStore in your authorize.net account’s relay response URL. That should address it.

    We do have authorize.net subscription (ARB) for eStore. That functionality can be added to your site using the payment gateway bundle extension:

    https://support.tipsandtricks-hq.com/forums/topic/wp-estore-and-payment-gateway-bundle

    February 2, 2016 at 11:34 pm in reply to: Adding members to different mailchimp groups #72351
    admin
    Keymaster

    If you are testing using the same email that you used earlier to subscribe, MailChimp won’t send you the confirmation. That is not an issue.

    Let me know if the group data works after you change the hidden type. Remember that group data has to work with your standard MailChimp form (so test that first before testing the signup using this plugin).

    February 2, 2016 at 1:41 am in reply to: WP eMember-Add Links (Social Media etc) to Member Profile & Sorting #72465
    admin
    Keymaster

    There is an HTML field in the form builder addon that you can use to let your members enter their social media links. You can add HTML code in that field to show the links however you want to.

    The profile extended addon allows the member listing to be sorted using company name field also. Are you using the profile extended addon?

    https://www.tipsandtricks-hq.com/wordpress-membership/wp-emember-profile-display-extended-addon-599

    February 2, 2016 at 1:20 am in reply to: Adding members to different mailchimp groups #72349
    admin
    Keymaster

    I just check your log file data. The signup seems to be working correctly. You have enabled BOTH the global signup and the membership level specific one. So that will cause 2 signups per registration. You should disable the global signup option if you are going to be using the level specific one.

    The global one is mainly for people who doesn’t want to do individual list specific signup.

    Do the following test please (so we can see if your groups info is setup correctly on MailChimp side.

    Get the standard opt-in form code for that list (and group) from your MailChimp account. Put this form code on a test page then do a signup. Does the group info get added correctly in your MailChimp account?

    February 2, 2016 at 1:12 am in reply to: Product configuration for Stripe payment gateway #72461
    admin
    Keymaster

    The following documentation tells you exactly what to do for stripe subscription. Please read it fully then do the steps (on a test page if you want) and that will help you learn how it works:

    https://www.tipsandtricks-hq.com/ecommerce/wp-payment-gateway-bundle-stripe-subscription-setup-2764

    January 31, 2016 at 11:10 pm in reply to: Looking for ways to change position of the stylish squeeze form #69370
    admin
    Keymaster

    How to center the stylish squeeze form

    You can use the following technique to center the stylish squeeze form. Adjust the width value (depends on your page width) to different number so you can get the result you want:

    Example 1

    <div style="width: 300px; margin-left: auto; margin-right: auto;">
    [wp_eStore_ssf id="1"]
    </div>

    Example 2

    <div style="width: 560px; margin-left: auto; margin-right: auto;">
    [wp_eStore_ssf id="1" template="3"]
    </div>

    Note: Make sure to enter this HTML code in the “text” mode of the editor.

    January 31, 2016 at 11:05 pm in reply to: How to center the Stylish Sqeeze Form Template 3 on page #72456
    admin
    Keymaster

    Not all HTML elements can be centered using the simple “center” tag.

    You can use the following technique to center the stylish squeeze form. Adjust the width value to get the result you want:

    <div style="width: 560px; margin-left: auto; margin-right: auto;">
    [wp_eStore_ssf id=6 template=3]
    </div>

    January 31, 2016 at 10:47 pm in reply to: eMember – How to style Form Builder? #72462
    admin
    Keymaster

    Each of the elements and fields in that form has CSS classes attached to it. So you can target the element and apply custom CSS.

    Are you familiar with the following technique?

    https://www.tipsandtricks-hq.com/how-to-use-firebug-to-modify-your-wordpress-sites-css-video-tutorial-4037

    January 30, 2016 at 11:44 pm in reply to: WP Affiliate – Custom thank you page for affiliate registration #72445
    admin
    Keymaster

    okay the best option is to use affiliate registration complete action hook. That way you are not modifying the core plugin code.

    The following is an example snippet of code that shows you how to use this action hook. You can add it to your theme’s functions.php file OR your custom plugin.

    add_action ('wp_aff_registration_complete', 'custom_affiliate_redirection');
    function custom_affiliate_redirection()
    {
    //TODO - The affiliate registration is complete, do the redirection.

    $url = 'www.example.com/custom-page';//Your redirection page URL
    header('Location: ' . $url);
    }

    January 30, 2016 at 11:23 pm in reply to: eMember Form Builder – Style and functionality not being applied to Registration #72453
    admin
    Keymaster

    Looks like you have the “Free Members Must Confirm Email Address” option enabled. You need to get to the next step to see the registration form.

    When you enable that option, it doesn’t allow your users to get to the MAIN registration form unless they click on the special link sent in their email.

    If you just wanted to see how that form will look like (without going through the steps), just disable that “must confirm email address” option.

    January 30, 2016 at 2:12 am in reply to: Adding Search to Products in Store #42096
    admin
    Keymaster

    The full name of the product search should show that product also. There is nothing that says the search keyword can only be one word long.

    Do you have the keyword “blue beads” in your product name?

    January 30, 2016 at 2:09 am in reply to: Affiliate Plugin – Can customer use different payment methods #72452
    admin
    Keymaster

    Your customer doesn’t even have to know about the underlying affiliate structure. They do the checkout normally (based on what you offer in your e-commerce solution)

    The following documentation should be useful for you:

    https://www.tipsandtricks-hq.com/wordpress-affiliate/managing-affiliate-commission-payouts

    You can pay your affiliates however you want to. The plugin will create a payment report file telling you exactly how much you need to pay to which affiliate. You can send them payment your way then just mark the payment as paid.

    January 30, 2016 at 2:05 am in reply to: eStore Variations User Enters Value (custom input) #72447
    admin
    Keymaster

    WP eStore plugin has an option that lets you collect customer input for a particular product at purchase time (for example you need to collect a name). To use this option simply check the “Collect Customer Input” checkbox when configuring the product.

    January 30, 2016 at 12:44 am in reply to: WP Affiliate – Custom thank you page for affiliate registration #72443
    admin
    Keymaster

    So you want to redirect to that custom thank you page after the registration is complete?

    Which affiliate portal option are you using?

    https://www.tipsandtricks-hq.com/wordpress-affiliate/setting-up-the-affiliate-viewarea-315

    January 29, 2016 at 12:07 am in reply to: eStore – integration with Software License Manager #72434
    admin
    Keymaster

    You don’t need to activate the license manually. “pending” means that the license is ready to be activated by the user (it hasn’t be activated by the user yet). As soon as the customer user the license key and activate your product, the license manager will change the status of the license key to “active”.

  • Author
    Posts
Viewing 15 posts - 3,286 through 3,300 (of 14,824 total)
← 1 2 3 … 219 220 221 … 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