Buy me a coffee

Minimum quantity set at 5 instead of 1

#1. All Products
You can use this code to Website Tools > Code Injection > Footer

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
    $('div.product-quantity-input input').attr('min','5');
  $('div.product-quantity-input input').attr('value','5');
});
</script>

Minimum Quantity Set At 5 Instead Of 1 1 Min

Result

Minimum Quantity Set At 5 Instead Of 1 2 Min

#2. Specific Product
You can edit Additional Info

Minimum Quantity Set At 5 Instead Of 1 3 Min

Add a Code Block

Minimum Quantity Set At 5 Instead Of 1 4 Min

Paste the code

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
    $('div.product-quantity-input input').attr('min','5');
  $('div.product-quantity-input input').attr('value','5');
});
</script>

Minimum Quantity Set At 5 Instead Of 1 5 Min

#3. Products belong Specific Tag/Category
First, you need to assign a tag: five quantity for these products

Minimum Quantity Set At 5 Instead Of 1 6 Min

Next, use this code to Code Injection > Footer

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
    $('.tag-five-quantity div.product-quantity-input input').attr('min','5');
  $('.tag-five-quantity div.product-quantity-input input').attr('value','5');
});
</script>

Minimum Quantity Set At 5 Instead Of 17 Min