Code: Select all
// 'POSTER_AVATAR'
Code: Select all
<dl class="postprofile" style="min-height: 50px">
Code: Select all
<dt>{wallrow.POSTER_AVATAR}</dt>
Code: Select all
define('WALL_ACTIVE_DAYS', 30);
I noticed this as well. But I wasn't very worried about it as I'm the only one who usually deletes topics.."Are you sure you want to delete this wall comment?"
I tried this and it did not work, so I had a look at the /root/wall.php file and found a repeat:focus_water wrote: If you want to change the amount of days a user has to be offline before you cant post on there wall.
open memebrlist.php and search forChange 30 to any number you want. If you want to pretty much get rid of that feature the easiest thing to do would be to change the 30 to 9999999Code: Select all
define('WALL_ACTIVE_DAYS', 30);
Code: Select all
define('WALL_ACTIVE_DAYS', 30);
Code: Select all
$wall_active = ((($current_time - $user_lastvisit) / (60 * 60 * 24)) < WALL_ACTIVE_DAYS);
Code: Select all
$wall_active = 1;
Code: Select all
$wall_active = ((($current_time - $user_lastvisit) / (60 * 60 * 24)) < WALL_ACTIVE_DAYS);
Code: Select all
$wall_active = 1;
You will actually get this message when deleting something on the forum too. Here is what you have to do to fix thisAre you sure you want to delete this wall comment?
Code: Select all
DELETE_POST_CONFIRM
Code: Select all
DELETE_WALL_POST_CONFIRM
Code: Select all
DELETE_POST_CONFIRM
Code: Select all
DELETE_WALL_POST_CONFIRM
After updating to the latest version i also get this message.sedaniel wrote:I read through all the pages of this thread and couldn't find an answer to my problem, apparently a couple of other people have had similar problems. I installed this mod (tried it twice, just in case I missed something or made a mistake the first time). I have set all the permissions to Yes for wall posting, and still all my members are seeing the "You cannot post comments on this wall." text. Does anyone know how to fix this, or what I might have done wrong? I double checked my permissions already, but will go through them again.