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

wzp

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

Forum Replies Created

Viewing 15 posts - 91 through 105 (of 6,723 total)
← 1 2 3 … 6 7 8 … 447 448 449 →
  • Author
    Posts
  • August 17, 2022 at 7:41 pm in reply to: Affiliate Portal not working #84523
    wzp
    Moderator

    PHP session problems can only be corrected by the hosting provider. Not correcting it will affect most plugins that perform affiliate or eCommerce operations. Who is your hosting provider?

    August 15, 2022 at 6:42 pm in reply to: Affiliate Portal not working #84511
    wzp
    Moderator

    Are you using any page caching plugins? The only 2 “officially supported” caching plugins are:

    1. WP Super Cache:

      Using the Plugins Together with WP Super Cache Plugin


       

    2. W3 Total Cache:
      https://support.tipsandtricks-hq.com/forums/topic/using-the-plugins-with-w3-total-cache-plugin

    If you are using any other plugin, please examine the configuration guidance for these 2 plugins (see links) and determine if you can similarly configure your caching plugin.

    • This reply was modified 2 years, 10 months ago by wzp.
    August 3, 2022 at 6:44 pm in reply to: Buyer email not arriving – all others work OK #84508
    wzp
    Moderator

    A few years back the provider blocked the wp mail() function and told me to install the free WP Mail SMTP plugin…

    I found an earlier thread, in which the user had similar issues.

    WP eStore – Buyer not receiving email after purchasing digital product


    The issue was resolved, when the user switched from the WP Mail SMTP plugin to the Easy WP SMTP plugin.

    Easy WP SMTP – WordPress SMTP and Email Logs: Gmail, Office 365, Outlook, Custom SMTP, and more

    August 2, 2022 at 3:45 pm in reply to: Buyer email not arriving – all others work OK #84500
    wzp
    Moderator

    Who is your hosting provider? Are you using their SMTP server for the outbound emails?

    August 1, 2022 at 8:03 pm in reply to: Buyer email not arriving – all others work OK #84497
    wzp
    Moderator

    You did not make it clear, if the issue only occurs for that one buyer, or for others, as well.

    If the log shows the product email as being successfully sent; then it was “sent.”

    Check the email body template, to ensure that the mail tag for the download link(s) is there. Also, make sure the template does not “sound spammy.” Also, have the buyer check their spam folder.

    July 28, 2022 at 3:36 pm in reply to: Links From Cart Back To Product Page #84495
    wzp
    Moderator

    1. What happens now?

    2. Please provide a live link to you store, so that we can observe what you are describing.

    July 19, 2022 at 4:15 pm in reply to: Convert calendar year membership to 1yr durational (from whenever they join) #84492
    wzp
    Moderator

    @seehowtwo wrote: So, this is a (relatively) complicated process… no membership plugin I know of is addressing the VERY COMMON requirement…

    Not as common as you might believe. Example: mid-period signups & cancellations. Everybody has their own ideas of how they’d like the plugin to handle certain situations. That’s why the solutions are not something that can be handled with a simple checkbox or dropdown selection. The solutions offered by @coabirder are sound.

    July 8, 2022 at 4:09 pm in reply to: WP eMember Email Broadcast Add On #84484
    wzp
    Moderator

    When an email is sent through the addon, it is sent as plain text. It is up to the recipient’s email client to decide whether or not, and how, to handle URL that appear in the message. Because the emails are sent as plain text messages, any attempts at including HTML code are usually ignored; unless the recipient is using a web browser mail client, to read the message. However, properly formed URL addresses are USUALLY turned into clickable links, by the email client; as in:
    https://example.com/demonstration

    July 6, 2022 at 3:56 pm in reply to: eStore, eMember & PDF stamper – RE: downloading pre-purchased stamped PDFs #84478
    wzp
    Moderator

    4. After login, the member may browse all the products. If there is a product that the member has already purchased, the product info should change to reflect the purchase (eg. button should change from “buy” to “already purchased” or “download” or equivalent).

    That capability does not exist.

    5. After login, the member may view a report of all previous downloadable purchases, a “My downloads” page or equivalent, with the ability to download stamped PDFs from this report if they are listed among the purchases.

    For this capability, please download the free Self Re-Download Digital Products Addon; which also overlaps the desired functionality mentioned in #2 and #3:

    WP eStore Addon – Self Re-Download Digital Products

    • This reply was modified 3 years ago by wzp.
    June 20, 2022 at 7:16 pm in reply to: Text field for Additional Membership Levels by user #84471
    wzp
    Moderator

    The note fields are “1 per member,” regardless of the number of levels they belong to. To achieve the 1:n:1 (member:level:note) functionally desired, requires a major rewrite of the plugin. You have the option of requesting a custom work order quote:

    Need Custom Work Done?

    June 20, 2022 at 7:07 pm in reply to: How to get all of PayPal’s Payment Options To Appear On My Checkout Page #84468
    wzp
    Moderator

    When the buyer clicks the checkout button; control should transfer to PayPal, and the appropriately available options should appear. This of course assumes, that the buyer is logging into their PayPal account, when they are transferred to PayPal.

    June 20, 2022 at 7:02 pm in reply to: mailchimp intergration With WP eMember #84467
    wzp
    Moderator

    You would manually add the member, using Mailchimp:
    https://mailchimp.com/help/add-single-subscriber-audience/

    June 13, 2022 at 2:12 pm in reply to: eMember Form Builder : custom value to SELECT #84460
    wzp
    Moderator

    There is an “easy” and a “hard” solution to what you are asking for:

    • “Hard” — When you design a form, using the Form Builder, it stores the design specifications for your forms in the MySQL database; and when the form is displayed, those specifications are interpreted by a p-code like system, that dynamically constructs the form code. It is very difficult to modify the addon, to work the way that you would like it to.
       
    • “Easy” — Because your dropdown choices are known in advance (Option1, Option2, et al); at the appropriate point in your own code, simply retrieve the field “text value” and run it through a CASE statement, that will transliterate the human-readable dropdown selection to whatever desired numerical value is required.
       
      In the cases where you are using multiple values for the same dropdown item, because you are using dirrent forms for each membership level, simply have a hidden “level code” field as part of the form. You’d then use a nested IF/CASE statement, similar to:
       
         IF level-code = 1 THEN
            CASE
         ELSE IF level-code = 3 THEN
            CASE
    • This reply was modified 3 years ago by wzp.
    • This reply was modified 3 years ago by wzp.
    • This reply was modified 3 years ago by wzp.
    June 10, 2022 at 4:29 pm in reply to: Text field for Additional Membership Levels by user #84454
    wzp
    Moderator

    So, for example; you want to indicate that:
    Member “Joe” is “President” of membership level “Android Club”, and “Secretary” of membership level “iPhone Club” ???

    There is only 1 admin note field, per member.

    June 9, 2022 at 5:10 pm in reply to: Text field for Additional Membership Levels by user #84449
    wzp
    Moderator

    Because you already have the Form Builder Addon, you <en>could add a read-only text field to each member’s profile; called “Role.” Customizing the admin menu will cause you to not be compatible with future plugin updates.

  • Author
    Posts
Viewing 15 posts - 91 through 105 (of 6,723 total)
← 1 2 3 … 6 7 8 … 447 448 449 →

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