Search found 2 matches
- Wed Sep 04, 2024 10:18 am
- Forum: phpBB Custom Coding
- Topic: Do not allow attachments to be downloaded to guests and bots
- Replies: 0
- Views: 152
Do not allow attachments to be downloaded to guests and bots
Open includes/functions_content.php and find 'S_FILE' => true, Add after on new line 'S_DENIED' => (empty($user->data['is_registered']) || !empty($user->data['is_bot'])) ? true : false, 'DENIED_MESSAGE' => 'You do not have the required permissions to download this file.<br>Need to be logged in to th...
- Sun Aug 18, 2024 3:22 pm
- Forum: phpBB Custom Coding
- Topic: Replace joined by last visit in post profil
- Replies: 0
- Views: 199
Replace joined by last visit in post profil
Open viewtopic.php and find 'joined' => $user->format_date($row['user_regdate']), Replace with 'joined' => $user->format_date($row['user_lastpost_time']), Open styles/prosilver/viewtopic_body.html and find <dd class="profile-joined"><strong>{L_JOINED}{L_COLON}</strong> {postrow.POSTER_JOIN...