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 - 301 through 315 (of 14,824 total)
← 1 2 3 … 20 21 22 … 987 988 989 →
  • Author
    Posts
  • November 7, 2020 at 5:18 pm in reply to: Width of quantity input field in shopping cart #81876
    admin
    Keymaster

    Should be able to use something like the following CSS tweak to make that field wider:

    
    .eStore_cart_item_qty{
    width: 100px !important;
    }
    
    November 6, 2020 at 9:20 pm in reply to: Order paid hook for own licence server integration #81869
    admin
    Keymaster

    I am going to reply all your license manager related questions in this one post (The other post will be deleted).

    If you have the following option enabled in the “Manual Checkout” settings, then yes it will trigger that hook also:

    
    Automatically Update Customer & Products Database
    

    The manual checkout also triggers the following action hook:

    
    do_action('eStore_manual_checkout_form_data', $payment_data, $cart_items);
    

    The above mentioned action hook will also pass the customer input (from the collect input addon). The following example code shows how you can read it from the custom field.

    
    $custom_field = $payment_data['custom'];
    parse_str($custom_field);
    eStore_payment_debug("Collect input addon - field 1 value: " . $cci_val, true);
    eStore_payment_debug("Collect input addon - field 2 value: " . $cci_val2, true);
    

    This custom license manager integration related question is actually beyond the scope of our standard support. Please review our terms (which you had to agree before purchasing anything from our site).

    You need to use the following option for this kind of custom coding related stuff:

    Need Custom Work Done?

    November 6, 2020 at 7:21 pm in reply to: Gallery not loading images correctly #81866
    admin
    Keymaster

    I will take a look inside your site to see what I can find. I have sent you an email for it.

    November 6, 2020 at 5:03 pm in reply to: Selling Items for $0.0 (Giving products for Free) #81859
    admin
    Keymaster

    You can try the following feature to create gateway specific buy now type buttons (if that is helpful):

    How to Use Gateway Specific Buy Now Type Buttons

    November 5, 2020 at 7:04 pm in reply to: Order paid hook for own licence server integration #81844
    admin
    Keymaster

    You can post the payment data to another script by using the following feature:

    Go to the following settings area to enable the IPN forwarding:

    WP eStore Settings -> 3rd Party Integration -> POST IPN to a 3rd party application

    Alternatively, we have a WordPress action hook that you can use too (if you want to handle this via another custom plugin). Here is an example of how to use this hook:

    
    add_action ('eStore_product_database_updated_after_payment', 'my_custom_tweak', 10, 2);
    
    function my_custom_tweak ($payment_data, $cart_items)
    {
    //Do your custom stuff here
    }
    

    The $payment_data array will contain information that you can use to also query the customers database of eStore and get additional data for that transaction.

    November 5, 2020 at 6:45 pm in reply to: Issue with Payment Gateway Bundle, Stripe SCA #81843
    admin
    Keymaster

    I have manually reset your key. Please try to activate it now.

    November 5, 2020 at 6:43 pm in reply to: Is member level in rego form the same as the ref text in estore settings product #81841
    admin
    Keymaster

    The reference text for the eMember membership is the “membership level ID”:

    WP eMember and WP eStore Integration for Membership Payment

    Read the following documentation to learn how the registration process works with our plugin:

    Typical Member Registration Flow (Signup Scenarios)

    You don’t need to enable the free membership option for a subscription payment. Trial subscription is part of the standard subscription payment (so it is still a paid subscription model).

    November 4, 2020 at 5:42 pm in reply to: Woo Coupon – Commission on reorder #81821
    admin
    Keymaster

    That lock customer addon will still work since it does the locking on the first commission awarding. So when the commission is awarded (via coupon code application), the binding happens then.

    November 4, 2020 at 5:25 pm in reply to: Gallery not loading images correctly #81820
    admin
    Keymaster

    A feature of that plugin must be conflicting for some reason. Did you try uploading the photos and creating a new gallery while that SSL plugin is active (so the photos are uploaded using “HTTPS” protocol from the start)? Does that gallery work if you upload new photos with the SSL plugin active?

    November 3, 2020 at 6:17 pm in reply to: some problems some questions ! php error, transactions don’t show up … #81815
    admin
    Keymaster

    I have sent you an email so I can take a look at your configuration. That will be easier.

    November 3, 2020 at 6:14 pm in reply to: Category listing shortcode #81814
    admin
    Keymaster

    If you are using an external system to sell, then you need to use product listing from them. Our plugin’s listing is going to have the buy option from our plugin.

    One option you can try is to use is the “Button Redirect Target URL” field in the product configuration. That will redirect the customer to the specified URL (instead of adding the item to the cart). So it can be used to send the user to an external site or page.

    November 3, 2020 at 6:10 pm in reply to: Gallery not loading images correctly #81813
    admin
    Keymaster

    Something is going wrong on this site. Do you have any caching plugin on this site?

    November 2, 2020 at 5:26 pm in reply to: some problems some questions ! php error, transactions don’t show up … #81804
    admin
    Keymaster

    This topic was set to resolved by you. If you are still having an issue please reply here.

    October 31, 2020 at 4:01 pm in reply to: Issue with Payment Gateway Bundle, Stripe SCA #81800
    admin
    Keymaster

    @Juan, that message in the admin is only for the admin user (so it won’t impact anything else). If all the gateway options are unchecked, then the plugin shows that message.

    Go to the “Gateway Settings” tab in the payment gateway bundle settings. Do you have the following checkbox enabled?

    
    Use Stripe Checkout SCA
    
    October 29, 2020 at 4:34 pm in reply to: WordPress 5.5 Release / Update #81793
    admin
    Keymaster

    WordPress 5.5.2 was released on October 29, 2020. All plugins remain compatible.

  • Author
    Posts
Viewing 15 posts - 301 through 315 (of 14,824 total)
← 1 2 3 … 20 21 22 … 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