hi can you guys help me to put random wallpapers in the front page instead of the latest wallpapers?
thanks
hi can you guys help me to put random wallpapers in the front page instead of the latest wallpapers?
thanks
Hi!
In index.inc.php you will see a line like this:
$items = $DB->getAll("SELECT * FROM ".DB_PREFIX."items a, ".DB_PREFIX."users_items b WHERE a.id=b.item_id $filter order by created DESC limit ".(ITEMS_PER_PAGE*($page-1)).",".ITEMS_PER_PAGE);
replace it with one like this:
$items = $DB->getAll("SELECT * FROM ".DB_PREFIX."items a, ".DB_PREFIX."users_items b WHERE a.id=b.item_id $filter order by RAND() limit ".ITEMS_PER_PAGE);
Thankssssssssssssssssssssssssssss!!!!!!!!!
one more thing:
Is there a way to also put Google AD Sense ads in the right side of the website (below the login box)?
Hi!
Yes is possible.
You can do this manually editing theme files.
Also can be made modifications in script but this is not for free.
If you do not know what to edit and where send us a message and we will help you.
Edit the template file "right.tpl" and add your ad code there.
Paste your code above these lines of code:
{else}
<div class="headingstxt">account options</div>
<ul class="side-panel">
Thanks
any demo for the modification
You must log in to post.