hi all,
I wonder, is it possible to edit stuff like this: you can choose below a comment in what format you want your text to be published:
Input format
Filtered HTML
* Allowed HTML tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>
* Lines and paragraphs break automatically.
PHP code
* You may post PHP code. You should include <?php ?> tags.
Full HTML
* Lines and paragraphs break automatically.
Moderator HTML
* Allowed HTML tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd> <br> <p> <pre> <img>
* Lines and paragraphs break automatically.
This list in printed in drupal with dots (list) in front of them, I want to know if it's possible or not to change this, and where I can find what the code is behind things like:
<?php print $content; ?> or <?php print $links; ?>
where can I customize what is being printed by <?php print $links; ?>??
thanks!
Comments
I also want to do same.. I
I also want to do same.. I want to Remove lines below fckeditor.. what should I do?
This is a very old thread! I
This is a very old thread!
I assume you're using D6?
In template.php (in your theme folder), paste this:
This will not hide the 'input format' option though. To get rid of that too, it is necessary to have only one input filter for both anon and auth users; with only one input filter as default for everyone, the 'input filter' section disappears from the page automatically. I then use a very limited toolbar profile for anon, and an advanced one for auth users. Thus, the fck toolbar limits the input, rather than the drupal input filter.
If you're using D5, there is a different script to go in your template.php file.
Searching the forums for 'hide input tips' might reveal it.