Page 1 of 2
Gallery Modul - Bild in Content zeigen
Posted: Mon Mar 15, 2010 7:23 pm
by brandy
Hallo!
Wie der Titel schon sagt - kann ich beim Klick auf ein Bild einer Gallerie, das Bild selbst im Contentbereich anzeigen lassen?
Vielen Dank für eine Antwort!
lg
Re: Gallery Modul - Bild in Content zeigen
Posted: Mon Mar 15, 2010 8:32 pm
by nockenfell
Du meinst anstelle der Lightbox das Bild direkt im Content drin anzeigen?
Soweit ich das Module bisher kenne, ist das glaube ich nicht möglich.
Re: Gallery Modul - Bild in Content zeigen
Posted: Mon Mar 15, 2010 8:41 pm
by Rolf
brandy wrote:
Wie der Titel schon sagt - kann ich beim Klick auf ein Bild einer Gallerie, das Bild selbst im Contentbereich anzeigen lassen?
Vielleicht die neue AD-Gallery template...
http://dev.cmsmadesimple.org/project/files/726
(
http://coffeescripter.com/code/ad-gallery/)
Gruss, Rolf
Re: Gallery Modul - Bild in Content zeigen
Posted: Tue Mar 16, 2010 3:56 pm
by brandy
Naja möchte nur beim Klick eine Ausgabe im Content, ohne jeglicher LightBox... Funktioniert das mit dem ImageGallery-Tag?
Re: Gallery Modul - Bild in Content zeigen
Posted: Tue Mar 16, 2010 4:08 pm
by Jos
Was Rolf angegeben hat kannst du machen mit das Gallery Modul.
Die AD-Gallery template ist nagelneu und muss du noch extra dowmloaden. Sehe ganz unten auf
http://dev.cmsmadesimple.org/project/files/726
Re: Gallery Modul - Bild in Content zeigen
Posted: Wed Mar 17, 2010 4:17 pm
by brandy
Und wie bearbeite ich nun das Template, dass das Bild einfach nur angezeigt wird? Momentan schauts so aus:
http://www.ago-einrichtung.at/cms
Vielen Dank
Re: Gallery Modul - Bild in Content zeigen
Posted: Wed Mar 17, 2010 4:27 pm
by Jos
Das ist nicht mit dem Gallery Modul gemacht, wie ich es jetzt sehe :-X
Re: Gallery Modul - Bild in Content zeigen
Posted: Wed Mar 17, 2010 4:30 pm
by nicmare
Jos wrote:
Das ist nicht mit dem Gallery Modul gemacht, wie ich es jetzt sehe :-X
sicher?
Re: Gallery Modul - Bild in Content zeigen
Posted: Wed Mar 17, 2010 4:47 pm
by Jos
ja sicher

Re: Gallery Modul - Bild in Content zeigen
Posted: Wed Mar 17, 2010 7:18 pm
by brandy
Re: Gallery Modul - Bild in Content zeigen
Posted: Thu Mar 18, 2010 9:19 am
by nicmare
@Jos, meine Frage ist gleichzeitig ein Link

Re: Gallery Modul - Bild in Content zeigen
Posted: Thu Mar 18, 2010 10:37 am
by Jos
Nicmare, entschuldigung, das hatte ich nicht gesehen.
Brandy, du kannst eine neue Gallery template machen, mit im Feld "template source"
Code: Select all
<div class="gallery">
{if !empty($module_message)}<h4>{$module_message|escape}</h4>{/if}
{if !empty($gallerytitle)}<h3>{$gallerytitle}</h3>{/if}
{if !empty($gallerycomment)}<div class="gallerycomment">{$gallerycomment}</div>{/if}
<p>{$imagecount}</p>
<div class="pagenavigation">
{if $pages > 1}
<div class="prevpage">{$prevpage}</div>
<div class="nextpage">{$nextpage}</div>
{/if}
{if !$hideparentlink && !empty($parentlink)}<div class="parentlink">{$parentlink}</div>{/if}
{if $pages > 1}<div class="pagelinks">{$pagelinks}</div>{/if}
</div>
{foreach from=$images item=image}
<div class="img">
{if $image->isdir}
<a href="{$image->file}" title="{$image->title}"><img src="{$image->thumb}" alt="{$image->title}" /></a><br />
{$image->title}
{else}
<img src="{$image->file}" alt="{$image->title}" />
{/if}
</div>
{/foreach}
<div class="galleryclear"> </div>
</div>
Und lössche im Feld "Template CSS-stylesheet" alles nach .galleryclear { clear: both; }
Und mach Feld "Template JavaScript" leer.
Ist das was du vor hast?
Re: Gallery Modul - Bild in Content zeigen
Posted: Sat Mar 20, 2010 2:12 pm
by brandy
Naja schätze, dass es das ist was ich will, jedoch gibt er mir dann gleich die erste Anzeige anders aus. Ich will, dass er mir zuerst nur die Thumbnails anzeigt und beim Klick dann im Content öffnet - funktioniert das vielleicht mit dem ImageGallery Modul besser?
Vielen Dank
Re: Gallery Modul - Bild in Content zeigen
Posted: Sat Mar 20, 2010 6:49 pm
by NaN
Eigentlich brauchst Du nur ein Galerie Template welches beim Klick auf eines der Thumbnails nicht das Fancybox Javascript ausführt, sondern ein eigenes auf Deine Seite abgestimmtes Script.
Ändere mal in Deinem Seitentemplate
in
in
(dann kann man die Elemente im Javascript über die ID besser ansteuern)
Nimm also ruhig wieder das alte Gallery Template, aber ändere das Javascript folgendermaßen:
Code: Select all
<__script__ type="text/javascript">
$(document).ready(function() {
var origContent = $("#content").html();
$("#content_left div.gallery a.group").click(function() {
var src = $(this).attr('href');
$("#content").html('<img id="gallery_content_img" src="'+src+'">');
$("#gallery_content_img").click(function() {
$("#content").html(origContent);
});
return false;
});
});
</__script>
Das sollte eigentlich alles gewesen sein.
Re: Gallery Modul - Bild in Content zeigen
Posted: Sun Mar 21, 2010 3:03 pm
by brandy
Jetzt siehts so aus:
www.ago-einrichtung.at/cms
lg
davidb