Frontend links to file uploads missing in shortcode output
-
When I “display all contact form submission data on front end side of website” with the shortcode
[acf7db ...]
there are only empty table cells instead of the download links to the form submitted file uploads.The problem is a esc_url() on HTML code instead of just the URL in
/advanced-cf7-db/public/partials/vsz_acf7_db_shortcode_display_front.php
on lines 253 and 257.
Both lines are
$html .= '<td data-head="'.vsz_cf7_admin_get_field_name($v2).'">'. esc_url($_value).'</td>';
but should be
$html .= '<td data-head="'.vsz_cf7_admin_get_field_name($v2).'">'.$_value.'</td>';
In the backend, the links to the upload are shown and working, see different output code after line 406 in
/advanced-cf7-db/admin/partials/contact_form_listing.php
- The topic ‘Frontend links to file uploads missing in shortcode output’ is closed to new replies.