Results 1 to 10 of 14

Hybrid View

  1. #1
    Join Date
    Aug 2010
    Location
    Israel
    Posts
    285
    Plugin Contributions
    0

    Default Re: Make subject field optional on contact_us

    Quote Originally Posted by carlwhat View Post
    what version of ZC are you running?

    at some point, perhaps 1.5.4 or 1.5.5, the logging of failed sending of emails improved dramatically.

    are there any logs in your log directory?
    I use 1.5.4
    Did not check logs because it works well before I changed the code...

  2. #2
    Join Date
    Jul 2012
    Posts
    16,817
    Plugin Contributions
    17

    Default Re: Make subject field optional on contact_us

    Quote Originally Posted by gunni View Post
    I use 1.5.4
    Did not check logs because it works well before I changed the code...
    The code "change" simply prevented the display of the fact that the subject was blank. It did not allow the subject to be blank. Code like that is found higher up in an if statement. Something like
    Code:
     if (!empty($subject) && !empty($body) && etc... ){
     // process code
    } else {
     if (empty($subject)) {
     // display empty subject error message
     }
     if (empty($body)) {
     // display empty body error message
     }
    While there are differences in that template it would appear that the same logic is applied as the base install. Just has more fields.
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

 

 

Similar Threads

  1. v150 How to make registration Salutation field optional?
    By scott_ease in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 23 Jul 2016, 03:11 AM
  2. Make an attribute optional
    By aprilfloyd in forum General Questions
    Replies: 1
    Last Post: 27 Oct 2011, 03:35 PM
  3. Make birthdates optional?
    By lifeforce in forum Managing Customers and Orders
    Replies: 2
    Last Post: 5 May 2008, 06:30 PM
  4. Add subject field to contact us
    By high2K in forum General Questions
    Replies: 0
    Last Post: 19 Jun 2007, 04:17 PM
  5. Help with contact_us -- customized subject field
    By MichellyAqua12 in forum All Other Contributions/Addons
    Replies: 6
    Last Post: 29 Mar 2007, 01:46 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg