Forum for discussing general topics related to Couch.
3 posts Page 1 of 1
Hi, really enjoying CouchCMS so far but the activation emails for registering users is proving problematic, they don't like my mail server for some reason plus they aren't necessary for the website I'm building. I would try and fix it but every time I mess with the code something terrible happens, so I just want to ask an expert how to remove this feature? Thanks for your time.
Maybe you can make them initially active by setting current time instead of zeroes in the 'create' form -
Code: Select all
// before - 
k_publish_date = '0000-00-00 00:00:00'

// after -
k_publish_date = "<cms:date format='Y-m-d H:i:s'/>"
Join COUCH:TALK channel here https://t.me/couchcms_chat
Ryazania — a framework to boost productivity with Add-ons viewtopic.php?f=2&t=13475
Support my efforts to help the community https://boosty.to/trendo/donate
trendoman wrote: Maybe you can make them initially active by setting current time instead of zeroes in the 'create' form -
Code: Select all
// before - 
k_publish_date = '0000-00-00 00:00:00'

// after -
k_publish_date = "<cms:date format='Y-m-d H:i:s'/>"



Excellent stuff again my friend, you've been a big help
3 posts Page 1 of 1