Hello,
I have managed to bring in the URL field using the contact form 7 dynamic fields plugin. I have added the url using:
[dynamichidden url "CF7_URL"]
I have also seen this code to make the field clickable in the database:
<script type="text/javascript">
(function ($) {
$('td[title="url"] div').each(
function () {
$(this).html('<a href="http://' + $(this).html() + '">' + $(this).html() + '</a>');
})
})(jQuery);
</script>
My question is, how can that code be implemented with the Contact Form 7 fields?
Thanks
Damien
https://wordpress.org/plugins/contact-form-7-to-database-extension/