Status
Not open for further replies.

deAthbLisS

Active Member
1,393
2009
61
0
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:
    if(!$download = $core->fetchDownload())
        die("404 - Not found!");
you can find this in the starting of the file.

add after:
PHP:
$keywords = str_replace(" ",",",$download['title']);
Search for:
PHP:
<meta name="keywords" content=" Your Previous Keywords" />
Replace the Line with:
PHP:
<?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.
[SLIDE]http://screensnapr.com/e/CIxmaN.png[/SLIDE]

Thanks
Regards
 
4 comments
Status
Not open for further replies.
Back
Top