Is there any way to EDIT an item already in your SCRAPBOOK?

Permalink 2 users found helpful
I have a large list of links that I want to appear at the footer of every page. I need to be able to edit this list as needed (add new links, remove outdated lines) and have the changes appear on every page.

I thought I could do it in scrapbook, since scrapbook blocks can appear on every page, but it looks like scrapbook items are not editable.

Is there a simple way to do this with or without scrapbook?

I think normally you'd have php call the footer and add it to the page "on the fly." So, you'd only have to edit the footer. In Concrete5, I'm not sure how to accomplish this AND make it easy for the client to update it.

Thanks!

 
Mnkras replied on at Permalink Best Answer Reply
Mnkras
what you can do, is insert this code where you wan the links to go:

<?
$block = Block::getByName('Footer_Links');
if( $block && $block->bID ) $block->display();
?>
then in your scrapbook make a content block add the links, save hit rename and name it Footer_Links, Thats it :)
zoinks replied on at Permalink Reply
OH! I see! That is awesome! Thank you!!