Ok, until the developer of this mod comes back with a fix...anyone having the issue of the attachments list disappearing in the UserCP and still wants the who downloaded link to appear where it was apparently intended to be inserted lol ...
In product-psi_whodownloaded.xml at approx line 206 find and delete:
PHP Code:
if (isset($vbulletin->templatecache['modifyattachmentsbit']))
{
$find_string = compile_template('<phrase 1="$post[counter]">$vbphrase[x_downloads]</phrase>');
$add_string = compile_template('<if condition="$post[\'counter\'] > 0"> - <a href="#" onclick="whodownloaded($post[attachmentid]); return false;">$vbphrase[psiwd_who_downloaded]</a></if>');
$vbulletin->templatecache['modifyattachmentsbit'] = str_replace($find_string, $find_string . $add_string, $vbulletin->templatecache['headinclude']);
}
Save and upload through the Add/Import Products with Allow Overwrite set to yes
Then to have the link appear in the attachments list, in vb admin go to Style Manager>>All Style Options>>Modify User Option Templates>>modifyattachmentsbit
Find:
PHP Code:
<div class="smallfont">$post[size], <phrase 1="$post[counter]">$vbphrase[x_downloads]</phrase>
Add after:
PHP Code:
<if condition="$post['counter'] > 0"> - <a href="#" onclick="whodownloaded($post[attachmentid]); return false;">$vbphrase[psiwd_who_downloaded]</a></if>
I think possibly there was a conflict with the headinclude part as I saw that was repeated over and over again in the source code where the attachments list *should* have been with this bug...hope this helps a few ppl
I should note that I use 3.8.4 and this works for me to fix the issue for now, any other version try at own risk....make sure to backup first though LOL