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 - 5,521 through 5,535 (of 5,807 total)
← 1 2 3 … 368 369 370 … 386 387 388 →
  • Author
    Posts
  • December 18, 2009 at 5:24 am in reply to: Squeeze Pages Questions #16772
    amin007
    Participant

    Okies, I will add the inventory control option for squeeze page over the weekend and give you an udpate. Chase me up if I forget :)

    December 18, 2009 at 5:22 am in reply to: Manual Checkout email problem #16448
    amin007
    Participant

    done.

    December 18, 2009 at 5:21 am in reply to: How to Put Captcha in Manual Checkout #16788
    amin007
    Participant

    You can modify the “eStore_payment_submission.php” file and put in a captcha form if you like. You can also add any form verification that you like. You will need to modify the code in the function called “submit_to_manual” on that file.

    The captcha site explains all the things you need to place a captca form http://www.captcha.net/

    December 17, 2009 at 8:40 am in reply to: Automatic redirect after "add to cart" #16783
    amin007
    Participant

    in the “wp_shopping_cart.php” file search for the following line of code

    if ($_POST['addcart'])

    inside that if statement you can add your condition and put the redirection code so it redirects to the target page.

    Once you do this it will work similar to what it doesn’t when you add a product from my products page

    http://www.tipsandtricks-hq.com/products

    December 17, 2009 at 8:34 am in reply to: AdSense Plugin #16739
    amin007
    Participant

    LOL… I am the opposite of cocky :) (you should have figured it out from my other forum posts and comments reply)

    Anyway, Really sorry for the misunderstanding… my apologies. When I read your reply I thought you were gonna go to the actual post of the “Adsense Plugin” and leave a comment (that’s how I support that plugin so my brain naturally assumed it):

    WordPress Plugin for Simple Google Adsense Insertion/Integration

    Here is why I insist on using the correct forum thread or blog post to reply to queries:

    1) Other people in that forum can get easily confused thinking how this topic is relevant.

    2) When you post the question/issue in the right forum thread then other people who have the same issue can easily find the solution from your replies.

    3) I get hundreds of forum posts/comments/contact form submisstions/emails etc every day. I need to work very efficiently to make sure I can reply to these queries. Having everything organized help me stay efficient.

    With that said, here is the answer to your original question:

    There are a few ways to do this… just use normal HTML div to center a block and then use the PHP code to output the Ad.

    or use something like the following:

    <?php
    echo '<p style="text-align: center;">';
    echo show_ad_camp_1();
    echo '</p>';
    ?>

    December 17, 2009 at 8:10 am in reply to: Removing "+" from Drop-down Menu #16777
    amin007
    Participant

    You will have to modify the corresponding javascript that reads the “+” and tallies up the total.

    My question is if you want the price to tally up then wouldn’t it make more sense to have the “+” there so your customers can easily understand that choosing that option is not free.

    Note that it won’t put the “+” if an increment value is not specified for a variation.

    December 17, 2009 at 8:06 am in reply to: Squeeze Pages Questions #16770
    amin007
    Participant

    Hmmm… I haven’t had any complaint about the Ajax based one. I can always add this functionality to the normal one I guess.

    December 17, 2009 at 7:45 am in reply to: Add to cart button too big – CSS Issue #16760
    amin007
    Participant

    Basically in your themes CSS it’s specifying the width of the “input” field… I don’t know why but some themes do this. I prefer to leave it so the width can be the width of the image.

    Anyway, Here are a few options for you:

    Option 1:

    If you look at the CSS file of your theme you will see the following bit of code:

    #page_left input,

    #page_left select,

    #page_left textarea

    {

    border:0px;

    padding:6px;

    width:550px;

    background: transparent url(../../images/10/sub_back.png) top center repeat-x;

    border:1px solid #ededed;

    font-family: ‘Lucida Grande’, ‘Lucida Sans Unicode’, Tahoma, Arial, san-serif;

    }

    Get rid of this line that is specifying the width of the button and it should work:

    width:550px;

    Option 2:

    The other option is to introduce the following CSS in the “wp_eStore_style.css” file (this file is located inside the WP eStore plugin directory):

    .eStore_button
    {
    width:84px;
    height:50px;
    }

    you will have to adjust the width and height according to the image you are using for the “Add to Cart” button.

    Option 3:

    Get a theme that doesn’t have crappy CSS :) (just kidding)

    December 17, 2009 at 2:49 am in reply to: "add to cart" adds same price for different items" #16763
    amin007
    Participant

    You seem to have exactly the same name for both the products “Adjustable Putter Insert”. So the shopping cart is thinking it’s the same product and is multiplying the quantity rather than adding another product. Different products should have different names… try making the product names unique.

    December 17, 2009 at 2:46 am in reply to: Squeeze Pages Questions #16765
    amin007
    Participant

    I have a feeling you are not using the New Ajax Based Squeeze page form

    How to Make a Squeeze Page Using the WordPress eStore Plugin

    Please use this one as I am dumping the old one (it still exists for backwards compatibility). Going forward I will only enhance the Ajax based one as it’s cooler and causes less problem.

    The AWeber integration works exactly the same way like selling an individual product so you should be able to specify a listname that will be used just for this product.

    As for the stock control for free downloads… free download kind of implies free/unlimited so I didn’t do the stock control part here but I do understand your scenerio. I should be able to implement the stock control option for free download very easily so I will add it for you.

    December 17, 2009 at 2:35 am in reply to: Add to cart button too big – CSS Issue #16758
    amin007
    Participant

    It’s CSS issue with your theme. Please post a link to that page so I can take a look at the HTML and CSS and see what soft of workaround it needs.

    December 17, 2009 at 2:32 am in reply to: New Functionality for WP E Store #16522
    amin007
    Participant

    yeah I just had a look.. it looks good. I wanted to do something similar a while back but then figured that WordPress.org is gonna do it eventually like they did for Premium themes. Anyway, it’s not overly complex to design/create a simpler version of the site in question. It will be a big project though so the main question is.. will it pay off for the time and effort that will be spent developing it?

    I do however need a similar system for one of my other projects that I am aiming to do next year so there is a good chance I will end up developing it and then productize it :)

    December 16, 2009 at 11:02 pm in reply to: Selective affiliate on per link basis. #16757
    amin007
    Participant

    I see what you are trying to do.. This should be doable with some custom tweaking. Basically, when you drop the cookie you also need to store the URL of the landing page with it. This way when the customer goes to make a purchase you can look up and verify if the URL stored in the cookie matches the one the product is being purchased from. If it does then give commission else don’t. This is just a basic skeleton… ofcourse, you will have to make the code robust so if the affiliate sends traffic to multiple pages you store all the URLs of those pages so he can get the commission if people buy from these pages and stuff like that.

    December 16, 2009 at 10:02 pm in reply to: Cart not working on IIS with 404 handler for URLs #16753
    amin007
    Participant

    Glad to hear that you got it sorted but how does it work when you have the button on different pages? it always has to POST to that one page?

    December 16, 2009 at 8:31 am in reply to: wp_eMember_profile_edit_form fields not shown in form #16685
    amin007
    Participant

    Thanks Greg, will do

  • Author
    Posts
Viewing 15 posts - 5,521 through 5,535 (of 5,807 total)
← 1 2 3 … 368 369 370 … 386 387 388 →

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