Change Payment Page to Remove Dropdown and Add Nice PayPal Button
Has anyone changed the payment page that links to PayPal to make it look better? I think this page looks horrible and it is not a good taste to leave in someone's mouth as they are about to make a payment. I am looking to do two (what I think should be) simple things, but when I change anything on this page, it completely stops the linkage to PayPal. Here are the two things I would like to accomplish:
1. Remove the payment dropdown without screwing up the connection to PayPal.
2. Remove the payment button and replace it with a nice PayPal button that users will recognize.
I am not sure what other templates I would need to edit, but one of the main templates that houses this function is themes/vantage/order-select.php
This file includes the following code:
PHP Code:
<div id="main">
<div class="section-head">
<h1><?php _e( 'Order Summary', APP_TD ); ?></h1>
</div>
<div class="order-summary">
<?php the_order_summary(); ?>
<form action="<?php echo appthemes_get_step_url(); ?>" method="POST">
<p><?php _e( 'Please select a method for processing your payment:', APP_TD ); ?></p>
<?php va_list_gateway_dropdown(); ?>
<input type="submit" value="<?php _e( 'Submit', APP_TD ); ?>">
</form>
</div>
</div>
Any help is greatly appreciated!