Jump to content

Clarkey1891

Members
  • Posts

    4
  • Joined

  • Last visited

Profile Information

  • Gender
    Male

Recent Profile Visitors

885 profile views

Clarkey1891's Achievements

Newbie

Newbie (2/6)

3

Reputation

1

Community Answers

  1. @ Peter Knight sorry Peter I'm not getting any issues with the reports but I've also completed the verification process on the domain. @ Pierre-Luc Thanks, anything would be a great help
  2. Hi Pierre-Luc, First of all the module is working great for me at the moment. I haven't pushed it to hard yet but has done everything I've asked of it so far. I have hit a small issue with mailgun and their complaint system and API. If people didn't know. If an email recipient accidentally(or on purpose) clicks the "junk" mail button it sends a complaint to Mailgun and they then block you from sending mail to that address, unless you clear/delete the complaint through the API. As I'm somewhat new to web development, it's hard for me to understand how to even get started. I was wondering if you or anyone had plans to add a way to administer the complaints from this module? or to check for complaints and delete any that are there before sending the email? Cheers
  3. Worked out I had missed adding the following to the start of the code(little proud of myself) <link type='text/css' href='/wire/modules/Inputfield/InputfieldDatetime/timepicker/jquery-ui-timepicker-addon.css' rel='stylesheet' /> as for the stretch question I've worked out if I keep the time with the date tenants won't be forced to make a choice of what time they want a person to come out. So I've decided to make a selector input field for those times
  4. <link type='text/css' href='/wire/modules/Inputfield/InputfieldDatetime/InputfieldDatetime.css?v=103' rel='stylesheet' /> <link type='text/css' href='/wire/modules/Inputfield/InputfieldCheckboxes/InputfieldCheckboxes.css?v=100' rel='stylesheet' /> <link type='text/css' href='/wire/templates-admin/styles/inputfields.css' rel='stylesheet' /> <link type='text/css' href='/wire/templates-admin/styles/JqueryUI/JqueryUI.css' rel='stylesheet' /> <link type='text/css' href='/wire/modules/Jquery/JqueryWireTabs/JqueryWireTabs.css?v=103' rel='stylesheet' /> <script type='text/javascript' src='/wire/modules/Jquery/JqueryCore/JqueryCore.js?v=162'></script> <script type='text/javascript' src='/wire/modules/Jquery/JqueryUI/JqueryUI.js?v=180'></script> <script type='text/javascript' src='/wire/modules/Inputfield/InputfieldDatetime/InputfieldDatetime.js?v=103'></script> <script type='text/javascript' src='/wire/modules/Inputfield/InputfieldDatetime/timepicker/jquery-ui-timepicker-addon.js'></script> <?php // create a selctor for Date and time $field = $modules->get("InputfieldDatetime"); $field->label = "Preferred appointment day"; $field->attr("id+name","preferredday"); $field->required = 1; $field->datepicker = 1; // picker on Click $field->dateInputFormat = 'd/m/Y'; $field->timeInputFormat = 'g:ia'; $form->append($field); ?> sorry in advance as I'm on into my second week of learning PHP and PW if my coding is bad to say the least The issue I'm have is that with the above code I'm getting "Millisecond", "Microsecond","Time Zone" and "Now" Button and would like to not show these option. also as a stretch and pushing the limits of asking for help changing the time to be a select box from 7:00AM to 4:00PM broken into half hour blocks I've attached the whole file if it helps. Finally I have to say it may be only a week or 2 but the support and information I have been able to find in these forums has made the process this far an easy ride Tenant Form.php
×
×
  • Create New...