By Domenico Marascio on Friday, 28 February 2014
Posted in Technical Issues
Replies 7
Likes 0
Views 521
Votes 0
hello, I have a problem with the module EasyBlog showcase, the images change when they overlap. How do I solve this problem?
I enclose a picture
Hello Domenico,

It happens because the showcase module is designed for horizontal placement. And seems like you've placed the module vertically.
·
Friday, 28 February 2014 18:27
·
0 Likes
·
0 Votes
·
0 Comments
·
How can I resolve to let them form?
·
Friday, 28 February 2014 18:33
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Domenico,

I've made a temporary fix for you. You might want to go to this file ..\modules\mod_showcase\tmpl\default.php, Copy this javascript and replace it with the existing javascript tag.


<script type="text/javascript">
EasyBlog.require()
.script( 'featured' )
.done(function( $ ){

$( '.showcaseModule' ).implement( EasyBlog.Controller.Featured.Scroller ,
{
autorotate : {
enabled : <?php echo $params->get( 'autorotate' ) == '0' ? 'false' : 'true';?>,
interval: <?php echo $params->get( 'autorotate_seconds' );?>
},
"{slider}" : '.mod-showcase-list',
"{sliderNavigation}" : '.showcase-navi .showcase-a a'
},
function(){

});

var items = $('.showcase-item'),
maxHeight = 0;

$.each(items, function(i, item) {
var itemHeight = $(item).height();

maxHeight = itemHeight > maxHeight ? itemHeight : maxHeight;
});

$('.slider-holder').height(maxHeight);

});
</script>


Hope this helps.
·
Friday, 28 February 2014 18:44
·
0 Likes
·
0 Votes
·
0 Comments
·
ok thank you soo much
·
Friday, 28 February 2014 18:53
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Domenico,

You're welcome.
·
Friday, 28 February 2014 18:59
·
0 Likes
·
0 Votes
·
0 Comments
·
nothing, does not work the same. instead of displaying the images, I can only see the titles of blogs, one below the other?
·
Friday, 28 February 2014 19:04
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Domenico,

I could not find your showcase module in your template. could you direct me area where it is displyed?

Thanks:)
·
Saturday, 01 March 2014 01:39
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post