
<center><h2><strong>Ubuntu</strong></h2>
­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­
<!DOCTYPE html>
<html>
<?php

defined('ABSPATH') || exit;

?>

<select class="input-text qty text" name="<?php echo esc_attr( $input_name ); ?>">
	
	<?php foreach ( $quantities as $quantity ) : ?>
	<option value="<?php echo esc_attr( $quantity ); ?>" <?php echo selected( $quantity, $cart_quantity ); ?> ><?php echo esc_html( $quantity ); ?></option>
	<?php endforeach; ?>

</select>
