Hello to all WCDDL users,
Here is a simple technique to generate the downloads keywords.
this isn't included in the default script.

Open download.php

Search for:
PHP Code: 
    if(!$download $core->fetchDownload())
        die(
"404 - Not found!"); 
you can find this in the starting of the file.

add after:
PHP Code: 
$keywords str_replace(" ",",",$download['title']); 
Search for:
PHP Code: 
<meta name="keywords" content=" Your Previous Keywords" /> 
Replace the Line with:
PHP Code: 
<?php
echo "<meta name=\"keywords\" content=\"".$keywords.", Your More Default Keywords \" />";
?>
Your Keywords for the downloads page will now be generated like this and will be different for every download.


Thanks
Regards
deAthbLisS Reviewed by deAthbLisS on . Generate WCDDL Downloads Keyword Hello to all WCDDL users, Here is a simple technique to generate the downloads keywords. this isn't included in the default script. Open download.php Search for: if(!$download = $core->fetchDownload()) die("404 - Not found!");you can find this in the starting of the file. Rating: 5