Forum Replies Created
-
AuthorPosts
-
amin007Participant
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
amin007Participantdone.
amin007ParticipantYou 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/
amin007Participantin 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
amin007ParticipantLOL… 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>';
?>amin007ParticipantYou 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.
amin007ParticipantHmmm… I haven’t had any complaint about the Ajax based one. I can always add this functionality to the normal one I guess.
amin007ParticipantBasically 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)
amin007ParticipantYou 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.
amin007ParticipantI 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.
amin007ParticipantIt’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.
amin007Participantyeah 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
amin007ParticipantI 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.
amin007ParticipantGlad 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 #16685amin007ParticipantThanks Greg, will do
-
AuthorPosts