Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
wp-content/plugins/woocommerce/templates/global/quantity-input.php - this template renders an input field
Copy to wp-content/themes/theme/woocommerce/global/quantity-input.php and change the markup as you need.
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
?>
<div class="quantity">
<input type="number" step="<?php echo esc_attr( $step ); ?>" min="<?php echo esc_attr( $min_value ); ?>" max="<?php echo esc_attr( $max_value ); ?>" name="<?php echo esc_attr( $input_name ); ?>" value="<?php echo esc_attr( $input_value ); ?>" title="<?php echo esc_attr_x( 'Qty', 'Product quantity input tooltip', 'woocommerce' ) ?>" class="input-text qty text" size="4" pattern="<?php echo esc_attr( $pattern ); ?>" inputmode="<?php echo esc_attr( $inputmode ); ?>" />
</div>
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question