# This script ensures that "Home Delivery within Nairobi (1-3 Days)
" is always the first option displayed at checkout.
# It looks for the shipping method with the title "Home Delivery within Nairobi (1-3 Days)
" and moves it to the top of the list.
# Loop through all available shipping rates
Input.shipping_rates.each do |shipping_rate|
# Check if the shipping rate title is "Home Delivery within Nairobi (1-3 Days)
"
if shipping_rate.title.include?("Home Delivery within Nairobi (1-3 Days)
")
# Move this rate to the first position
Input.shipping_rates.unshift(Input.shipping_rates.delete(shipping_rate))
end
end
# Return the updated list of shipping rates
Output.shipping_rates = Input.shipping_rates