01-04-2023, 10:47 PM
Open item.tpl and locate
and replace with
Next open up languages/EN/messages.php
Find code
Bellow add
Code:
<!-- IF B_LOGGED_IN -->
<a href="{SITEURL}item_watch.php?{WATCH_VAR}={ID}">{WATCH_STRING}</a>
<!-- ELSE -->
<a href="{SITEURL}user_login.php?">{L_5202}</a>
<!-- ENDIF -->
and replace with
Code:
<!-- IF B_LOGGED_IN -->
<!-- IF WATCH_VAR eq 'add' -->
<a href="{SITEURL}item_watch.php?{WATCH_VAR}={ID}">{WATCH_STRING}</a>
<!-- ELSE -->
<a href="{SITEURL}item_watch.php?={ID}">{L_001A}</a>
<!-- ENDIF -->
<!-- ELSE -->
<a href="{SITEURL}user_login.php?">{L_5202}</a>
<!-- ENDIF -->
Next open up languages/EN/messages.php
Find code
Code:
$MSG['001'] = "New user registration";
Bellow add
Code:
$MSG['001A'] = "Item is in your watch list";