• 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!

Gesior Shop Item Image.

korff

New Member
Joined
Sep 11, 2009
Messages
78
Reaction score
3
itemssx.png

How I can fix that?
I already check I have the item photos on my item image folder.
 
They should be in the \item_images\ folder, have .gif extension and name as the ID of the offer in the database (not itemid!)
 
I Use gesior 0.3.6, Where is this folder, item_images... The only I know is \htdocs\images\items , the folder that the item photo is correctly.
 
I know I must edit in shopsystem.php But I dont know How^^

$main_content .= '<tr bgcolor="#F1E0C6"><td align="center"><img src="item_images/'.$item['id'].'.gif"></td><td><b>'.$item['name'].'</b> ('.$item['points'].' points)<br />'.$item['description'].'</td><td align="center">';

Can you give me a help, is this?
in "<img src="item_images/'.$item['id']..."
 
Last edited:
PHP:
$main_content .= '<tr bgcolor="#F1E0C6"><td align="center"><img src="images/items/'.$item['itemid1'].'.gif"></td><td><b>'.$item['name'].'</b>  ('.$item['points'].' points)<br />'.$item['description'].'</td><td align="center">';
 
Back
Top