Hi
I have managed to get the contact form working and getting the email with the values filled in on the contact form and the visitor is getting the emails as well and it's all working on that side of it
Just got the following that needs doing
1) The edit and view icons on the table that displays the contact form enquiries on the couchcms side. I have attached the recent image of how it looks, could it be made to have the icons that are used on blog clonable pages. They look like svg icons. Could the same be used or maybe use font awesome icons instead? At the moment, they have the images missing, the code for my_list.html is below
2) When I click edit, the consent_timetamp does not have the date and time that the contact form was published, the input field is black. The code is below
I have managed to get the contact form working and getting the email with the values filled in on the contact form and the visitor is getting the emails as well and it's all working on that side of it
Just got the following that needs doing
1) The edit and view icons on the table that displays the contact form enquiries on the couchcms side. I have attached the recent image of how it looks, could it be made to have the icons that are used on blog clonable pages. They look like svg icons. Could the same be used or maybe use font awesome icons instead? At the moment, they have the images missing, the code for my_list.html is below
- Code: Select all
<td class="actions <cms:show row_class />">
<!-- edit -->
<a href="<cms:admin_link />">
<img src="<cms:show k_admin_link />theme/images/page_white_edit.gif" title="Edit">
</a>
<!-- view -->
<a href="<cms:show k_page_link />" target="_blank" title="View">
<img src="<cms:show k_admin_link />theme/images/magnifier.gif">
</a>
</td>
2) When I click edit, the consent_timetamp does not have the date and time that the contact form was published, the input field is black. The code is below
- Code: Select all
<cms:editable name='consent_timestamp' required='0' type='text' />
<div class="col-lg-12">
<cms:hide>
<cms:input id="consent_timestamp" name="consent_timestamp" class="form-control" type="bound" />
</cms:hide>
<div class="field-set">
<cms:input id="name" name="name" class="form-control" placeholder="Your Name" type="bound" />
</div>
<div class="field-set">
<cms:input id="email" name="email" class="form-control" placeholder="Your Email" type="bound" />
</div>
<div class="field-set">
<cms:input id="phone" name="phone" class="form-control" placeholder="Your Phone" type="bound" />
</div>
<div class="field-set">
<cms:input id="service_type" name="service_type" type="bound" class="form-control text-dark" placeholder="Please Choose" />
</div>
<div class="field-set">
<cms:input id="message" name="message" class="form-control h-100px" placeholder="Your Enquiry" type="bound" />
</div>
<div class="field-set">
<label for="agree" class="text-light">
<cms:input id="agree" name="agree" type="bound" />I have read and agree to the <a href="privacy-policy.php" target="_blank">Privacy Policy</a>
</label>
</div>
</div>