• HI,

    great plugin.
    Is there a way to show the path (URL) to uploaded files instead of encrypted filename (e.g. 55448555b27005450ce14173b1c3cc).

    thx and bg

Viewing 1 replies (of 1 total)
  • If you haven’t already seen it, there’s a fix to this in a thread started by: Crescendo
    Subject: Uploaded files trough CF7 not working anymore in ACF7DB

    Edit the file in the below location:
    /wp-content/plugins/advanced-cf7-db/includes/vsz-cf7-db-function.php

    Add the below to Line 132:
    if (gettype($v) == ‘array’) {$v = reset($v);}

    So lines Lines 131, 132 and 133 should be:
    //Get file name
    if (gettype($v) == ‘array’) { $v = reset($v); }
    $file_name = basename($v);

Viewing 1 replies (of 1 total)
  • The topic ‘uploaded files (IMages) appears as text instead of path’ is closed to new replies.