Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.
1 to 10 of 10
Posted By: opecMy question is how can I Remove the "Gallery Name" (the one which is located above the Picture path "Collections>>Plogger test collection >> Albumname >> picturename.jp") . . .and the Search DialogOpen 'header.php' and find the following code:
print '<div id="wrapper">
<table id="header-table" width="100%"><tr><td>'.generate_header().
'</td><td id="jump-search-container">'.generate_jump_menu() . generate_search_box().'</td></tr></table>';
and change it to read: print '<div id="wrapper">
<table id="header-table" width="100%"><tr><td> </td>
<td id="jump-search-container">'.generate_jump_menu().'</td></tr></table>';
Posted By: opecIs there already a German language Pack?First, you need to download the newer Plogger from the SVN (link here) in order to translate everything of the gallery (not just the admin portion). Then check here for instructions for setting up Plogger to be translated. And it looks like there is already a German translation file for download in the translations repository (although you are free to edit it if the translations need updating using the instructions linked above).
<?php
plogger_init();
print plogger_download_selected_form_start();
// Output highest level container division
print '<div id="gallery_wrapper">
<table id="header-table" style="width:auto;"><tr><td>'.generate_header().'</td>
<td id="jump-search-container">'.generate_jump_menu().'</td></tr></table>';
print '<div id="main_container">
<div id="breadcrumbs">
<table width="auto">
<tr>
<td>
'.generate_breadcrumb().'
</td>
<td class="align-right">'.
plogger_download_selected_button().
plogger_print_button().
' </td>
</tr>
</table>
</div>';
?>
<?php
plogger_get_header();
print '<div id="thumbnail_container">';
if (plogger_has_collections())
{
print '<ul class="slides">';
while(plogger_has_collections())
{
1 to 10 of 10