Editing guestbook block

Permalink
Currently using standard default theme that comes out of the box with Concrete5. I want to remove the 'Leave a reply' text in the guestbook block as it doesn't jive with the title box content. I opened source but unable to edit code as the cut-copy-paste functions are disabled? How do you unlock the theme?

jmdemers
 
enlil replied on at Permalink Best Answer Reply
enlil
Your going to want to copy root/concrete/blocks/guestbook to root/blocks.

Then edit the view php file and the simplest way to get rid of the text is to find it and remove it without removing ANYTHING else.

Save it and you should be good to go.

Make sure your editing the copy in the root/blocks folder and make NO changes to the original...
enlil replied on at Permalink Reply
enlil
or you could try placing some CSS on the block like:

.guestBook-formBlock-title { display: none; }
jmdemers replied on at Permalink Reply
jmdemers
This worked perfectly. Thanks again enlil.