Uninstall
- Go to your Lazyest Gallery Settings page and click on "Delete Options" button. Do NOT re-open the Lazyest Gallery Settings page
- Deactivate plugin from your WordPress Admin panel
- Remove the "lazyest-gallery" folder from your plugins folder (usually /wp-content/plugins)
- You may want to delete the thumbs and slides folders in your gallery, along with the captions.xml files.
Tips and Tricks
- If you want icons to be displayed for any folders, just put inside the folder an image (jpg, gif or png) with same name as the folder.
- If you want folders to be displayed in your sidebar, use the LG List Folders widget, or add this line to your "sidebar.php":
<?php if (function_exists(lg_list_folders)) lg_list_folders("title"); ?>
You can use whatever title you want.
- If you want a random image to be displayed in your sidebar, use the LG Random Image widget, or add this line to your "sidebar.php":
<?php if (function_exists(lg_random_image)) lg_random_image("title"); ?>
You can use whatever title you want.
- If you want to link an image in your post or page you can use this shortcode:
[lg_image folder="foldername" image="imagename.ext" align="value" width="value" height="value" caption="value"]
Where:
- every atribute but "folder and image" are optional
- foldername:path to the folder, relative to the gallery directory
- align: could be left, right or center
- width and height: an integer value
- if caption is provided this will override the xml one
- If you want to show thumbnails for a folder in your post or page you can use this shortcode:
[lg_folder folder="foldername" count="value" cols="value" paging="value"]
Where:
- every atribute but "folder and image" are optional
- foldername:path to the folder, relative to the gallery directory
- count: number of images to show
- cols: number of columns in display
- paging: 'true' or 'false' show -next- and -prev- to show more images
- If you want to have a slideshow with images from one folder, you can use this shortcode:
'[lg_slideshow folder="foldername" display="slide"]`
Where:
- foldername:path to the folder, relative to the gallery directory
- slide:what to display; "thumb"=thumbnails, "slide"=slides, "image"=original image
- If you want to enable commenting on your gallery, be sure to include the line
<?php comments_template(); ?> in your page template. If you can't find this line, please check single.php for the correct syntax and position.
License
- Copyright (C) 2004 - Nicholas Bruun Jespersen
- Copyright (C) 2005 - 2006 Valerio Chiodino
- Copyright (C) 2008-2009 - Marcel Brinkkemper
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA