I am working on Drupal. I want to know how to change that footer text Powered by Drupal and link given to it. I want there "Copyrights 2012 (My site name).All Rights reserved." I can not getting it can any one help me.
相关问题
- Drupal 8: How do I customize a form widget to show
- How to balance webserver bandwith usage?
- drupal :: order complete hook and upgrade user per
- Change redirect in Drupal 7 for Password Recovery
- Adding attachment to Jira's api
相关文章
- Render a Drupal node
- How to allow multiple blocks in a module of Drupal
- How can I redirect a Drupal user after they create
- Drupal 6: Getting custom fields into the database
- Drupal 7 retain file upload
- Drupal - Set 'user/%/edit/uprofile' to def
- Drupal Session User id for independent script
- how to construct an https POST request with drupal
This is a themable item, so you can add this to
template.php
:Don't forget to rebuild the cache to see the change take effect.
go to Structure then goto blocks then Add block
Give the block title blank block description Footer or any other
and in Block body add code
Copyrights © Your site name.All right reserved.
Just create your own block with your own text and replace the drupal one with your own.
To do that, go to the block adminstration area. Click on Add block. Add your HTML with your link. Then put your block in your footer area.
Just go to Structure -> blocks -> Add block
Leave block title blank block description Custom Footer or any other if you want
and in Block body add following code
After doing this set default footer's region as none and add your custom footer.
Hope this will solve your problem.