Last active
June 16, 2021 08:53
-
-
Save Redolance/e70ed0862bc57fb9315c9eaff1414151 to your computer and use it in GitHub Desktop.
Woocommerce Turn Quantity Input to select box
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
** source : https://www.cloudways.com/blog/change-display-quantity-select-box-in-woocommerce/ | |
*/ | |
function woocommerce_quantity_input($data = null) { | |
global $product; | |
if (!$data) { | |
$defaults = array( | |
'input_name' => 'quantity', | |
'input_value' => '1', | |
'max_value' => apply_filters( 'woocommerce_quantity_input_max', '', $product ), | |
'min_value' => apply_filters( 'woocommerce_quantity_input_min', '', $product ), | |
'step' => apply_filters( 'woocommerce_quantity_input_step', '1', $product ), | |
'style' => apply_filters( 'woocommerce_quantity_style', 'float:left;', $product ) | |
); | |
} else { | |
$defaults = array( | |
'input_name' => $data['input_name'], | |
'input_value' => $data['input_value'], | |
'step' => apply_filters( 'cw_woocommerce_quantity_input_step', '1', $product ), | |
'max_value' => apply_filters( 'cw_woocommerce_quantity_input_max', '', $product ), | |
'min_value' => apply_filters( 'cw_woocommerce_quantity_input_min', '', $product ), | |
'style' => apply_filters( 'cw_woocommerce_quantity_style', 'float:left;', $product ) | |
); | |
} | |
if ( ! empty( $defaults['min_value'] ) ) | |
$min = $defaults['min_value']; | |
else $min = 1; | |
if ( ! empty( $defaults['max_value'] ) ) | |
$max = $defaults['max_value']; | |
else $max = 15; | |
if ( ! empty( $defaults['step'] ) ) | |
$step = $defaults['step']; | |
else $step = 1; | |
$options = ''; | |
for ( $count = $min; $count <= $max; $count = $count+$step ) { | |
$selected = $count === $defaults['input_value'] ? ' selected' : ''; | |
$options .= '<option value="' . $count . '"'.$selected.'>' . $count . '</option>'; | |
} | |
echo '<div class="cw_quantity_select" style="' . $defaults['style'] . '"><select name="' . esc_attr( $defaults['input_name'] ) . '" title="' . _x( 'Qty', 'Product Description', 'woocommerce' ) . '" class="cw_qty">' . $options . '</select></div>'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment