The default home page of a Piwigo photo gallery is the list of root albums. If it doesn’t fit your need, you can create your own customized home page. There are 2 main methods: either you create an additional page or your create dynamic blocks. This blog post describes the first method.

Home Page on Piwigo.com Demo 1
The main idea is to create an home page with free content, such as the home page of demo1.
1) Install and activate plugin Additional Pages from screen [Administration > Plugins > Manage]
2) Create a new page on screen [Administration > Plugins > Additional Pages] with title “Home Page”. If plugin FCK Editor is activated, then deactivate it on the “Content” field. Copy the following HTML code and paste it into the “Content” field.
<style type="text/css">
#menubar {display:none !important;}
.titrePage {display:none;}
.myHomePage_photo {text-align: center; margin:50px 0 20px 0;}
.myHomePage_photo a img {border-width:2px; border-style:solid;}
.myHomePage_links {letter-spacing:2px; text-align:center; margin-bottom:0; font-weight:bold;}
.myHomePage_name {margin-top:30px; letter-spacing:2px; text-align:center;}
</style>
<div id="myHomePage">
<div class="myHomePage_photo">
<a href="index.php?/categories"><img src="http://demo1.piwigo.com/uploads/v/8/z/v8z3358vr7/2010/06/27/20100627012304-cd94ddbf.jpg"></a>
</div>
<div class="myHomePage_links">
<a href="index.php?/categories">Albums</a> ⚫ <a href="index.php?/contact">Contact</a>
</div>
<div class="myHomePage_name">
by Piwigo.com Team · This is a demo gallery
</div>
</div>
of course, you have to customize content: replace “by Piwigo.com” with “by John The Photographer”.
And eventually click on the “Set as Homepage” checkbox.

Create your custom home page for your Piwigo photo gallery
3) Select a photo from your gallery, display it in your web browser, right click on the photo and click on the “Copy Image URL” option (or equivalent)
4) Edit the Additional Page and replace the image url (http://demo1.piwigo.com/…/4ddbf.jpg) with yours
PS: if you keep the “Contact” link, activate the Contact Form plugin.