Last active
December 17, 2015 06:59
-
-
Save dancameron/5569708 to your computer and use it in GitHub Desktop.
Edit review controls.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| remove_all_filters( 'group_buying_template_checkout/review-controls.php' ); | |
| add_filter( 'group_buying_template_checkout/review-controls.php', 'new_paypal_controls' ); | |
| function new_paypal_controls() { | |
| echo '<div class="checkout-controls"> | |
| <input type="hidden" name="" value="'.Group_Buying_Offsite_Processors::CHECKOUT_ACTION.'"> | |
| <input class="form-submit submit checkout_next_step" type="submit" value="'.gb__( 'NEW!' ).'" name="gb_checkout_button" /> | |
| </div>'; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment