L_MARK_FORUMS_READ
The prefix L_
indicates it's text from the active language pack. You can search forMARK_FORUMS_READ
in any language pack, in the English pack around line 426 of /language/en/common.php you'll find:
Code: Select all
'MARK_FORUMS_READ' => 'Mark forums read',
./ext/caforum/language/language/en/lang.php
and add your modified language keysCode: Select all
<!-- IF L_REG_COND -->
<dl><dd><strong>{L_REG_COND}</strong></dd></dl>
<!-- ENDIF -->
Code: Select all
<!-- IF L_REG_COND -->
<dl><dd><strong>{L_REG_COND}</strong></dd></dl>
<!-- ELSE -->
<dl><dd><strong>YOUR TEXT</strong></dd></dl>
<!-- ENDIF -->
YOUR TEXT
change it to {L_YOUR_KEY}
Yes my friend, I know that if I change the activation method that particular configuration should be removed. I'll experiment with the Mannix_ method sometime tomorrow to see how it goes.thecoalman wrote: ↑Thu Aug 29, 2024 8:16 pm The error is that will appear under any under conditions. If you switch how registration is done remember to remove that line from the template. It's possible to make it conditional using the directions from Mannix_ Where he hasYOUR TEXT
change it to{L_YOUR_KEY}