well whenever I uses textarea, I get this LONG and BIG guideline attached to it -

Lines and paragraphs break automatically.
You can enable syntax highlighting of source code with the following tags:

, <blockcode>. Beside the tag style "<foo>" it is also possible to use "[foo]".
You may post code using <code>...

(generic) or ... (highlighted PHP) tags.
You can use BBCode tags in the text.
Web page addresses and e-mail addresses turn into links automatically.

Which don't look very professional, so how can I get rid of it ? or atleast trim it or to customize it ?

Comments

bmihelac’s picture

poseidon, you can create module and alert forms in it, for example:

function YOURMODULE_comment_form_alter($form_id, &$form) {
	unset($form['comment_filter']['format']);
	unset($form['preview']);
}

hope it helps!

Pushkar Gaikwad’s picture

Hi bmi, unfortunately I don't have much knowledge of module development. Are you talking of putting such code in template.php ? Can you tell me how will it work logically ?

Placement papers and Job Openings

bmihelac’s picture

* create folder sites/all/modules/custom/your_module_name and create 2 text files your_module_name.module and your_module_name.info files
* in your_module_name.module add php function
* enable module in administer

That should do it, check what other modules have in .info filename.