Skip to content

Commit

Permalink
tweak product variation class names
Browse files Browse the repository at this point in the history
  • Loading branch information
kilbot committed Apr 10, 2024
1 parent 9f16d45 commit 49f9351
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions includes/Admin/Products/Single_Product.php
Original file line number Diff line number Diff line change
Expand Up @@ -155,9 +155,9 @@ public function save_product_variation_barcode_field( $variation_id ): void {
* @param WP_Post $variation Post data.
*/
public function add_variations_store_price_fields( $loop, $variation_data, $variation ): void {
echo '<p class="form-row form-row-full options" style="border:0;padding-bottom:0;margin-bottom:0;"><label>';
echo '<p class="form-row form-row-full"><label>';
echo __( 'Enable POS specific prices.', 'woocommerce-pos' ) . ' ' . $this->pro_link;
echo '<input type="checkbox" class="checkbox" disabled />';
echo '<input style="vertical-align:middle;margin:0 5px 0 0 !important;" type="checkbox" class="checkbox" disabled />';
echo '</label></p>';
}

Expand All @@ -169,9 +169,9 @@ public function add_variations_store_price_fields( $loop, $variation_data, $vari
* @param WP_Post $variation Post data.
*/
public function add_variations_store_tax_fields( $loop, $variation_data, $variation ): void {
echo '<p class="form-row form-row-full options" style="border:0;padding-bottom:0;margin-bottom:0;"><label>';
echo '<p class="form-row form-row-full"><label>';
echo __( 'Enable POS specific taxes.', 'woocommerce-pos' ) . ' ' . $this->pro_link;
echo '<input type="checkbox" class="checkbox" disabled />';
echo '<input style="vertical-align:middle;margin:0 5px 0 0 !important;" type="checkbox" class="checkbox" disabled />';
echo '</label></p>';
}

Expand Down

0 comments on commit 49f9351

Please sign in to comment.