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 - 226 through 240 (of 5,807 total)
← 1 2 3 … 15 16 17 … 386 387 388 →
  • Author
    Posts
  • August 3, 2011 at 4:39 am in reply to: Manual Payment checkout flow adjustments #18820
    amin007
    Participant

    You can instruct your customers to leave those details in the “Additional Comments” field in the manual checkout form.

    August 3, 2011 at 4:24 am in reply to: Is it possible for a customer to save their shopping cart for later? #35082
    amin007
    Participant

    Update: This feature is now available in eStore:

    http://www.tipsandtricks-hq.com/ecommerce/wp-estore-save-and-retrieve-cart-feature-2464


    eStore doesn’t have an option like this. Maybe I will add an option for this.

    August 3, 2011 at 4:19 am in reply to: Audio Player only plays old file #35080
    amin007
    Participant

    The Fancy7 and 8 display option directly plays the mp3 file that you enter in the “Digital Product URL” field for a compact display option. It does not show or take anything from the description field of the product. If you want to show the description field, use one of the other fancy display options that shows the description section of a product.

    This page has a list of all the fancy display options available in eStore:

    http://www.tipsandtricks-hq.com/ecommerce/stylish-product-display-options-for-wp-estore-829

    August 3, 2011 at 4:01 am in reply to: Can you use Stamper with a shopping cart? #35068
    amin007
    Participant

    Buy Now type buttons are single checkout buttons. If you want to let your customers buy multiple items together you need to use “Add to cart” type buttons. This lets you use coupon codes and stuff. This post will explain the differences between the available types of buttons:

    https://support.tipsandtricks-hq.com/forums/topic/different-types-of-payment-buttons-and-their-behaviour

    August 3, 2011 at 2:59 am in reply to: Shopping Cart – Product redirect url #35063
    amin007
    Participant

    If you read the help text for the “Buy Now or Subscription Type Button Specific Settings” section you will see that it says something like the following:

    The options in this section are only used for "Buy Now" or "Subscription" type buttons

    What that means is that the options you specify in this section are only used if the button is of type buy now or subscription.

    So my question is when you placed a button for this product what type of button did you use? Can you tell me the shortcode that you used to place the button for this individual product?

    August 3, 2011 at 2:57 am in reply to: receipt #35020
    amin007
    Participant

    As soon as you make a payment for any products from our site PayPal will send you a receipt that contains a transaction ID. PayPal never misses to do this but it is possible that the receipt went to your spam folder. PayPal sends us a copy of the receipt too. I forwarded you a copy of that receipt.

    August 3, 2011 at 2:52 am in reply to: WP eStore Add Product -> Save Product #34805
    amin007
    Participant

    “Try entering a Product Page URL” – What this means is that your server do not have CURL support. The plugin checks each URL value you entered to make sure there is no typo in the URL. On servers where URL fopen is disabled it tries to do the check using CURL and since that is also blocked, it has to wait 30 seconds before it times out.

    Open the “eStore_utility_functions.php” file and search for the following:

    function eStore_is_valid_url_if_not_empty($url)
    {
    if(empty($url))
    {
    return true;
    }
    else
    {
    return eStore_is_valid_url($url);
    }
    }

    Once you find it replace it with the following:

    function eStore_is_valid_url_if_not_empty($url)
    {
    return true;
    }

    This should make it to where it doesn’t do that URL check anymore. You will just have to make sure you enter the correct URL value.

    August 3, 2011 at 2:44 am in reply to: Back button from Paypal page brings me to an error page. #34998
    amin007
    Participant

    Just so you know… There is a settings field called “Cancel URL” in eStore where you can specify a URL value. So when your customer lands on PayPal they can click on the cancel button and it will take them to that page. PayPal knows that the back button may not work on automatic HTTP form submission (not all shopping cart uses the same submission technique) so they offer this option.

    The tattoo site you mentioned is using a “Buy Now” or “Subscription” type button where automatic form submission do not happen and this is not a problem in the first place. If you use buy now type buttons on your site you will see the same behavior too. This post explains the different types of buttons:

    https://support.tipsandtricks-hq.com/forums/topic/different-types-of-payment-buttons-and-their-behaviour

    In terms of changing the message that gets displayed… you can modify the “eStore_payment_submission.php” file and change the message to say whatever you want it to say. Search for the following line in that file then change it:

    Either your shopping cart is empty or the PHP Session on your server is not working correctly

    August 3, 2011 at 2:22 am in reply to: Creating Pass Thru Affiilate Links for External Site #22717
    amin007
    Participant

    You need to use the site that have the Affiliate plugin installed. Basically it needs a link to the “redirect.php” script that comes with the affiliate plugin.

    August 3, 2011 at 2:19 am in reply to: How to Remove the Quanity Field #15765
    amin007
    Participant

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

    August 3, 2011 at 2:18 am in reply to: WP Affiliate – Integrating with Formstack #35062
    amin007
    Participant

    We do not have any integration option with the “Formstack forms” application. We can however tell you how you can retrieve the affiliate ID and add it to a hidden field using PHP. The affiliate ID is stored in a cookie and can be retrieved using the following code:

    <?php
    $aff_id = $_COOKIE['ap_id'];
    echo '<input type="hidden" name="affiliate_id" value="'.$aff_id.'" />';
    ?>

    This 3rd party integration API might come in handy:

    http://www.tipsandtricks-hq.com/wordpress-affiliate/awarding-commission-via-http-get-or-post-189

    August 3, 2011 at 2:09 am in reply to: Buyer Email Body and Seller Email Body can't display Chinese properly. #35054
    amin007
    Participant

    What email client do you use to view your emails?

    August 3, 2011 at 1:57 am in reply to: Editing files in "affiliates" folder doesn't affect the front end pages #35030
    amin007
    Participant

    Which affiliate area/view option are you using (option1 or option2)?

    August 3, 2011 at 1:56 am in reply to: Product Title change #34837
    amin007
    Participant
    [wp_cart:EDI 101,Wednesday,October 12th,1:00PM-5:00PM:price:300.00:end]

    The following eStore shortcode will have the exact same output as the above “simple shopping cart” shortcode:

    [wp_eStore_add_to_cart id=1]

    1 is the product ID here that have the following details configured:

    Name: EDI 101,Wednesday,October 12th,1:00PM-5:00PM
    Price: 300.00

    August 3, 2011 at 12:50 am in reply to: wp estore password reset #35029
    amin007
    Participant

    Please post a link to your site so we can view the HTML source of your site.

  • Author
    Posts
Viewing 15 posts - 226 through 240 (of 5,807 total)
← 1 2 3 … 15 16 17 … 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