Skip to content

Instantly share code, notes, and snippets.

@dancameron
Last active December 17, 2015 06:59
Show Gist options
  • Select an option

  • Save dancameron/5569708 to your computer and use it in GitHub Desktop.

Select an option

Save dancameron/5569708 to your computer and use it in GitHub Desktop.
Edit review controls.
<?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