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

amin007

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

Forum Replies Created

Viewing 15 posts - 5,506 through 5,520 (of 5,807 total)
← 1 2 3 … 367 368 369 … 386 387 388 →
  • Author
    Posts
  • December 20, 2009 at 12:16 am in reply to: Email addess ID is unavaliable… new user #16734
    amin007
    Participant

    Hmmm… what version of the plugin are you using?

    December 20, 2009 at 12:04 am in reply to: checkout button clicked – 404 error #16877
    amin007
    Participant

    Looks like you have modified the plugin and there are some mistakes in your code. I have no way of supporting a plugin when customers modify the code because I don’t know what has been changed. Just by looking at the URL (when I click the checkout button) I can see the following:

    http://www.mrsomethingsomething.com/music/music-new/WP_PLUGIN_URL/wp-cart-for-digital-products/eStore_payment_submission.php

    I noticed “WP_PLUGIN_URL” in the URL which is completely wrong! Please take a look at your code and try to find out what modifications went wrong.

    December 19, 2009 at 11:58 pm in reply to: Pagination for Category Pages #16872
    amin007
    Participant

    I will get back to you after I take a look at the code

    December 19, 2009 at 11:44 pm in reply to: Integration with the Your members membership plugin #16869
    amin007
    Participant

    Hi Frank, looks like they have WordPress hooks available so an integration should be possible through the hooks. Can you please find out the documentation for the available hooks so I can take a look at it?

    PS. it’s easier to integrate with another wordpress plugin when hooks are available.

    December 19, 2009 at 11:36 pm in reply to: Integration with JROX Jam Affiliate Manager #16830
    amin007
    Participant

    The following bit of code that you are putting is on the “Thank You” page:

    $JAMIntegrate = file_get_contents(“http://www.prontopage.net/affiliates/sale.php?amount=”.$mc_gross.”&trans_id=”.$txn_id.”&custom_mid=”.$_COOKIE.””);

    which means you don’t need to transfer the cookie variable to paypal as it can be directly accessed by the following PHP command:

    $_COOKIE

    so if I understand correctly you just have to specify the total amount and the transaction ID. The cookie part is fine as it is.

    I am pretty sure the cookie is set when someone visits your site following an affiliate link. Did you simulate that part to make sure the cookie is set so you can test the commission awarding part?

    December 19, 2009 at 2:59 am in reply to: Removing "+" from Drop-down Menu #16781
    amin007
    Participant

    Now that you are changing how the data is parsed you will have to rewrite the javascript logic a little bit. This is not just a matter of removing a character from some code. with that said, I think the following code should do it:

    function CheckTok (object1)

    {

    var j,tok,ary=new Array ();

    ary = val.split (” “);

    val_1st_half = ary[0];

    val = ary[1]; // get data

    amt = amt + val*1.0;

    }

    Please note that I haven’t tested this so there is no guarantee that this will work. It’s impossible for me to provide custom solutions to all of my customers. Also, don’t forget to take out the “+” character from the PHP file so it doesn’t add it there.

    December 19, 2009 at 2:45 am in reply to: More info at login. How to add more forms? #16856
    amin007
    Participant

    Hi Manny, All of my premium plugins have a documentation site where instructions for how to do things with the plugin is documented. The documentation site URL for the membership plugin is:

    Documentation

    I don’t use a PDF document because I actively develop these plugins so the instructions go out of date as soon as I release an updated version of the plugin. Having it online makes me update the documentation easily and it forces everyone to look at the latest documentation rather than the old one that you have lying on your computer.

    Remember, I give the updated version of the plugins to the existing customers for free so it is important that everyone is following the latest documentation.

    I do agree that not having a video tutorial kind of sucks for some users but I really didn’t get time to create the video tutorials (sorry for this). I have this on my to do list and will put some video tutorials out in a few weeks.

    With that said, let me see what’s holding you up and address them so you can get going.

    You pretty much just have to go to the settings menu and go through each option and do what it tells you to in the help text.

    Please post it here when you can’t figure something out.

    December 19, 2009 at 2:22 am in reply to: New Functionality for WP E Store #16525
    amin007
    Participant

    LOL… you guys are funny :)

    I am very busy with my next little project at the moment…. I will look into it after I am done with that.

    December 19, 2009 at 2:11 am in reply to: Integration with JROX Jam Affiliate Manager #16828
    amin007
    Participant

    okay lots of information for me (given I am not very familiar with the JROX Jam affiliate program :) I will try to answer as best as I can.

    1) You can use the “custom” variable of PayPal to pass the cookie variable. custom variable is a pass thru variable.

    2) Yes you can have more than one script using the IPN but not at the same time. What is means is that PayPal won’t send the IPN to two scripts after the payment for a particular payment. You can specify the IPN URL in your profile but as soon as you use the “notify_url” variable specifying the IPN URL for a button it will get overriden (eStore does this).

    3) The simple shopping cart doesn’t use the IPN feature as it doesn’t do any post payment processing work. You can turn of the IPN in eStore so it acts like the simple shopping cart but you won’t get all the features of eStore (eg. automatic delivery of digital products via email).

    I think one of these two methods might be a feasible integration option:

    a) System Integration using a PHP script.

    b) Forward the IPN received by eStore to the JROX system. (http://jam.jrox.com/docs/index.php?article=114)

    step (a) sounds easier. Here are the name of the variables that you will need.

    total amount = mc_gross

    transaction ID = txn_id

    The “mc_gross” field will have the total amount and the “txn_id” field will have the transaction id.

    Is there example code available for this integration option from the JROX Jam affiliate program?

    December 19, 2009 at 12:27 am in reply to: Two languages on one installation #16854
    amin007
    Participant

    I really have no idea how to do two languages on one WordPress installation. Sorry.

    December 18, 2009 at 7:17 am in reply to: Integration with JROX Jam Affiliate Manager #16824
    amin007
    Participant

    I am guessing you want to use that with the WP eStore plugin? If yes then note that the WP eStore plugin already uses the IPN (instant payment notification) feature of PayPal to do the post payment processing stuff (eg. deliver the digital products). PayPal only sends IPN to one script so if you add that bit of code it will send the IPN to the JROX Jam affiliate software instead of the eStore plugin and the WP eStore won’t be able to do any post payment processing work.

    If they have an integration option like the iDev Affiliate software whereby you can call a PHP function for the commission award then I can accommodate that.

    December 18, 2009 at 7:07 am in reply to: Removing "+" from Drop-down Menu #16779
    amin007
    Participant

    I completely understand… you will need to modify the javascript file called “eStore_read_form.js” which is located in the “lib” directory of the this plugin.

    Find the following function the file:

    function CheckTok (object1)

    you will need to change the logic here to take out the addition if there is a “+” token. I have it like that so later I can introduce the “-” token that allows you to subtract values for a selected variation.

    Once done you will need to minify this JavaScript file and give it the following name:

    eStore_read_form.min.1.js

    The plugin uses the minified version of the JavaScript files for performance reasons.

    after the JavaScript file is updated you can take out the “+” from the PHP file.

    just a warning though… when I release a new version and give you the update you will have to apply these changes manually on your installation again.

    December 18, 2009 at 6:51 am in reply to: Can I sell streaming media through this plugin? #16802
    amin007
    Participant

    Yeah, I can give you an additional script that will work with eStore to provide some extra security. What this script does is that when someone clicks on the encrypted link that they receive after making a purchase, it takes them to this special script (eg. http://www.you-domain-name.com/protected.php). This script shows the actual content page which has the streaming videos embedded on it. This script only shows the content if the customer follows the encrypted link. If a visitor goes directly to this URL it will redirect them to a different URL (eg. an access denied type page). This way the users can’t view the videos after the encrypted links expire and they also never know the actual URL of the page that has the videos embedded on it.

    The other option is to use the WordPress Membership Plugin where you can embed your videos on the posts or pages then protect it so only the members can view it. You can see an example on the WP eMember demo site. Use the following login information:

    Username: free123

    Password: testpass

    December 18, 2009 at 5:55 am in reply to: Automatic redirect after "add to cart" #16787
    amin007
    Participant

    Nope… but this sounds like a good idea though. I have plans to add a few “Upselling type features” into the WP eStore so would be good if you can explain and put this on the WP eStore Wishlist page (http://www.tipsandtricks-hq.com/ecommerce/?p=148)

    December 18, 2009 at 5:39 am in reply to: Lond html code for nexgen #16801
    amin007
    Participant

    Hi Bryan, this is a NextGen gallery thing and I am not really sure what function call is equivalent to the “[nggallery id=1 template=…]” shortcode.

    In the NextGen gallery documentation search for the function references for their shortcode… kind of like what I have here for the WP eStore:

    WP eStore Shortcodes and Functions Reference

    On that page I have the shortcodes that you can use from a post or page followed by the equivalent PHP function calls that you can use from the template files of your themes.

  • Author
    Posts
Viewing 15 posts - 5,506 through 5,520 (of 5,807 total)
← 1 2 3 … 367 368 369 … 386 387 388 →

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