Ergebnis 1 bis 18 von 18

Thema: [gallery_creator] Anderes bzw. eigenes Template?

  1. #1
    Contao-Nutzer
    Registriert seit
    23.07.2010.
    Beiträge
    52

    Standard [gallery_creator] Anderes bzw. eigenes Template?

    Hallo zusammen,

    zunächst einmal danke für die wirklich gute Erweiterung gallery_creator!!!

    Nun zu meiner Frage:

    Ist es möglich das Template von der Erweiterung [ImageFlow] in gallery_creator zu nutzen?

    Warum ich nicht Imageflow selber nutze?
    ImageFlow ist zwar echt toll aber hat leider bestimmte Features nicht die gallery_creator mitbringt z.B. die einfache und schnell Sortierung der Bilder einer gallery!

    Kann ich das Template einfach einbinden? was ist hierbei zu beachten?? bzw. was ist zu tun?? Ist es überhaupt möglich?

    Fragen über Fragen aber ich hoffe hier auf ein paar antworten

  2. #2
    Contao-Nutzer
    Registriert seit
    23.07.2010.
    Beiträge
    52

    Standard

    keiner eine Idee wie das gehen könnte??

  3. #3
    Contao-Fan Avatar von markocupic
    Registriert seit
    06.12.2010.
    Ort
    Oberkirch (Schweiz)
    Beiträge
    660

    Standard

    Was möchtest du genau?
    Gruss Marko

  4. #4
    Contao-Nutzer
    Registriert seit
    23.07.2010.
    Beiträge
    52

    Standard

    Ich hätte gerne die Möglichkeit die Alben als Coverflow darzustellen also so wie es Imageflow darstellt

  5. #5
    Contao-Fan Avatar von markocupic
    Registriert seit
    06.12.2010.
    Ort
    Oberkirch (Schweiz)
    Beiträge
    660

    Standard

    Hallo acidburn (tönt so furchterregend ;-) )
    Du musst dir ein Template bauen nach folgender Anleitung: http://finnrudolph.de/ImageFlow/Installation
    Für gallery_creator habe ich bisher noch kein imageFlow-Template erstellt. Probierst du es?

    Liebe Grüsse

    Marko

  6. #6
    Contao-Nutzer
    Registriert seit
    23.07.2010.
    Beiträge
    52

    Standard

    Ich werde es mal probieren

    Vielen Dank für den Link!

  7. #7
    Contao-Fan Avatar von markocupic
    Registriert seit
    06.12.2010.
    Ort
    Oberkirch (Schweiz)
    Beiträge
    660

    Standard

    hallo acidburn
    Nach 1 h probieren, habe ich es nicht geschafft, ein funktionstüchtiges imageFlow template zu erstellen. Zwar wird die Galerie geladen, doch sind die Bilder nicht sichtbar.
    Vielleicht gelingt es dir.

    Gruss Marko

    hier das template:
    Code:
    <!-- indexer::stop -->
    <?php $GLOBALS['TL_JAVASCRIPT'][] = 'system/modules/gallery_creator/html/gallery_creator_fe.js'; ?>
    
    <?php if (!$this->Input->get('vars')): ?>
    <!--start album-overview-->
    <div class="<?php echo $this->class; ?> gallery_creator block"<?php echo $this->cssID; ?><?php if ($this->style): ?> style="<?php echo $this->style; ?>"<?php endif; ?>>
    <?php if ($this->headline): ?>
    <<?php echo $this->hl; ?>><?php echo $this->headline; ?></<?php echo $this->hl; ?>>
    <?php endif; ?>
    	
    <?php echo $this->pagination; ?>
    <?php if (count($this->arrAlbums)>0): ?>
    <ul class="list_albums">
    <?php foreach ($this->arrAlbums as $Album): ?> 
    	<li class="level_1 block row"  style="<?php echo $this->imagemargin; ?>">
    		<div class="tstamp block">[<?php echo $Album["event_date"]; ?>]</div>
    			<div class="col_1">
    				<figure class="image_container"  onmouseover="<?php echo  $Album["thumbMouseover"]; ?>">
    <?php if ($Album["href"]): ?>
    					<a href="<?php echo $Album["href"]; ?>" title="<?php echo $Album["title"]; ?>">
    <?php endif; ?>
    						<img src="<?php echo $Album["thumb_src"]; ?>" alt="<?php echo $Album["alt"]; ?>" class="<?php echo $Album["class"]; ?>">
    <?php if ($Album["href"]): ?>
    					</a>
    <?php endif; ?>
    				</figure>
    			</div>
    			<div class="col_2">
    				<h2><?php echo $Album["name"]; ?></h2>
    <?php if ($Album["count"]): ?>				
    				<p class="count_pics"><?php echo $Album["count"]; ?> <?php echo $GLOBALS["TL_LANG"]["gallery_creator"]["pictures"]; ?></p>
    <?php endif; ?>
    <?php if ($Album["count_subalbums"]): ?>				
    				<p class="count_pics"><?php echo $Album["count_subalbums"]; ?> <?php echo $GLOBALS['TL_LANG']['gallery_creator']['subalbums']; ?></p>
    <?php endif; ?>		
    <?php if ($Album["comment"]): ?>
    				<p class="album_comment"><?php echo $Album["comment"]; ?></p>
    <?php endif; ?>
    			</div>
    		<div class="clr"><!--clearing-box--></div>
    	</li>
    <?php endforeach; ?>
    </ul>
    <?php endif; ?>	
    </div>
    <!--end album-overview-->
    <?php endif; ?>
    
    
    
    
    
    
    <?php 
    if ($this->Input->get('vars')): ?>
    <div class="<?php echo $this->class; ?> gallery_creator block"<?php echo $this->cssID; ?><?php if ($this->style): ?> style="<?php echo $this->style; ?>"<?php endif; ?>>
    
    <?php
    /*import jquery and galeria.js*/
    $GLOBALS['TL_HEAD'][] = '<!-- load imageFlow -->';
    //$GLOBALS['TL_HEAD'][] = '<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.js"></script>';
    $GLOBALS['TL_HEAD'][] = '<!-- load imageflow -->';
    $GLOBALS['TL_HEAD'][] = '<link rel="stylesheet" href="system/modules/gallery_creator/imageflow/style.css" type="text/css">';
    $GLOBALS['TL_HEAD'][] = '<link rel="stylesheet" href="system/modules/gallery_creator/imageflow/imageflow.css" type="text/css">';
    $GLOBALS['TL_HEAD'][] = '<script type="text/javascript" src="system/modules/gallery_creator/imageflow/imageflow.js"></script>';
    ?>
    <!--start detailview-->
    <?php if ($this->headline): ?>
    <<?php echo $this->hl; ?>><?php echo $this->headline; ?></<?php echo $this->hl; ?>>
    <?php endif; ?>
    
    <?php if ($this->backLink): ?>
    <div class="backLink"><a href="<?php echo $this->backLink; ?>" title="zur&uuml;ck">« <?php echo $GLOBALS['TL_LANG']['gallery_creator']['back_to_general_view']; ?></a></div>
    <?php endif; ?>
    
    <?php if ($this->Albumname): ?>
    <h2><?php echo $this->Albumname; ?></h2>
    <?php endif; ?>
    
    <?php if ($this->error): ?>
    <?php foreach ($this->error as $errorMessage): ?>
    <p><?php echo $errorMessage; ?></p>
    <?php endforeach; ?>
    <?php return; ?>
    <?php endif; ?>
    
    <?php echo $this->pagination; ?>
    <?php if ($this->subalbums): ?>
    <!-- Unteralben anzeigen -->
    <div class="subalbums">
    	<h3>Unteralben von: <?php echo $this->Albumname; ?></h3>
    	<ul class="list_albums">
    <?php foreach ($this->subalbums as $Subalbum): ?>
    		<li class="level_1 block row"  style="<?php echo $this->imagemargin; ?>">
    		<div class="tstamp block">[<?php echo $Subalbum["event_date"]; ?>]</div>
    			<div class="col_1">
    				<figure class="image_container" onmouseover="<?php echo  $Album["thumbMouseover"]; ?>">
    <?php if ($Subalbum["href"]): ?>
    					<a href="<?php echo $Subalbum["href"]; ?>" title="<?php echo $Subalbum["title"]; ?>">
    <?php endif; ?>
    						<img src="<?php echo $Subalbum["thumb_src"]; ?>" alt="<?php echo $Subalbum["alt"]; ?>" class="<?php echo $Subalbum["class"]; ?>">
    <?php if ($Subalbum["href"]): ?>
    					</a>
    <?php endif; ?>
    				</figure>
    			</div>
    			<div class="col_2">
    				<h2><?php echo $Subalbum["name"]; ?></h2>
    <?php if ($Subalbum["count"]): ?>				
    				<p class="count_pics"><?php echo $Album["count"]; ?> <?php echo $GLOBALS["TL_LANG"]["gallery_creator"]["pictures"]; ?></p>
    <?php endif; ?>
    <?php if ($Subalbum["count_subalbums"]): ?>				
    				<p class="count_pics"><?php echo $Subalbum["count_subalbums"]; ?> <?php echo $GLOBALS["TL_LANG"]["gallery_creator"]["subalbums"]; ?></p>
    <?php endif; ?>				
    <?php if ($Subalbum["comment"]): ?>
    				<p class="album_comment"><?php echo $Subalbum["comment"]; ?></p>
    <?php endif; ?>
    			</div>
    		<div class="clr"><!--clearing-box--></div>
    	</li>
    <?php endforeach;?>
    	</ul>
    </div>
    <!-- Ende Unteralben anzeigen -->
    <?php endif; ?>
    
    <!--detailview-->
    <?php if ($this->arrPictures): ?>
    <?php $imageNumber=0; ?>
    <div id="myImageFlow" class="imageflow"> 
    <?php foreach ($this->arrPictures as $Picture): ?>
    <?php $imageNumber++; ?> 
    	<img src="<?php echo $Picture["href"]; ?>" longdesc="<?php echo $Picture["href"]; ?>" width="<?php echo $Picture["image_width"]; ?>" height="<?php echo $Picture["image_height"]; ?>" alt="<?php echo $Picture["comment"]; ?>">
    <?php endforeach;?>
    </div>
    
    
    <?php endif; ?>
    
    <!--end detailview-->
    
    
    
    
    <script type="text/javascript">
    <!--//--><![CDATA[//><!--
    domReady(function()
    {
    	var instanceOne = new ImageFlow();
    	instanceOne.init({ ImageFlowID:'myImageFlow' });
    });
    //--><!]]>
    <?php endif; ?>
    </script>
    
    </div>
    
    <!-- indexer::continue -->

  8. #8
    Contao-Fan Avatar von markocupic
    Registriert seit
    06.12.2010.
    Ort
    Oberkirch (Schweiz)
    Beiträge
    660

    Standard

    Uff!

    Doch noch geschafft ein funktionstüchtiges imageFlow-Template zu schreiben!
    http://kletterkader.com/index.php/ga...ober-2011.html
    Gruss und gute Nacht!

    Marko
    Geändert von markocupic (08.01.2012 um 11:53 Uhr)

  9. #9
    Contao-Nutzer
    Registriert seit
    23.07.2010.
    Beiträge
    52

    Standard

    Sehr cool!!

    Was hast du an dem oberen Template noch geändert damit es funktioniert??
    Ich habe es bisher nicht hinbekommen!

  10. #10
    Contao-Fan Avatar von markocupic
    Registriert seit
    06.12.2010.
    Ort
    Oberkirch (Schweiz)
    Beiträge
    660

    Standard imageflow-template für gallery_creator

    Hallo acidburn
    Ich bin so nett. Hier das Template in html5-Version. Vorher aber die Erweiterung imagflow installieren. Die Imageflow-Settings wie opacity, usw. musst du im Template vornehmen. background-color in deinem Stylesheets. Gruss Marko
    Code:
    <!-- indexer::stop -->
    <?php
    /*
     * Important!!!!
     * This template requires the contao-extension "imageflow"
     *
     */
    $GLOBALS['TL_JAVASCRIPT'][] = 'system/modules/gallery_creator/html/gallery_creator_fe.js'; 
    ?>
    
    <?php if (!$this->Input->get('vars')): ?>
    <!--start album-overview-->
    <div class="<?php echo $this->class; ?> gallery_creator block"<?php echo $this->cssID; ?><?php if ($this->style): ?> style="<?php echo $this->style; ?>"<?php endif; ?>>
    <?php if ($this->headline): ?>
    <<?php echo $this->hl; ?>><?php echo $this->headline; ?></<?php echo $this->hl; ?>>
    <?php endif; ?>
    	
    <?php echo $this->pagination; ?>
    <?php if (count($this->arrAlbums)>0): ?>
    <ul class="list_albums">
    <?php foreach ($this->arrAlbums as $Album): ?> 
    	<li class="level_1 block row"  style="<?php echo $this->imagemargin; ?>">
    		<div class="tstamp block">[<?php echo $Album["event_date"]; ?>]</div>
    			<div class="col_1">
    				<figure class="image_container"  onmouseover="<?php echo  $Album["thumbMouseover"]; ?>">
    <?php if ($Album["href"]): ?>
    					<a href="<?php echo $Album["href"]; ?>" title="<?php echo $Album["title"]; ?>">
    <?php endif; ?>
    						<img src="<?php echo $Album["thumb_src"]; ?>" alt="<?php echo $Album["alt"]; ?>" class="<?php echo $Album["class"]; ?>">
    <?php if ($Album["href"]): ?>
    					</a>
    <?php endif; ?>
    				</figure>
    			</div>
    			<div class="col_2">
    				<h2><?php echo $Album["name"]; ?></h2>
    <?php if ($Album["count"]): ?>				
    				<p class="count_pics"><?php echo $Album["count"]; ?> <?php echo $GLOBALS["TL_LANG"]["gallery_creator"]["pictures"]; ?></p>
    <?php endif; ?>
    <?php if ($Album["count_subalbums"]): ?>				
    				<p class="count_pics"><?php echo $Album["count_subalbums"]; ?> <?php echo $GLOBALS['TL_LANG']['gallery_creator']['subalbums']; ?></p>
    <?php endif; ?>		
    <?php if ($Album["comment"]): ?>
    				<p class="album_comment"><?php echo $Album["comment"]; ?></p>
    <?php endif; ?>
    			</div>
    		<div class="clr"><!--clearing-box--></div>
    	</li>
    <?php endforeach; ?>
    </ul>
    <?php endif; ?>	
    </div>
    
    <script type="text/javascript">
    <!--//--><![CDATA[//><!--
    window.addEvent('domready', function() {
        //Weiterleitung bei Klick auf das, das Bild enthaltende Listenelement
    	$$("ul.list_albums li.level_1").addEvent('click', function() {
    		var href = this.getElement('a').get('href');
    		var myURI = new URI();
    		var redirect = myURI.get('scheme') + '://' + myURI.get('host') + myURI.get('directory') + href;
    		window.parent.location=redirect;
    	});
    	/**
    	 * Cursor über h2
    	 */
    	$$('.gallery_creator li.level_1').setStyle('cursor', 'pointer');
    	
    	//bei domready erhält das erste Listenelement einen overlay
    	$$(".gallery_creator ul.list_albums").getFirst("li").addClass('active');
    	//Klassenzuweisung 
    	$$(".gallery_creator ul.list_albums li.level_1").addEvent('mouseover', function() {
    		$$(".gallery_creator ul.list_albums").getFirst("li").removeClass('active');
    		this.addClass('active');
    	});
    	//Klassenentfernung 
    	$$(".gallery_creator ul.list_albums li.level_1").addEvent('mouseout', function() {
    		this.removeClass('active');
    	});
    
    });
    //--><!]]>
    </script>
    <!--end album-overview-->
    <?php endif; ?>
    
    
    
    
    
    
    
    
    
    
    <?php if ($this->Input->get('vars')): ?>
    <?php
    //Load image Flow js & css
    $GLOBALS['TL_CSS'][] = 'plugins/imageflow/imageflow.css';
    $GLOBALS['TL_JAVASCRIPT'][] = 'plugins/imageflow/imageflow.js';
    ?>
    <!--start detailview-->
    <div class="<?php echo $this->class; ?> gallery_creator block"<?php echo $this->cssID; ?><?php if ($this->style): ?> style="<?php echo $this->style; ?>"<?php endif; ?>>
    
    <?php if ($this->headline): ?>
    <<?php echo $this->hl; ?>><?php echo $this->headline; ?></<?php echo $this->hl; ?>>
    <?php endif; ?>
    
    <?php if ($this->backLink): ?>
    <div class="backLink"><a href="<?php echo $this->backLink; ?>" title="zur&uuml;ck">« <?php echo $GLOBALS['TL_LANG']['gallery_creator']['back_to_general_view']; ?></a></div>
    <?php endif; ?>
    
    <?php if ($this->Albumname): ?>
    <h2><?php echo $this->Albumname; ?></h2>
    <?php endif; ?>
    
    <?php if ($this->error): ?>
    <?php foreach ($this->error as $errorMessage): ?>
    <p><?php echo $errorMessage; ?></p>
    <?php endforeach; ?>
    <?php return; ?>
    <?php endif; ?>
    
    <?php echo $this->pagination; ?>
    
    <?php if ($this->subalbums): ?>
    <!-- Unteralben anzeigen -->
    <div class="subalbums">
    	<h3>Unteralben von: <?php echo $this->Albumname; ?></h3>
    	<ul class="list_albums">
    <?php foreach ($this->subalbums as $Subalbum): ?>
    		<li class="level_1 block row"  style="<?php echo $this->imagemargin; ?>">
    		<div class="tstamp block">[<?php echo $Subalbum["event_date"]; ?>]</div>
    			<div class="col_1">
    				<figure class="image_container" onmouseover="<?php echo  $Album["thumbMouseover"]; ?>">
    <?php if ($Subalbum["href"]): ?>
    					<a href="<?php echo $Subalbum["href"]; ?>" title="<?php echo $Subalbum["title"]; ?>">
    <?php endif; ?>
    						<img src="<?php echo $Subalbum["thumb_src"]; ?>" alt="<?php echo $Subalbum["alt"]; ?>" class="<?php echo $Subalbum["class"]; ?>">
    <?php if ($Subalbum["href"]): ?>
    					</a>
    <?php endif; ?>
    				</figure>
    			</div>
    			<div class="col_2">
    				<h2><?php echo $Subalbum["name"]; ?></h2>
    <?php if ($Subalbum["count"]): ?>				
    				<p class="count_pics"><?php echo $Album["count"]; ?> <?php echo $GLOBALS["TL_LANG"]["gallery_creator"]["pictures"]; ?></p>
    <?php endif; ?>
    <?php if ($Subalbum["count_subalbums"]): ?>				
    				<p class="count_pics"><?php echo $Subalbum["count_subalbums"]; ?> <?php echo $GLOBALS["TL_LANG"]["gallery_creator"]["subalbums"]; ?></p>
    <?php endif; ?>				
    <?php if ($Subalbum["comment"]): ?>
    				<p class="album_comment"><?php echo $Subalbum["comment"]; ?></p>
    <?php endif; ?>
    			</div>
    		<div class="clr"><!--clearing-box--></div>
    	</li>
    <?php endforeach;?>
    	</ul>
    </div>
    <!-- Ende Unteralben anzeigen -->
    <?php endif; ?>
    
    
    <!--detailview imageFlow-->
    <?php if ($this->arrPictures): ?>
    <?php $imageNumber=0; ?>
    <div id="myImageFlow" class="imageflow"> 
    <?php foreach ($this->arrPictures as $Picture): ?>
    <?php $imageNumber++; ?> 
    	<img rel="myImageFlow" src="<?php echo $Picture["href"]; ?>" longdesc="<?php echo $Picture["href"]; ?>" width="<?php echo $Picture["image_width"]; ?>" height="<?php echo $Picture["image_height"]; ?>" alt="<?php echo $Picture["comment"]; ?>">
    <?php endforeach;?>
    </div>
    <?php endif; ?>
    </div>
    
    
    
    <script type="text/javascript">
    <!--//--><![CDATA[//><!--
    window.addEvent('domready', function()
    {
    	new ImageFlow().init({ 
    		ImageFlowID: 'myImageFlow',
    		imagePath: '../../',
    		// do some changes below this to change the behavior of imageflow
    		// learn more about at: http://finnrudolph.de/ImageFlow/Documentation
    		imagesHeight: 0.5,
    		reflectPath: 'plugins/imageflow/',
    		reflectionPNG: false,
    		aspectRatio: 1.7,
    		reflections: false, 
     		//reflectionGET: '&height=20%',
    		//reflectionP: 0.2,
    		imageFocusM:1,
    		imageFocusMax: 2,
    		slideshowAutoplay: false,
    		startID: 1,
    		animationSpeed: 100,
    		preloadImages: true,
    		startAnimation: true,
    		slider: true,
    		slideshow:true,
    		slideshowSpeed:4000,
    		slideshowAutoplay:true,
    		buttons: true,
    		captions: true,
    		opacity: false,
    		circular: true,
    		glideToStartID: true,
    		xStep:150,
    		onClick: function(event)
    		{
    			var position = 0;
    			var images = [];
    			document.getElements(('img[rel='+this.getAttribute('rel')+']')).each( function(el, index) {
    				images.include([el.getAttribute('longdesc'), el.getAttribute('alt')]);
    				
    				if (this == el)
    					position = index;
    			}.bind(this));
    			window.Mediabox ? Mediabox.open(images, position) : Slimbox.open(images, position);
    		}
    	});
    });
    //--><!]]>
    </script>
    <!--end detailview-->
    <?php endif; ?>
    
    <!-- indexer::continue -->

  11. #11
    Contao-Fan Avatar von izanagi
    Registriert seit
    19.01.2011.
    Ort
    Köln
    Beiträge
    595

    Standard

    darf ich kurz hier stören ?
    Mein Uploader ist weg unter Album bearbeiten.
    Und wenn ich die Bilder aus dem verzeichnis ziehe bekomme ich
    PHP-Code:
    Warningfilesize() [function.filesize]: stat failed for 
    SMH läuft, Ordner 777, FTP alles korrekt.

  12. #12
    Contao-Fan Avatar von markocupic
    Registriert seit
    06.12.2010.
    Ort
    Oberkirch (Schweiz)
    Beiträge
    660

    Standard

    Izanagi

    Bei mir läuft alles tip-top! Hast du das neuste build?
    Kannst du mir die ganze Fehlermeldung mailen? Und evtl. Backendzugriff.
    Gruss Marko

  13. #13
    Contao-Fan Avatar von izanagi
    Registriert seit
    19.01.2011.
    Ort
    Köln
    Beiträge
    595

    Standard

    PHP-Code:

    Warning
    filesize() [function.filesize]: stat failed for /www/htdocs/adresse/bild.jpg in /www/htdocs/adresse/system/modules/web_gallery_creator/dca/tl_gallery_albums.php on line 897
    #0 /www/htdocs/w00e2d99/adresse/system/modules/web_gallery_creator/dca/tl_gallery_albums.php(897): __error(2, 'filesize() [createNewImage('/www/htdocs/w00...')
    #2 /www/htdocs/w00e2d99/adresse/system/drivers/DC_Table.php(200): tl_gallery_albums->importImages('tSE_1.jpg', 'tl_files/Galler...')
    #3 /www/htdocs/w00e2d99/adresse/system/modules/backend/Backend.php(173): DC_Table->__construct(Object(DC_Table))
    #4 /www/htdocs/w00e2d99/adresse/contao/main.php(101): Backend->getBackendModule('tl_gallery_albu...')
    #5 /www/htdocs/w00e2d99/adresse/contao/main.php(304): Main->run('web_gallery_cre...')
    #6 {main}


    Die Datei "bild.jpg" konnte nicht hochgeladen werden
    Ich benutze 2.9.1 mit deiner 1.0.8 stable build 20
    Mir fällt gerade auf. Beim aktualieren will deine Ext AJAX upgraden auf Build 3 dabei haben wir bereits Build 6

    EDIT: komisch und wenn ich die 1.0.8 installiert habe, sagt er in der Verwaltung es gibt eine aktualisierung auf 1.0.6
    also er will wieder zurück downgraden !?

    EDIT2: habe es nun downgraden lassen auf 1.0.6 aber der fehler ist immer noch
    Edit3: oh ha, habe garnicht gesehen das die Bilder dennoch eingelesen wurden, obwohl diese Fehlermeldung angezeigt wird. Ok es wird ja sowie nix hochgeladen ich nutze ja die Bilder vom Server.
    Geändert von izanagi (10.01.2012 um 21:56 Uhr)

  14. #14
    Contao-Fan Avatar von markocupic
    Registriert seit
    06.12.2010.
    Ort
    Oberkirch (Schweiz)
    Beiträge
    660

    Standard

    Gehe im Backend zum Erweiterungskatalog nicht Erweiterungsverwaltung! Suche nach gallery_creator. Das System zeigt dir dann die neuste Version an. 3.1.0 stable.
    Poste dann nochmals die Fehlermeldung, falls vorhanden.

    Liebe Grüsse

    Marko

  15. #15
    Contao-Fan Avatar von izanagi
    Registriert seit
    19.01.2011.
    Ort
    Köln
    Beiträge
    595

    Standard

    du bringst Sonne ins dunkle Tal. Ich habe tatsächlich eine alte Version die ganze Zeit gesucht.
    "Web_Gallery_Creator" kannte ich vom letzten jahr noch.

    Danke dir, klappt alles super

    ps. und sorry an den Threadinhaber für den Missbrauch

  16. #16
    Contao-Nutzer
    Registriert seit
    23.07.2010.
    Beiträge
    52

    Daumen hoch

    Sieht einfach großartig aus!

    Vielen dank!!!

  17. #17
    Contao-Nutzer
    Registriert seit
    30.04.2012.
    Beiträge
    3

    Standard

    Sieht wirklich klasse aus!!!

    Jetzt nur eine Frage, besteht die Möglichkeit, den imageflow als Albumübersicht und nicht in der Detailansicht ein zu fügen???

    Wäre wirklich dankbar für einen Tip.

    VG
    Tobias

  18. #18
    Contao-Nutzer
    Registriert seit
    30.04.2012.
    Beiträge
    3

    Standard

    Sodele hab es hin bekommen, funktioniert klasse und voll automatisch!

    Falls jemand Interesse hat, kann ich ihm gerne das Template schicken...

Aktive Benutzer

Aktive Benutzer

Aktive Benutzer in diesem Thema: 1 (Registrierte Benutzer: 0, Gäste: 1)

Lesezeichen

Lesezeichen

Berechtigungen

  • Neue Themen erstellen: Nein
  • Themen beantworten: Nein
  • Anhänge hochladen: Nein
  • Beiträge bearbeiten: Nein
  •