Archive for October, 2007

Theme: Black Glass

The Black Glass theme is an inversed version of the White Glass theme that's been available for the past several months. 

219.3 KiB - 2,205 downloads

The logo

Of course you don't want your clients to see our logo so we have made it very easy to replace our logo with yours. 

  1. Go to Options -> Themes and click on the edit button under the Black Glass theme. 
  2. Next click on files. 
  3. About half way down you will see a folder titled images. Click on the link to open the images folder. 
  4. Click on the Upload button.  This will display a form to allow you to upload an image.
  5. Click on the Browse button to select a file on your computer named logo.png that will replace our logo.  If your current logo is not in PNG format you can either convert it or edit the theme file header.tpl to reference a different file (see below).
  6. Click Upload and it will prompt you to overwrite the current logo.png.  Click ok and your file will be uploaded overwriting our logo.

The other option is to edit header.tpl to reference your logo file.  Go through steps 1-5 above except that the file you upload does not need to be named logo.png.

  1. On the top of the file list should be a link "Up to Previous Level".  Click that and you will see a series of .tpl files. 
  2. Click on header.tpl and look for the following.

 

<?php
if (file_exists('<!--themedir-->/images/logo.png'))
    {
    echo '<img src="<!--themedir-->/images/logo.png">';
    }
else
    {
    echo $config->readValue('company_name');
    }
?>

 

3. Replace both instances of logo.png with the name of the file you uploaded.

Categories:Themes

ProofBuddy 1.0rc6 Available

The sixth release candidate is available for download.  Primarily a bug fix, this version adds no new features but it does fix a problem that several users have reported with pricing options not working correctly along with several minor bug fixes.

Categories:Releases

Creating a custom page

One of the new features in 1.0 that I'm really excited about, but that hasn't gotten much exposure, is custom pages.  With custom pages you'll be able to add a page within your ProofBuddy site that stays within the same design as the rest of your site and has access to a series of data classes giving you access to information on the current album, image, cart, or user. 

Click here for more information on custom pages.

To see examples of custom pages take a look at the White Glass theme.  Custom pages are used in this theme for the comments, image notes, and album notes page.

Categories:Development Blog