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

Peter

  • Profile
  • Topics Started
  • Replies Created
  • Engagements
  • Favorites

Forum Replies Created

Viewing 15 posts - 3,271 through 3,285 (of 3,409 total)
← 1 2 3 … 218 219 220 … 226 227 228 →
  • Author
    Posts
  • December 4, 2011 at 8:55 am in reply to: customize quantity box #39157
    Peter
    Member

    Hi,

    Might get a bit messy adjusting the quantity and other boxes etc.

    However if you want to have a go, I suggest you use firebug to see which CSS element you should be modifying.

    This might help if you’re not familiar with firebug:

    http://www.tipsandtricks-hq.com/how-to-use-firebug-to-modify-your-wordpress-sites-css-video-tutorial-4037

    For instance when I took a quick look at your scenario I reckon if you add stuff like the following in your custom css file you might be on the right path.

    .eStore-button-form input {

    width: auto;

    }

    .eStore-product-fancy4 .eStore-button-form input[type=”text”] {

    width: 30px;

    height: 40px;

    }

    The above is just to get you started and you might have to experiment further.

    Also remember to utilise the wp_eStore_custom_style.css file for any css changes you make for eStore stuff.

    December 4, 2011 at 8:29 am in reply to: Member List Not Displaying #39162
    Peter
    Member

    Hi,

    Sounds strange indeed. Might be a conflict somewhere with your theme or another plugin.

    Please perform the following tests:

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

    December 4, 2011 at 1:25 am in reply to: Registration Form Questions #39142
    Peter
    Member

    Hi,

    If you’re new to eMember I highly recommend trying to take the time to go through our documentation which can be found here:

    http://www.tipsandtricks-hq.com/wordpress-membership/

    Now to your questions:

    1) I need to add check boxes that are required to be checked in order to allow a person to register. I am using the “custom field” settings to do this. Problem is I need to make add a hyperlink near the check box that can direct a user to the T&C page.

    That’s not possible via the settings as far as I’m aware. You can however add your link when you create your own “registration” page, ie, the page where you put the registration shortcode [wp_eMember_registration]. Then you can put a link at the bottom of your page going to your T&C page.

    2) Is there any code that allows members to register for a membership using Gravity Forms plugin w/member registration plugin vice your form? That would make my life much easier.

    I’m not sure I understand your question. As far as Im aware, Gravity forms are supported:

    https://support.tipsandtricks-hq.com/forums/topic/gravity-forms-and-emember

    3) How do I allow the plugin to automatically generate a password and email it to the new member so I can verify they are real?

    The plugin does not automatically generate passwords but it can send emails to subscribers to confirm their email address. See the following tweaks:

    WP eMember Miscellaneous Tweaks

    4) How do I add the recaptcha to the registration form?

    You can add a captcha by configuring the items in your eMember settings. Just click on the reCaptcha link. You will also need to get your API keys by following the link on that page.

    December 4, 2011 at 12:52 am in reply to: How to Use the ‘Buy Now’ or ‘Subscribe’ button on a Standalone HTML page #39122
    Peter
    Member

    Hi Taika,

    Regarding your question – “is this possible with forced Agree to terms function?”

    Yes it is possible but remember that you are not using the button on a WordPress page as intended so to add this you will need to manually add JavaScript code. If you are not a coder then I won’t recommend using this option. Be sure to include the javascript code and references with your button.

    For instance as well as the code for your button you will need to also put things like the following:

    <script type='text/javascript' src='http://www.yourdomain.com/wp-includes/js/jquery/jquery.js?ver=1.6.1'></script>

    <script type='text/javascript' src='http://www.yourdomain.com/wp-content/plugins/wp-cart-for-digital-products/lib/jquery.external.lib.js?ver=3.2.1'></script>

    <p>

    <script type="text/javascript">

    jQuery.noConflict();

    jQuery(document).ready(function($) {

    $(function() {

    $('.t_and_c_error').hide();

    $(".t-and-c").click(function(){

    if($(".t-and-c").is(':checked'))

    {

    $.cookie("eStore_submit_payment","true",{path: '/'});

    $('.t_and_c_error').hide();

    }

    else

    {

    $.cookie("eStore_submit_payment","false",{path: '/'});

    }

    });

    $(".eStore_paypal_checkout_button").click(function(e){

    if(!$(".t-and-c").is(':checked'))

    {

    $('.t_and_c_error').show();

    e.preventDefault();

    }

    });

    $(".eStore_buy_now_button").click(function(e){

    if(!$(".t-and-c").is(':checked'))

    {

    $('.t_and_c_error').show();

    e.preventDefault();

    }

    });

    $(".eStore_subscribe_button").click(function(e){

    if(!$(".t-and-c").is(':checked'))

    {

    $('.t_and_c_error').show();

    e.preventDefault();

    }

    });

    $(".free_download_submit").click(function(e) {

    // Non-Ajax free download squeeze page button clicked...

    if(!$(".t-and-c").is(':checked')) {

    // T&C checkbox not set...

    $('.t_and_c_error').show(); // Show error message.

    e.preventDefault(); // Prevent default action.

    }

    });

    });

    });

    </script>

    </p>

    Regarding the IP address inclusion – You don’t need to put it there. It will still work if you remove the whole tag with id “eStore_custom_values”. I believe this is generated by the plugin itself and not strictly needed when talking to paypal because it is an “optional” field.

    Regarding your custom page template issue I don’t know the answer to that so might have to think about it and get back to you if I find a solution :)

    December 4, 2011 at 12:18 am in reply to: make all eStore customers basic members #39141
    Peter
    Member

    Hi Chris,

    Importing and exporting can be done easily via cpanel’s phpMyAdmin.

    Please see this video for exactly how to do this:

    http://www.tipsandtricks-hq.com/how-to-easily-import-or-export-any-of-your-wordpress-database-content-using-phpmyadmin-3415

    Regarding the membership login details, the following should explain your question:

    http://www.tipsandtricks-hq.com/wordpress-membership/wp-emember-and-wp-estore-integration-for-membership-payment-60

    December 3, 2011 at 5:37 am in reply to: How to Set up Download of a Free Product #39134
    Peter
    Member

    Hi kimmy,

    There is no need to put a signup form for your GetResponse list – the integration with eStore will take care of your list signups.

    GetResponse can’t generate and send the download link email – eStore will do that.

    Here is the flow of events of a typical eStore/autoresponder integration for your free download scenario:

    1) Visitor arrives on your website and sees a blog post or a message in your sidebar about a free download.

    2) They click on the link and get taken to a blog post (or a page) and in here you will have a squeeze form which they fill in with their details.

    (this page will contain the shortcode for the squeeze-form of your free product)

    3) An email is sent by eStore to your client with the download link

    4) Your client is automatically added to your GetResponse list (or, GetResponse may send an opt-in email to your client)

    If you want to know more about creating a squeeze form please see this:

    http://www.tipsandtricks-hq.com/ecommerce/how-to-make-a-squeeze-page-using-the-wordpress-estore-plugin-126

    December 3, 2011 at 4:28 am in reply to: How to Set up Download of a Free Product #39132
    Peter
    Member

    Hi kimmy,

    The download link is generated by and ultimately sent by the eStore plugin after a person has filled in the form of your squeeze page for example. (This is independent of your GetResponse list email)

    I’m assuming you’ve already configured your GetResponse details in your settings:

    http://www.tipsandtricks-hq.com/ecommerce/wp-estore-and-getresponse-integration-898

    Note: that eStore can automatically add people to your GetResponse list if you check the “Global GetResponse Integration” flag.

    December 3, 2011 at 3:59 am in reply to: How to Use the ‘Buy Now’ or ‘Subscribe’ button on a Standalone HTML page #39120
    Peter
    Member

    Following from admin’s comment here’s an example of what a single buy now button would like if you wanted to paste it in html:

    <object class=”eStore_button_object”><form action=”https://www.sandbox.paypal.com/cgi-bin/webscr&#8221; method=”post” onsubmit=”return ReadForm1(this, 2);”><input type=”hidden” name=”product_name_tmp1″ value=”test product” /><input type=”hidden” name=”price_tmp1″ value=”0.01″ /><input type=”hidden” name=”cmd” value=”_xclick” /><input type=”hidden” name=”charset” value=”utf-8″ /><input type=”hidden” name=”business” value=”test@gmail.com” /><input type=”hidden” name=”item_name” value=”test product” /><input type=”hidden” name=”amount” value=”0.01″ /><input type=”hidden” name=”currency_code” value=”USD” /><input type=”hidden” name=”item_number” value=”6″ /><input type=”hidden” name=”no_shipping” value=’1′ /><input type=”hidden” name=”notify_url” value=”http://www.yourdomain.com/wp/wp-content/plugins/wp-cart-for-digital-products/paypal.php&#8221; /><input type=”hidden” name=”return” value=”http://www.yourdomain.com/wp/thank-you/&#8221; /><input type=”hidden” name=”mrb” value=”3FWGC6LFTMTUG” /><input type=”hidden” name=”cbt” value=”” /><input type=”hidden” name=”page_style” value=”” /><input type=”hidden” name=”rm” value=”2″ /><input type=”hidden” name=”custom” value=”ip=215.43.60.237&subsc_ref=Premium” id=”eStore_custom_values” /><input type=”submit” class=”eStore_buy_now_button” value=”Buy Now” /></form></object>

    Note, as per admin’s suggestion above, you would extract your particular button code by viewing the source of the wordpress post page where you initially put the button.

    December 2, 2011 at 10:29 pm in reply to: An error message when editing the General Settings -> Aff Center Index Page Opti #39118
    Peter
    Member

    Hi,

    Can you please elaborate which “text” you are changing and where exactly are you doing the changes?

    December 2, 2011 at 10:26 pm in reply to: wp emember login text #17945
    Peter
    Member

    Hi kay,

    The file is definitely part of the eMember plugin. Just look in the folder located at:

    …./wp-content/plugins/wp-eMember

    But as mentioned by admin earlier, the other change (which is easier) is to do the mods to the eng.php file which is located in:

    …./wp-content/plugins/wp-eMember/lang

    But I see you’ve solved your problem anyway so that’s great news!

    December 2, 2011 at 12:18 pm in reply to: WordPress Permalinks as Digital Products #37125
    Peter
    Member

    Hi,

    Which version of eStore have you got?

    What sort of file is the downloadable item?

    Have you tested a manually generated encrypted link using the “Admin Functions” facility and if so do you still get an error?

    December 2, 2011 at 11:51 am in reply to: Adding Product Description to Categories Style 3? #38722
    Peter
    Member

    Hi Louis,

    Thanks for pointing that out.

    I looked at my modified file from where I copied the code from and it correctly displays the missing quotation signs. The html formatting in this forum has somehow screwed up the syntax. (perhaps I should’ve used the ‘code’ tag)

    If you want me to send you text file with my original code let me know. I know that it definitely works because i tested it.

    December 1, 2011 at 11:43 pm in reply to: eMember registration field issue #39090
    Peter
    Member

    Yeah I agree it is strange given that you are saying that this site is the same as the other sites.

    Therefore this is why I think you should load a fresh version of the plugin as stated in my previous post and see if this fixes your problem.

    December 1, 2011 at 11:40 pm in reply to: Add Subscriptions to Cart #39097
    Peter
    Member

    Hi, No as far as I’m aware you can’t make the subscription functionality into an “add to cart” type of functionality. You can possibly create a range of subscription products which are effectively a bundled variation of your other products.

    Check the variation control documentation:

    https://www.tipsandtricks-hq.com/ecommerce/how-to-use-variation-control-in-wordpress-estore-plugin-345

    December 1, 2011 at 11:35 pm in reply to: eMember registration field issue #39088
    Peter
    Member

    Hi,

    Hmm ok….so if the sites are virtually exactly the same then assuming you’ve checked the veracity of your configuration, the next thing I can suggest is to deactivate and delete this plugin and load a fresh copy:

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

  • Author
    Posts
Viewing 15 posts - 3,271 through 3,285 (of 3,409 total)
← 1 2 3 … 218 219 220 … 226 227 228 →

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