form-row-wide Closes #3028.

This commit is contained in:
Mike Jolley 2013-04-29 15:51:17 +01:00
parent 28696d1c35
commit 62c38fb7eb
2 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@ global $woocommerce;
<?php if ( $checkout->enable_guest_checkout ) : ?>
<p class="form-row">
<p class="form-row form-row-wide">
<input class="input-checkbox" id="createaccount" <?php checked($checkout->get_value('createaccount'), true) ?> type="checkbox" name="createaccount" value="1" /> <label for="createaccount" class="checkbox"><?php _e( 'Create an account?', 'woocommerce' ); ?></label>
</p>

View File

@ -190,7 +190,7 @@ $available_methods = $woocommerce->shipping->get_available_shipping_methods();
<?php
$order_button_text = apply_filters('woocommerce_order_button_text', __( 'Place order', 'woocommerce' ));
echo apply_filters('woocommerce_order_button_html', '<input type="submit" class="button alt" name="woocommerce_checkout_place_order" id="place_order" value="' . $order_button_text . '" />' );
?>