Hi Jon.
I tried installing this. I'm running x-cart 4.2.1 and had a few problems / questions.
Code:
OPEN skin1/modules/Manufacturers/manufacturers.tpl
Find:
<tr>
<td colspan="2"> </td>
<td><input type="submit" value=" {$lng.lbl_save|strip_tags:false|escape} "{$disabled} /></td>
</tr>
Couldn't find this exact string. So I added the code before:
Code:
<tr>
<td colspan="2"> </td>
<td class="SubmitBox"><input type="submit" value=" {$lng.lbl_save|strip_tags:false|escape} "{$disabled} /></td>
</tr>
Presume this was correct?
Code:
OPEN admin/pages.php
Find:
func_header_location("pages.php?pageid=$pageid");
This string occurs twice. Which occurance are we looking for?
Thanks, Steve.