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 - 1 through 15 (of 144 total)
1 2 3 … 8 9 10 →
  • Author
    Posts
  • March 9, 2026 at 5:41 pm in reply to: How can I display a product with only Add To Cart Button and Price,? #85226
    admin
    Keymaster

    The [wp_eStore_add_to_cart id=1] shortcode is the way to go, but you will need to enter any details you want to display (for example, the price) directly in the editor.

    For example, you can enter the following in your page editor to test it out:

    Price: $16.00
    [wp_eStore_add_to_cart id=1]

    You can format the price text using the standard WordPress block editor.

    If you use a product display shortcode that automatically shows certain product details, it may not be suitable for cases where you want full control of the layout. The idea with this shortcode is that you add any text, images, or other content you want on the page to create the display layout, and the shortcode simply generates the “Add to Cart” button.

    March 7, 2026 at 5:16 pm in reply to: How can I display a product with only Add To Cart Button and Price,? #85224
    admin
    Keymaster

    The following standard shortcode can be used to display only the Add to Cart button without any additional HTML. This allows you to place any content you like above or below the button and format the surrounding elements however you prefer:

    [wp_eStore_add_to_cart id=1]

    If you are using one of the fancy product display templates, the product name can be hidden with a small CSS tweak. If you can send me a link to the page where the product is displayed, I can inspect it in my browser and suggest the exact CSS needed to hide the product name.

    You may want to try one of the existing stylish product display templates that is closer to what you are looking for, and then hide specific sections with CSS if needed:

    Stylish Product Display Options for WP eStore

    September 22, 2025 at 6:58 pm in reply to: Payment Gateway Bundle Stripe Checkout SCA:Shipping Address For Just 4 Countries #85199
    admin
    Keymaster

    Just adding the soluition to this forum post also.

    Stripe requires that you specify a list of countries where shipping will be allowed at checkout:

    https://docs.stripe.com/payments/collect-addresses?payment-ui=stripe-hosted#collect-a-shipping-address

    Our plugin provides a filter hook that lets you override the default list and define the countries you want to allow.

    You can add the following custom code to your theme’s functions.php file or to a custom plugin:

    
    function my_allowed_countries_list( $allowed_countries ){
        //TODO - Add two-letter ISO country codes separated by comma.
        $allowed_countries = array( 'US', 'CA', 'GB', 'AU' );
        return $allowed_countries;
    }
    add_filter('wppg_stripe_shipping_allowed_countries', 'my_allowed_countries_list');
    

    This will replace the default allowed country list with the one you specify.

    July 26, 2025 at 7:11 pm in reply to: Payment Gateway Bundle Stripe Checkout SCA post-payment error #85180
    admin
    Keymaster

    Please share a link to the page where the “Add to Cart” or “Buy Now” button is located. I need to inspect the page to check if any caching issue might be affecting it.

    Also, please send a screenshot of the “Developers” menu from your Stripe account. I need to verify the API version currently set. You can reply to the email we sent and share the screenshot privately.

    Next, reset the debug log files for both the WP eStore plugin and the Payment Gateway Bundle addon. After that, perform a test transaction and share the updated debug log files from both plugins. This will give me a complete overview of what’s happening. Feel free to send the logs via email as well.

    July 22, 2025 at 7:37 pm in reply to: Payment Gateway Bundle Stripe Checkout SCA post-payment error #85177
    admin
    Keymaster

    Hi, I’ve replied to your email but just in case it ended up in your spam folder, I’m copying the message here as well.

    ——–
    Looks like your server’s firewall or security rule is blocking the post payment redirection after Stripe checkout via our plugin.

    Please contact your hosting provider and ask them to temporarily disable ModSecurity for your domain, or whitelist the specific rule that is being triggered during the Stripe checkout.

    You can send them this message:

    “We are encountering a Not Acceptable! error from ModSecurity when attempting to complete a Stripe checkout using the WP Payment Gateway Bundle addon. Can you please review your ModSecurity logs and either disable ModSecurity for this domain or whitelist the rule being triggered? The request is being blocked incorrectly by ModSecurity.”

    April 20, 2025 at 8:30 pm in reply to: Display PayPal result code on “error” redirect page? #85160
    admin
    Keymaster

    Hi, Use the support contact form on our site to get in touch.

    Customer Support

    April 17, 2025 at 9:21 pm in reply to: Display PayPal result code on “error” redirect page? #85151
    admin
    Keymaster

    The log data you shared looks good—there was no issue with that transaction. The PayPal Standard checkout you’re using doesn’t redirect to any error URL by default.

    Could you please share a screenshot of the error URL you’re referring to? That would help me understand the issue better with a visual reference.

    This is most likely a site-specific issue related to your server environment or a potential conflict.

    The first thing to check is whether you have any caching enabled on your site. If caching is active, it’s possible that users are being shown a cached page containing an error message from a previous failed transaction.

    The e-commerce functionality needs a dynamic page being shown to the visitors (so they are seeing the latest values/data of a product). A cached page simply shows a static cached page (our plugin doesn’t get a chance to apply the latest calculation and price to that page). When a cached page is being shown, the user is not actually being shown the updated price values of a product. That’s what causes the issue with e-commerce type setup because an e-commerce type site is not the same as a blog type site. Caching is normally fine with a Blog type site where there is no need to show updated content.

    If your caching solution has an option to disable caching when a cookie is present, then I can tell you which cookie to set in the configuration of your caching solution or plugin. Otherwise, you can ask them if you can exclude the page containing the products to be excluded from caching.

    Exclude the pages (containing the payment buttons and the thank you page) from caching.

    February 25, 2025 at 12:54 am in reply to: Best method to get and set eMember member custom fields? #85143
    admin
    Keymaster

    No, the update should be done by using database query. We don’t advertise any feature like that so there is no method for it out of the box.

    February 21, 2025 at 10:15 pm in reply to: Best method to get and set eMember member custom fields? #85140
    admin
    Keymaster

    Here is an example code showing how you can access the custom fields of Form builder addon.

    
    $member_id = "123";
    $field_key = 'kursleiter';
    $custom_value = wp_emember_get_user_details_by_id($field_key, $member_id);
    echo "Value of Kursleiter: " . $custom_value ;
    
    January 7, 2025 at 10:57 pm in reply to: Collect Customer Input field label #85123
    admin
    Keymaster

    Unfortunately, the label cannot be sent to PayPal due to a character limit imposed by PayPal. As our plugin does not meet the specific requirements of your project, we kindly recommend reaching out to us via the contact form on our website. We will be happy to process a refund for our plugin so you can explore alternative solutions for your site.

    December 18, 2024 at 10:24 pm in reply to: Collect Customer Input field label #85118
    admin
    Keymaster

    Hi, The label can’t go there since PayPal has character limits for that field. We keep that field for value only so that the character limit is not exceeded.

    You can view the details of custom fields, including the label, within the Customers menu of the plugin. The “Viewing the Customer Input Data” section on the addon’s page includes a screenshot illustrating how it should appear:

    WP eStore Addon – Collect Customer Input in the Shopping Cart

    October 12, 2024 at 8:13 pm in reply to: Paypal requires login or sign up #85090
    admin
    Keymaster

    Can you post a URL of the page containing the button so I can inspect the behavior from my browser?

    October 12, 2024 at 8:12 pm in reply to: Paypal Smart Payment Buttons & Venmo #85089
    admin
    Keymaster

    PayPal deprecated the smart payments button a long time ago.

    May 27, 2024 at 2:18 am in reply to: WP Affiliate login and refferer ID also html code create issue #85066
    admin
    Keymaster

    There might be a conflict with the theme or another plugin on this site. I need more visual details to identify the potential issue. I will send you an email so you can reply with the necessary visual details.

    April 22, 2024 at 9:20 pm in reply to: member login not possible #85058
    admin
    Keymaster

    Hi, Something would have to have changed in your site/server for it to start behaving differently.

    We don’t have any way to control your site/server environment. So it is about finding out which aspect of the environment is causing the unexpected behavior.

    Can you please tick/check the following checkbox from the settings menu of the plugin so the inline login option is not used (that one might be conflicting on the site):

    Disable Inline Login Widget

    Have you done the following test already?

    Test to (How to) Identify a Conflicting Theme or Plugin

  • Author
    Posts
Viewing 15 posts - 1 through 15 (of 144 total)
1 2 3 … 8 9 10 →

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 © 2026 | Tips and Tricks HQ