html - Add a Paypal button IMAGE to my custom PayPal checkout code? -
i have following code unlike code generated on paypal button generator, not show image button; text.
i'm not using hosted button solution, method supported, can't figure out how make button show image (preferably 'buy now') instead of plain text.
is there tag missed somewhere?
<form target="_blank" class="paypal-button" action="https://www.paypal.com/cgi-bin/webscr" method="post"> <input type="hidden" name="item_name_1" value="<?=$serverfulldesc?>"> <input type="hidden" name="amount_1" value="<?=$costmonth_step1?>"> <input type="hidden" name="quantity_1" value="1"> <input type="hidden" name="item_name_2"value="initial server build (one-time)"> <input type="hidden" name="amount_2" value="<?=$buildprice?>"> <input type="hidden" name="quantity_2" value="1"> <input type="hidden" name="item_name_3"value="<?=$maintplan?> - invoiced monthly"> <input type="hidden" name="amount_3" value="<?=$maintplanprice?>"> <input type="hidden" name="quantity_3" value="1"> <input type="hidden" name="amount" value="<?=$gtotalpayment?>"> <input value="buynow" name="button" type="hidden"> <input value="_cart" name="cmd" type="hidden"> <input name="upload" value="1" type="hidden"> <input value="<?=$currency?>" name="currency_code" type="hidden"> <input value="xxxxxxxxxxxx" name="business" type="hidden"> <input value="www" name="env" type="hidden"> <button class="paypal-button large" type="submit">buy now</button> </form>
the button buy has classes "paypal-button large" css paypal-button coming from? that's need.
Comments
Post a Comment