How to change footer Powered by Drupal and its link?

Deadly 提交于 2019-12-03 23:15:15

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

Copyrights &copy; <a href="http://localhost/drupal-7.12/">TopTableToastMaster</a>.All right reserved.

After doing this set default footer's region as none and add your custom footer.

Hope this will solve your problem.

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.

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.

This is a themable item, so you can add this to template.php:

function MYTHEME_system_powered_by() {
  return '<span>' . t('XYZ Powered by <a href="@poweredby">Drupal</a>', array('@poweredby' => 'https://www.drupal.org')) . '</span>';
}

Don't forget to rebuild the cache to see the change take effect.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!