Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Remove the default interface CakePHP links in default Cake apps?

Tags:

php

cakephp

How do I get rid of the default "CakePHP: the rapid development php framework" link that shows up on the top left on every page of Cake app's with default configurations? It's not part of the view, and the only way I can think of is to display:none the div in the CSS.

I'm thinking there has to be some setting in the app's configuration.

like image 587
vette982 Avatar asked Dec 13 '22 21:12

vette982


2 Answers

Modify app/views/layouts/default.ctp

If no view exists in that location, check cake/libs/views/layout/default.ctp

like image 93
webbiedave Avatar answered Feb 16 '23 01:02

webbiedave


You are using the default layout, which you can override by creating your own layout file in app/views/layouts/default.ctp. See the layout section in the cookbook for more information about layouts.

like image 27
dhofstet Avatar answered Feb 16 '23 01:02

dhofstet