How to Remove Preferred Delivery Date frommy Debutify Theme

Topic summary

A user seeks to remove the “Preferred Delivery Date” field appearing on their Debutify theme cart page.

Initial Solutions Offered:

  • Multiple developers provided CSS code snippets to hide the delivery date element by adding custom code to theme.css or theme.liquid files
  • These solutions involved targeting specific CSS classes like .dbtfy-delivery-date with display: none properties

Simpler Solution Identified:

  • A later participant pointed out that this feature can be disabled directly through the theme customization interface
  • Navigate to: Theme Customization → Debutify Paid Widgets → Find “Delivery date” checkbox → Uncheck it
  • This built-in option eliminates the need for any custom code modifications

Resolution:
The discussion concluded with confirmation that the no-code approach works effectively, saving time and avoiding potential theme file complications. The thread demonstrates a common pattern where complex technical solutions were initially proposed for what turned out to be a simple settings adjustment.

Summarized with AI on November 1. AI used: claude-sonnet-4-5-20250929.

Hello @Ant10
Go to online store ----> themes ----> actions ----> edit code---->theme.css
add this code at the end of the file.

.dbtfy-delivery-date .input-group .input-group__field {
display: none;
}
label {
display: none;
}
.dbtfy-delivery-date.drawer__inner-section {
display: none;
}

result

If this was helpful, hit the like button and accept the solution.
Thanks