End of Support for Joomla 3 - Forum closed
RokSprocket Mosaik im Content
Hallo, ich habe RockSprocket Mosaik als Bildergalerie in ein Content mit eingebunden z.B. mit [module-282]. Siehe hier:
www.schwarzwaldgrund-tonbach.com/appartements/appartement-typ-1
Nun ist aber das Problem das wenn ich die Bilder anklicke und durchblättere erscheinen alle Bilder, auch die von anderen Appartements. Ich möchte aber im jeweiligen Content nur die Bilder welche ich dem jeweiligen Appartement zugeordnet habe.
Wo liegt das Problem? Danke für eine Info.
Nun ist aber das Problem das wenn ich die Bilder anklicke und durchblättere erscheinen alle Bilder, auch die von anderen Appartements. Ich möchte aber im jeweiligen Content nur die Bilder welche ich dem jeweiligen Appartement zugeordnet habe.
Wo liegt das Problem? Danke für eine Info.
by itprax
Please Log in or Create an account to join the conversation.
- joomlaplates
- Offline
- Moderator
- Posts: 8807
- Thank you received: 1732
Hello,
open the file:
...templates\jp-perfect2\roksprocket\layouts\mosaic\themes\gallery\item.php
And replace the complete code with the following code
open the file:
...templates\jp-perfect2\roksprocket\layouts\mosaic\themes\gallery\item.php
And replace the complete code with the following code
Code:
<?php
/**
* @version $Id: item.php 23394 2014-10-09 15:22:10Z james $
* @author RocketTheme http://www.rockettheme.com
* @copyright Copyright (C) 2007 - 2015 RocketTheme, LLC
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 only
*/
/**
* @var $item RokSprocket_Item
*/
?>
<li<?php echo strlen($item->custom_tags) ? ' class="'.$item->custom_tags.'"' : ''; ?> data-mosaic-item>
<div class="sprocket-mosaic-item" data-mosaic-content>
<?php echo $item->custom_ordering_items; ?>
<div class="sprocket-padding">
<?php if ($item->getPrimaryImage()) :?>
<div class="sprocket-mosaic-image-container">
<a href="<?php echo $item->getPrimaryImage()->getSource(); ?>" data-uk-lightbox="{group:'<?php echo $item->getTitle();?>'}" title="<?php echo $item->getTitle();?>" ><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; ?>
</div>
</div>
</li>
Dokumentation:
www.joomlaplates.de/dokumentation.html
www.joomlaplates.de/dokumentation.html
by joomlaplates
Please Log in or Create an account to join the conversation.
Moderators: joomlaplates