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 - 796 through 810 (of 14,824 total)
← 1 2 3 … 53 54 55 … 987 988 989 →
  • Author
    Posts
  • September 6, 2019 at 1:59 am in reply to: eMember – Recover from misunderstanding of product #79891
    admin
    Keymaster

    The setup you have now looks fine to me.

    The following process is automated. When the payment for the NEW level comes in, the get put into that level (no manual intervention is needed for it):

    “When the members are renewing, they will get put into this new level which gives them access until the expiry date of the following year.”

    Only do multiple membership level option, if you want them to have access to BOTH Member and Member (2020) levels. I don’t really think you need that since the “Member (2020)” level can be configured to give access to everything from the previous year and this new year. So at any given time, a member is always paying for the Latest year and they get put into that years membership. You update the payment buttons on the renewal page when a year is over so when they are renewing, they get put into the new year’s membership level. You can create as many payment buttons as you need to cover the different scenarios.

    September 6, 2019 at 1:50 am in reply to: Simple Cart not redirecting to PayPal using Safari on iPhone #79888
    admin
    Keymaster

    Very strange. When I do the test on my site using a safari browser with iPhone, it works fine. What happens if you do the test by temporary deactivating the plugins (just to make sure something is not conflicting with that browser):

    https://support.tipsandtricks-hq.com/forums/topic/test-to-identy-a-conflicting-theme-or-plugin

    September 5, 2019 at 2:26 am in reply to: eStore – product display width #75399
    admin
    Keymaster

    Below is a tweak that should make the description area longer and show more description text. You can play around with the number value to adjust things (it should give you some idea):

    .eStore-fancy5 {
    height: 700px !important;
    }
    .eStore-fancy5-body {
    max-height: 500px !important;
    }
    .eStore-fancy5-description {
    max-height: 400px !important;
    }

    You can also get us to do a custom job for you and create a template that is according to a specification that you give us.

    September 5, 2019 at 2:05 am in reply to: WP eStore ability to connect to API #79878
    admin
    Keymaster

    1) The $cart_items array will contain minimal important info like the product ID, name, quantity ordered etc. The best way is to use the Product ID and then do a query to the product’s database to retrieve the full details of that product.

    Write to a log file so you can see all the data that is getting passed to that function then you will have a good idea. But below is a little code sample that maybe helpful:

    foreach ($cart_items as $current_item) {

    $product_id = $item;

    //Use this product ID to retrieve the full product data from the database.

    $product_data = $wpdb->get_row(“SELECT * FROM $products_table_name WHERE id = ‘$product_id'”, OBJECT);

    $name = $product_data->name;//

    //TODO – do something

    }

    2) Action hooks don’t have a return value.

    September 5, 2019 at 12:27 am in reply to: eStore – product display width #75397
    admin
    Keymaster

    Please share a URL of your site so I can inspect it and give you the CSS tweak.

    September 5, 2019 at 12:26 am in reply to: eMember – Recover from misunderstanding of product #79889
    admin
    Keymaster

    I am not fully clear as to what kind of setup you want. If you want the membership to expire on a specific date, then you need to pick that option in the membership level.

    Then for next year, you can create a NEW membership level that will expire on the specific date of the following year. Create a payment button for this new level. When the members are renewing, they will get put into this new level which gives them access until the expiry date of the following year. You can then repeat this process once every year.

    September 4, 2019 at 7:32 am in reply to: Simple Cart not redirecting to PayPal using Safari on iPhone #79885
    admin
    Keymaster

    There seems to be a popup happening there when you try to click on the checkout button. So it looks like the HTML code is messed up on that page. It is likely you have entered your own HTML code (or table) in that page and some HTML code is broken. Now that is having an impact on this.

    Please do the following test so we can isolate the issue:

    #1) Create a brand new test page on your site

    #2) Put the add to cart button shortcode and shopping cart shortcode on this test page. Don’t put anything other than the button and the cart.

    #3) Test the checkout from this page. Does it show the same behavior or does it work fine?

    I have personally tested the custom input addon using my iPhone just now and it works so I know that the issue you are seeing is specific to your site. So I want to identify which element is causing the issue.

    September 4, 2019 at 7:24 am in reply to: How to have failed user payments go to expired not inactive #79874
    admin
    Keymaster

    I want to investigate the user not being able to log in with the “inactive” status first. I have sent you an email to get access so I can check this.

    September 4, 2019 at 7:22 am in reply to: eStore – Squeeze Form reloads to top of page #79820
    admin
    Keymaster

    I have updated the plugin’s code so it uses an anchor (to send the visitor there) after an squeeze form submission. I have sent you an update via email.

    September 4, 2019 at 12:53 am in reply to: Simple Cart not redirecting to PayPal using Safari on iPhone #79883
    admin
    Keymaster

    Can you please share the URL of the page so I can take a look using my phone?

    September 3, 2019 at 12:25 am in reply to: Sca ready message from stripe for stripe Payments plugin #79858
    admin
    Keymaster

    We have a SCA ready test version ready that you can download from here:

    https://s-plugins.com/testing-version/

    We will have an update for it within the next few days.

    September 1, 2019 at 3:43 am in reply to: Register and payment errors #79880
    admin
    Keymaster

    This is an issue related to the PHP version. Please load a fresh new copy of the plugin:

    https://support.tipsandtricks-hq.com/forums/topic/re-install-or-load-a-fresh-build-of-the-plugins

    Let me know if you still see the same error after that.

    September 1, 2019 at 3:34 am in reply to: 414 Request-URI Too Large when checking out with PayPal #79832
    admin
    Keymaster

    I couldn’t find any gallery on that URL.

    However, the error you mentioned is a restriction from your hosting. So can you please request them to see if they can increase that limit so the error doesn’t occur.

    Adding 25 different items to the cart doesn’t sound normal to me. Maybe you want to offer a “buy complete gallery” feature like the following:

    http://photography-solutions.tipsandtricks-hq.com/sell-complete-photo-gallery/

    September 1, 2019 at 3:29 am in reply to: WP eStore ability to connect to API #79876
    admin
    Keymaster

    The following action hook is a good one to use if you want to create your own custom little plugin that will do all the custom things on your end after a transaction has been processed by eStore:

    eStore_product_database_updated_after_payment

    It will pass the full IPN data and the cart items (from the transaction).

    Take a look at the following free addon’s code. It should give you some good idea in terms of how you can use that above mentioned hook and create your own little custom plugin:

    https://www.tipsandtricks-hq.com/ecommerce/wp-estore-post-payment-actions-addon-1691

    September 1, 2019 at 3:25 am in reply to: eStore – product display width #75395
    admin
    Keymaster

    Yes that can be done but you would need to have a bit of CSS knowledge for it. How long (in pixels) do you want to make them?

  • Author
    Posts
Viewing 15 posts - 796 through 810 (of 14,824 total)
← 1 2 3 … 53 54 55 … 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