Thread: Mys 1.3.4 User Shops
View Single Post
  #11  
Old 03-30-2018, 09:55 AM
Dinocanid's Avatar
Dinocanid Dinocanid is offline
Member
 
Join Date: Aug 2016
Location: Maryland, USA
Posts: 516
Gender: Unknown/Other
Credits: 63,594
Dinocanid is on a distinguished road
Default

It might be an issue with the code in shopcpview. You can see if changing the following helps:
HTML Code:
<input type='text' class='form-control' placeholder='NPC image url' value='{$shop->npc_url}' style='width:50%; name='image' id='image'>
HTML Code:
<input type='text' class='form-control' placeholder='NPC image url' value='{$shop->npc_url}' style='width:50%;' name='image' id='image'>
(Added a missing single quotes behind the width)

For the sell code not appearing, I think it's because you placed it inside of the "freeze" function, so you'll only see it on the same page you would freeze the pet. Putting it in "public function manage" will make it show along with everything else, or you could make a new public function.
__________________
Reply With Quote