Merge branch 'master' of github.com:woothemes/woocommerce
This commit is contained in:
commit
19b4319ad4
File diff suppressed because one or more lines are too long
|
@ -320,6 +320,7 @@
|
||||||
.wc-terms-and-conditions, .terms {
|
.wc-terms-and-conditions, .terms {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
padding: 0 1em 0 0;
|
padding: 0 1em 0 0;
|
||||||
|
float:left;
|
||||||
}
|
}
|
||||||
|
|
||||||
#place_order {
|
#place_order {
|
||||||
|
|
|
@ -73,14 +73,14 @@ if ( ! defined( 'ABSPATH' ) ) {
|
||||||
<div class="form-row">
|
<div class="form-row">
|
||||||
<input type="hidden" name="woocommerce_pay" value="1" />
|
<input type="hidden" name="woocommerce_pay" value="1" />
|
||||||
|
|
||||||
|
<?php wc_get_template( 'checkout/terms.php' ); ?>
|
||||||
|
|
||||||
<?php do_action( 'woocommerce_pay_order_before_submit' ); ?>
|
<?php do_action( 'woocommerce_pay_order_before_submit' ); ?>
|
||||||
|
|
||||||
<?php echo apply_filters( 'woocommerce_pay_order_button_html', '<input type="submit" class="button alt" id="place_order" value="' . esc_attr( $order_button_text ) . '" data-value="' . esc_attr( $order_button_text ) . '" />' ); ?>
|
<?php echo apply_filters( 'woocommerce_pay_order_button_html', '<input type="submit" class="button alt" id="place_order" value="' . esc_attr( $order_button_text ) . '" data-value="' . esc_attr( $order_button_text ) . '" />' ); ?>
|
||||||
|
|
||||||
<?php do_action( 'woocommerce_pay_order_after_submit' ); ?>
|
<?php do_action( 'woocommerce_pay_order_after_submit' ); ?>
|
||||||
|
|
||||||
<?php wc_get_template( 'checkout/terms.php' ); ?>
|
|
||||||
|
|
||||||
<?php wp_nonce_field( 'woocommerce-pay' ); ?>
|
<?php wp_nonce_field( 'woocommerce-pay' ); ?>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -42,14 +42,14 @@ if ( ! is_ajax() ) {
|
||||||
<br/><input type="submit" class="button alt" name="woocommerce_checkout_update_totals" value="<?php esc_attr_e( 'Update totals', 'woocommerce' ); ?>" />
|
<br/><input type="submit" class="button alt" name="woocommerce_checkout_update_totals" value="<?php esc_attr_e( 'Update totals', 'woocommerce' ); ?>" />
|
||||||
</noscript>
|
</noscript>
|
||||||
|
|
||||||
|
<?php wc_get_template( 'checkout/terms.php' ); ?>
|
||||||
|
|
||||||
<?php do_action( 'woocommerce_review_order_before_submit' ); ?>
|
<?php do_action( 'woocommerce_review_order_before_submit' ); ?>
|
||||||
|
|
||||||
<?php echo apply_filters( 'woocommerce_order_button_html', '<input type="submit" class="button alt" name="woocommerce_checkout_place_order" id="place_order" value="' . esc_attr( $order_button_text ) . '" data-value="' . esc_attr( $order_button_text ) . '" />' ); ?>
|
<?php echo apply_filters( 'woocommerce_order_button_html', '<input type="submit" class="button alt" name="woocommerce_checkout_place_order" id="place_order" value="' . esc_attr( $order_button_text ) . '" data-value="' . esc_attr( $order_button_text ) . '" />' ); ?>
|
||||||
|
|
||||||
<?php do_action( 'woocommerce_review_order_after_submit' ); ?>
|
<?php do_action( 'woocommerce_review_order_after_submit' ); ?>
|
||||||
|
|
||||||
<?php wc_get_template( 'checkout/terms.php' ); ?>
|
|
||||||
|
|
||||||
<?php wp_nonce_field( 'woocommerce-process_checkout' ); ?>
|
<?php wp_nonce_field( 'woocommerce-process_checkout' ); ?>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue