If you want to add your random quotes thingy to your homepage I recommend that you hardcode it, don't use the external pages admin tool.
If you're using the custom_index plugin you can go to the following:
mod/custom_index/views/default/canvas/layouts/new_index.php
Add the following where you want it to appear:
<?php
$quotes = array(
"Quote1",
"Quote2",
"Quote3",
);
echo $quotes[rand(0, count($quotes) - 1)];
?>
That should do the trick. However from my experience I could never get the array to take php or elgg_echos only standard html.
Good luck!
info@elgg.org
Security issues should be reported to security@elgg.org!
©2014 the Elgg Foundation
Elgg is a registered trademark of Thematic Networks.
Cover image by Raül Utrera is used under Creative Commons license.
Icons by Flaticon and FontAwesome.