+ Reply to Thread
Results 1 to 5 of 5

Thread: JVZIPN => DAP - Userflow

  1. #1

    JVZIPN => DAP - Userflow

    Simple 3 step integration:
    1. Product names in dap and JVZoo should match.

    2. Login to your JVZoo account and set the METHOD#1 (JVZIPN URL) to http://YOURSITE.com/dap/dap-jvzooipn.php (replace YOURSITE.com with the name of your site).
    Do NOT set the IPN Forwarding URL (Method #3) as it does not work for recurring payments.

    3. Set the JVZoo My Account => JVZIPN Secret Key to match the Secret key in your DAP setup -> config -> Payment Processing => Secret Authorization Key.
    You can pick any secret key you want. Just make sure it exactly matches in dap setup -> config area and the JVZoo My Account page.

    NOTE: You can put in ANYTHING you want in the DAP secret key (in dap setup -> config). Say that you set it to DAPKEY. Now when you go to JVZoo My Account => JVZIPN Secret Key, make sure to set the jvzoo secret key to DAPKEY there too. It has to EXACTLY match whatever you set the dap secret key to.

    UserFlow

    NOTE: Use DAP to deliver/protect downloads by protecting the downloads/content in dap products page => ContentResponder section.

    * Buyer clicks on the button (button created within your JVZoo account) on your sales page
    * Buyer is taken to the JvZoo page where they can complete payment
    * Buyer completes the payment successfully
    * Buyer is transferred back to whatever you set in the thankyou URL in JvZoo for the product.
    * In the meantime, JVZoo notifies DAP about the purchase.
    * DAP automatically creates the member account, and sends thankyou email (configured in your dap products page) with login info to the buyer.

    Make sure to setup the thankyou email in the DAP products page for all the products you deliver via DAP.

    * When the users login to their membership area, they will be redirected to either product-level logged-in URL or global logged-in url based on whether they have access to just 1 product or multiple products. The product level logged-in url is used if the user has access to just 1 product. The global logged-in url (under dap setup -> config -> post-login redirect url) is used when user has access to multiple products.
    * Note: You can create a members area and redirect users to that page upon purchase. When the users login and access their members area, they can access the purchased products/downloads.

  2. #2

    Re: JVZIPN => DAP - Userflow

    Is their any chance of getting DAP to display the users username & password on the JVZoo receipt page like other plugins such as FastMember do?

    You're using their custom JVZIPN which will allow for you to do this. It'd be a great feature and one that would cut down the support time for your users

  3. #3

    Re: JVZIPN => DAP - Userflow

    Quote Originally Posted by AdrienneJory View Post
    Is their any chance of getting DAP to display the users username & password on the JVZoo receipt page like other plugins such as FastMember do?

    You're using their custom JVZIPN which will allow for you to do this. It'd be a great feature and one that would cut down the support time for your users
    There may or may not be a way to do it using a function pre-built into DAP, I have no idea as I don't even know what JVZIPN is. However, I do what you're referring to on my site in the following manner:

    I put the %%USER_PROFILE%% shortcode inside of a hidden div like this:

    <div style="display:none";>
    user profile shortcode here
    </div>

    Then, I use javascript to get the values I want to display on the page:

    <script>
    var firstname = document.getElementById('first_name'); //this retrieves the first name from the hidden "first name" input box that the dap profile shortcode displays, but it's hidden in the hidden div
    </script>

    Then, you can either display their first name as text within a sentence, like this:

    Hello <script>document.write(firstname);</script>

    Or have their first name autopopulate an input box:

    <input id="whatever" >

    <script> document.getElementById('whatever').value = firstname;</script>

  4. #4

    Re: JVZIPN => DAP - Userflow

    Quote Originally Posted by AdrienneJory View Post
    Is their any chance of getting DAP to display the users username & password on the JVZoo receipt page like other plugins such as FastMember do?

    You're using their custom JVZIPN which will allow for you to do this. It'd be a great feature and one that would cut down the support time for your users
    Yes please. Please yes. That would be GREAT!

  5. #5
    Administrator
    Join Date
    Nov 2010
    Posts
    525

    Re: JVZIPN => DAP - Userflow

    Quote Originally Posted by RobertHoward View Post
    Yes please. Please yes. That would be GREAT!
    Please open a support ticket with us and we will try to see if there is an easy way to implement it.

+ Reply to Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts