Hello,
I have searched the forum and have found loads of useful posts on postioning google adsense. However, i havnt foound one for the uploader. I have adverts on theme.html, these appear on most pages, however i would like one for the uploader only, (postioned below the upload button).
What file and where do i edit?
Thanks,
The upload form doesn't have a template of its own, so if the overall template (themes/yourtheme/template.html) doesn't give you enough flexibility to add a site-wide adsense block, you'll have to edit coppermine's core code to have adsense appear on the upload form. As there is little textual content on the upload screen, the text ads served by google won't be very relevant and therefor won't bring you much benefit. However, if you must have this feature, edit upload.php, find// Create the submit button and close the form.
echo <<<EOT
<tr>
<td colspan="2" align="center" class="tablef">
<input type="submit" value="{$button_value}" class="button" />
</td>
</tr>
EOT;
and replace with// Create the submit button and close the form.
echo <<<EOT
<tr>
<td colspan="2" align="center" class="tablef">
<input type="submit" value="{$button_value}" class="button" />
</td>
</tr>
<tr>
<td colspan="2" align="center" class="tablef">
<!-- your adsense code goes here -->
</td>
</tr>
EOT;
Thanks,
[sarcasm] It's always a pleasure having the privilege to support you. [/sarcasm]
Don't hurt your fingers by typing a bit more, like "works as expected, please mark as "solved" ::).
Well, marking as solved then.
Your overwhelming feedback is the reason that makes supporters do their unpaid work here. :-X
well, i havnt tried it yet, so i dont know. ::)