|
well Reviewpost by default only has one insert but up to 3 small pics so user's can provide multiple views of an object.
You could edit the uploadphoto template and remove this if you only want 1 but that would be for everyone
change this
<td class="{$Style['tddetails']}"><input type="file" name="theimage[]"><br />
<input type="file" name="theimage[]"><br />
<input type="file" name="theimage[]"></td>
to this
<td class="{$Style['tddetails']}"><input type="file" name="theimage[]"></td>
|