CheckBox to ship-to-different-address-checkbox
-
please, I see that many issues have problems with checkbox position to send product to different address in checkout page. Could this be corrected this way, instead of always using css to fix the position?
/*before*/ <h3 id="ship-to-different-address"> <label for="ship-to-different-address-checkbox" class="checkbox"><?php _e( 'Ship to a different address?', 'woocommerce' ); ?></label> <input id="ship-to-different-address-checkbox" class="input-checkbox" <?php checked( $ship_to_different_address, 1 ); ?> type="checkbox" name="ship_to_different_address" value="1" />
/*After <input id="ship-to-different-address-checkbox" is inside <label for="ship-to-different-address-checkbox"*/ <h3 id="ship-to-different-address"> <label for="ship-to-different-address-checkbox" class="checkbox"><?php _e( 'Ship to a different address?', 'woocommerce' ); ?> <input id="ship-to-different-address-checkbox" class="input-checkbox" <?php checked( $ship_to_different_address, 1 ); ?> type="checkbox" name="ship_to_different_address" value="1" /></label>
Viewing 11 replies - 1 through 11 (of 11 total)
Viewing 11 replies - 1 through 11 (of 11 total)
- The topic ‘CheckBox to ship-to-different-address-checkbox’ is closed to new replies.