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 - 1 through 15 (of 5,807 total)
1 2 3 … 386 387 388 →
  • Author
    Posts
  • November 5, 2011 at 7:09 am in reply to: Customers are not being moved from prospects to customers list in aWeber. #38160
    amin007
    Participant

    Each time a member subscribes it will add that customer to that particular list for that membership level (there is no such concept as upgrade the AWeber account).

    August 17, 2011 at 1:21 am in reply to: Does WP emember work with Optimize press? #35580
    amin007
    Participant

    There is no reason for it to not work. As long as the developer coded the theme following WordPress’s coding guideline there should be no conflict (this goes for any theme or plugin).

    With that said, I am pretty sure I have heard at least one user who used optimize press theme with eMember.

    August 17, 2011 at 1:16 am in reply to: Excel Spreadsheet #35574
    amin007
    Participant

    eMember does not care about what you place on a WordPress post or page. It will protect that whole post or page if you tell it. So all you need to do is find a solution that lets you place an editable excel spreadsheet on a post or page and then protect that page using eMember. eMember will make sure that only members can view that page and interact with whatever you have on the page.

    August 17, 2011 at 1:13 am in reply to: New Paypal Account for Subscription payments and Registration Email #35570
    amin007
    Participant

    “I am aware that with subscriptions the purchaser must have a paypal account” – I don’t think this is true anymore. PayPal allows customers to subscribe just using a credit card (without having to have a PayPal account.. you might need to have a business account for this though). Anyway, this shouldn’t matter as the registration email gets sent the email address the customer enters on PayPal while filling out the payment form (there is an email address field).

    If you run a test transaction with the debug option enabled then it will be easy to see what is going wrong. This post will explain what to do:

    https://support.tipsandtricks-hq.com/forums/topic/how-and-when-to-enable-debug-and-what-does-it-do

    After the test run share the content of the “subscription_handle_debug” file.

    August 17, 2011 at 1:09 am in reply to: I need something for a shoe site #35568
    amin007
    Participant

    eStore is designed for digital products so it will always be biased for digital products. With that said, a lot of people still use this plugin to sell physical products successfully and they love it. My recommendation would be for you to setup a product or two and test a few things out. If it doesn’t look like it will meet your needs then go with a solution that is designed to handle the situation you are in.

    August 17, 2011 at 1:00 am in reply to: eStore stops displaying #35527
    amin007
    Participant

    eStore never talks directly to your server. It uses PHP so it is likely that some PHP functionality on your virtual server is not working correctly. What version of PHP are you running?

    August 17, 2011 at 12:51 am in reply to: Password Recovery #35564
    amin007
    Participant

    You shouldn’t have to edit the plugin to make it work. So the best course of action is to get a fresh build of the plugin from here and work on finding the real issue:

    Request Product Update or Fresh Download Link(s)

    After you update the plugin with a fresh build try the user signup and forgot password options and report.

    August 17, 2011 at 12:48 am in reply to: I had a problem with Spanish characters in WP PDF Stamper #35562
    amin007
    Participant

    Please check the “Use UTF-8 Font” option from the PDF Stamper settings and try another stamp and let me know how you go.

    August 17, 2011 at 12:44 am in reply to: Login to sub-domain #35560
    amin007
    Participant

    You can check the “Enable After login Redirection” option from the eMember settings to enable the after login redirection feature then specify the URL to be redirected to in the membership level.

    Regarding the multi-site login. That’s not how normal plugins work in a standard WordPress multi-site install. You install one plugin but each individual sub-site will have it’s own database set and settings and admin area so the admin of the sub-sites can configure each plugin the way he wants for his sub-site. For example you can create a standard WordPress user on “site1.example.com” but this user will not be visible in “site2.example.com”. Does that make sense?

    August 17, 2011 at 12:32 am in reply to: Horizontal (One Line) Login Form #34927
    amin007
    Participant

    It is safe to keep the action parameter empty. It will simply POST the data on this same page and the plugin will pick up from there.

    August 16, 2011 at 11:57 pm in reply to: Product name in cyrillic (product name getting messed up in the email) #35511
    amin007
    Participant

    I think I know what the issue is… when PayPal send the notification it sends the data using a different charset than UTF-8 so those names gets messed up. Not sure if you can set anything in your PayPal profile to tell PayPal to send the data back using UTF-8 format.

    Anyway, here is a quick fix for you that should work:

    1. Correct the product name in the email

    Open the “paypal.php” file and search for the following line of code:

    $cart_item_data_name = trim($current_cart_item['item_name']); //$retrieved_product->name;

    Once you find it change it to the following:

    $cart_item_data_name = $retrieved_product->name;

    2. Correct the product name on the Thank You page

    Open the “eStore_includes3.php” file and search for the following line of code:

    $cart_item_data_name = trim($current_cart_item['item_name']); //$retrieved_product->name;

    Once you find it change it to the following:

    $cart_item_data_name = $retrieved_product->name;

    This should make it to where it will use the product name from the database rather than the value sent from PayPal.

    August 16, 2011 at 11:51 pm in reply to: price on fancy subscription widget does not show up #35543
    amin007
    Participant

    When I go to the URL you specified in the above post I do no see any product display that uses fancy5. I only see fancy2 product displays. What am I missing?

    August 16, 2011 at 11:18 pm in reply to: Hyper link Title #35537
    amin007
    Participant

    Specify the target page URL value for a product in the following field of that product and eStore will automatically link the tittle to that page when using a fancy display:

    Product Page URL

    August 16, 2011 at 11:16 pm in reply to: Need to make login form smaller – re-align info #35534
    amin007
    Participant

    You will need to change the CSS of the following ID from the “eMember_style.css” file:

    #wp_emember_loginForm

    I don’t think you will be able to change lines using CSS though as they are in a different row of the table.

    The following function in the “eMember_auth_utils.php” file has the PHP code that outputs the login form:

    show_login_form

    August 16, 2011 at 10:54 pm in reply to: New affiliate trying to sign up and logged in as another affiliate! #35532
    amin007
    Participant

    Please post a link to your affiliate sign up page so I can check the login. Does it only happen to this one affiliate or everyone else?

  • Author
    Posts
Viewing 15 posts - 1 through 15 (of 5,807 total)
1 2 3 … 386 387 388 →

Forum Related

  • Forum Home
  • Forum Search
  • 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
  • WP PDF Stamper Documentation
  • WP Photo Seller 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
  • WP Photo Seller Video Tutorial

Our Other Plugins

  • WP Express Checkout
  • Stripe Payments Plugin
  • Simple Download Monitor

Copyright © 2023 | Tips and Tricks HQ