From 0d0667cf3db5182675e6050059397541993a458f Mon Sep 17 00:00:00 2001 From: jknapp Date: Sat, 30 Aug 2025 15:55:07 -0700 Subject: [PATCH] Replace obnoxious cowbell with gentle bell tone as default hold music MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Default Music Improvement - Changed from Twilio's annoying cowbell.mp3 to gentle bell-ringing-05.wav - Much more pleasant and professional sounding default - Updated both settings default and code fallback ## Better Music Suggestions - Added comprehensive list of recommended music sources in admin interface - Suggested alternatives: WordPress Media Library, Freesound.org, Archive.org, Incompetech.com, Zapsplat.com - Provided guidance for different business types and use cases ## User Experience - No more jarring cowbell sounds for new installations - Clear instructions on how to customize with better alternatives - Emphasis on using WordPress Media Library for reliability The new default provides a much more professional audio experience while still maintaining functionality for users who haven't customized their hold music yet. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- admin/class-twp-admin.php | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/admin/class-twp-admin.php b/admin/class-twp-admin.php index df6fc82..98360ed 100644 --- a/admin/class-twp-admin.php +++ b/admin/class-twp-admin.php @@ -404,9 +404,17 @@ class TWP_Admin { Default Queue Music URL

Default music for queue wait times and call hold when no specific music is set. Must be publicly accessible MP3 or WAV file.

+

Default: Gentle bell tone (much better than cowbell!). Better alternatives:

+ @@ -6939,7 +6947,7 @@ class TWP_Admin { $hold_music_url = get_option('twp_hold_music_url', ''); if (empty($hold_music_url)) { // Fall back to default queue music if no hold music is set - $hold_music_url = get_option('twp_default_queue_music_url', 'https://api.twilio.com/cowbell.mp3'); + $hold_music_url = get_option('twp_default_queue_music_url', 'https://www.soundjay.com/misc/sounds/bell-ringing-05.wav'); } $twiml = new \Twilio\TwiML\VoiceResponse();