Basic Questions?


Subject: Basic Questions?
Well, I have two ¿basic? questions. Read this please:

1.- How can I make "default activated signature, avatar AND PM"? because my users have to activate it manually ¬¬.

2.-The first letter of all the words on the titles of ALL the topics are in capital letter. How could I change it?

Thanks a lot mates ;)

See you,

Ps: Sorry for my absolutly terrifying english.

Profile PM  
Subject: Re: Basic Questions?
Default DB values have to be changed in your phpMyAdmin:

Code: [Download] [Hide] [Select]
ALTER TABLE `phpbb_users` CHANGE `user_allow_pm_in` `user_allow_pm_in` TINYINT(1) NOT NULL DEFAULT '1';
ALTER TABLE `phpbb_users` CHANGE `user_allow_mass_email` `user_allow_mass_email` TINYINT(1) NOT NULL DEFAULT '1';


Or something similar.

Regarding the second point you have to edit this...

OPEN includes/functions_post.php
FIND
Code: [Download] [Hide] [Select]
if (($userdata['user_level'] != ADMIN) && (($board_config['force_large_caps_mods'] == true) || ($userdata['user_level'] != MOD)))
{
//$post_subject = strtolower($post_subject);
$post_subject = ucwords($post_subject);
}

REPLACE WITH
Code: [Download] [Hide] [Select]
//$post_subject = ucwords($post_subject);


Page 1 of 1


  
You cannot post new topics
You cannot reply to topics
You cannot edit your posts
You cannot delete your posts
You cannot vote in polls
You cannot attach files
You can download files
You cannot post calendar events

   

This is a "Lo-Fi" version of our main content. To view the full version with more information, formatting and images, please click here.

Powered by Icy Phoenix based on phpBB
Generation Time: 0.1619s (PHP: 10% SQL: 90%)
SQL queries: 10 - Debug Off - GZIP Enabled