• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Znote image putting Help please!

negerhoran

New Member
Joined
Nov 18, 2013
Messages
41
Reaction score
1
Need help with to put images to the donations in the homepage Please help me im using Znote Page!
 
I don't think you can. Well, at least I myself don't think you can. I set up Znote before but you really don't have to put pictures of what you are offering up there. I think people will get the point when you say "Dragon Scale Legs". Just put the name of what your offering and change the description to what the Attack, Defense, and other attributes are so people will get an image of what it is haha. Hope this helped :D
 
Create a new folder in your website directory, e.g name it shop_items and download images (save as itemid.gif, e.g 2160.gif).

shop.php

Replace
PHP:
if ($config['shop']['showImage']) echo '<td><img src="http://'. $config['shop']['imageServer'] .'/'. $offers['itemid'] .'.'. $config['shop']['imageType'] .'" alt="img"></td>';
with
PHP:
if ($config['shop']['showImage']) echo '<td><img src="shop_items/'. $offers['itemid'] .'.gif" alt="img"></td>';
 
Images are showing properly here, you might have done something wrong.
 
i did this www/layout/images created a new folder with the name shop_items, then i did go in to shop.php changed from that text to that other one you told me then "saved" i downloaded the image in my disk changed the name to the id and ended with.gif ? something i did misst?
 
i did this www/layout/images created a new folder with the name shop_items, then i did go in to shop.php changed from that text to that other one you told me then "saved" i downloaded the image in my disk changed the name to the id and ended with.gif ? and draged it to the map "shop_items what did i miss?
 
So you created the folder in the images directory? If you did that, then you must change the path in shop.php

<img src="layout/images/shop_items/'. $offers['itemid'] .'.'. $config['shop']['imageType'] .'" alt="img">
 
im doing something wrong send me the whole text please i got this one now see where its wrong?

if ($config['shop']['showImage']) echo '<img src="uniserverz/www/layout/images/shop_items/'. $offers['itemid'] .'.'. $config['shop']['imageType'] .'" alt="img"
 
im doing something wrong send me the whole text please i got this one now see where its wrong?

if ($config['shop']['showImage']) echo '<img src="uniserverz/www/layout/images/shop_items/'. $offers['itemid'] .'.'. $config['shop']['imageType'] .'" alt="img"
Why did you change the path to uniserverz/www/layout/images/shop_items?
 
Back
Top