JP ICE - Roksprocket Mosaic
ich würde beim Klick auf das Einleitungsbild (Mosaik-Modul) gern den Loadmore-Link statt einer Lightbox nutzen. Geht das, und wenn ja, wie?
Danke im Voraus.
Please Log in or Create an account to join the conversation.
- joomlaplates
- Offline
- Moderator
- Posts: 8807
- Thank you received: 1732
beim Ice Template wird im Mosaic Module kein Popup geöffnet, ausser das Bild natürlich.
Wenn sie den normnalen Style verwenden möchtzen, dann müssen sie folgenden Ordern umbenennen:
Attachment ice.jpg not found
www.joomlaplates.de/dokumentation.html
Attachments:
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
- joomlaplates
- Offline
- Moderator
- Posts: 8807
- Thank you received: 1732
dass ist eigentlich nicht möglich.
Url bitte und löschen sie mal den Cache
www.joomlaplates.de/dokumentation.html
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
- joomlaplates
- Offline
- Moderator
- Posts: 8807
- Thank you received: 1732
Folgende Datei anpassen
\jp-ice\roksprocket\layouts\mosaic\themes\default\item.php
Vorher
<?php if ($item->getPrimaryImage()) >
<div class="sprocket-mosaic-image-container">
<a href="<?php echo $item->getPrimaryImage()->getSource(); ?>" data-uk-lightbox title="<?php echo $item->getPrimaryImage()->getAlttext(); ?>"><img src="<?php echo $item->getPrimaryImage()->getSource(); ?>" alt="<?php echo $item->getPrimaryImage()->getAlttext(); ?>" class="sprocket-mosaic-image" />
<span class="item-image-backdrop"></span></a>
</div>
<?php endif; ?>
Danach
<?php if ($item->getPrimaryImage()) >
<div class="sprocket-mosaic-image-container">
<img src="<?php echo $item->getPrimaryImage()->getSource(); ?>" alt="<?php echo $item->getPrimaryImage()->getAlttext(); ?>" class="sprocket-mosaic-image" />
<span class="item-image-backdrop"></span>
</div>
<?php endif; ?>
www.joomlaplates.de/dokumentation.html
Please Log in or Create an account to join the conversation.