By Chaon on Saturday, 12 October 2019
Posted in General Issues
Likes 0
Views 796
Votes 0
Hello
Can you please assist me on making showcase module show on mobile same as grid view showcase?
In mobile the module shows the title right after the picture but i want to make it look as grid view showcase does i need the text overlay the picture. I think it's a viewport setting since in desktop it looks the way i want it.
Regards
Sorry but i also found out that for a weird reason showcase module displays wrong publish time of the article. Please assist me on how to fix this
·
Sunday, 13 October 2019 07:32
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello
Can you please assist me on making showcase module show on mobile same as grid view showcase?
In mobile the module shows the title right after the picture but i want to make it look as grid view showcase does i need the text overlay the picture. I think it's a viewport setting since in desktop it looks the way i want it.
Regards

Perhaps you can try 'sidenav' module layout from the showcase module and see how it goes? Because this module layout will show the text which overlay on the picture.

Then you have to apply this following CSS to show the blog title white color.


body #eb.mod-easyblogshowcase .eb-gallery-title {
color: #fff;
}



Sorry but i also found out that for a weird reason showcase module displays wrong publish time of the article. Please assist me on how to fix this

Perhaps you can show me some screenshot which blog post show the wrong publish date on the showcase module? Because I just checked on your showcase module, it seems fine for me.
·
Monday, 14 October 2019 10:59
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello
If you take a look on my website on the right sidebar there is the module easyblog recent articles that displays the correct time if you compare those times are different on the showcase. I guess its a joomla issue because the module is calling DATE_FORMAT_LC2 for thr joomla time zone . Can i apply a code fix on the module to show the timezone from easyblog?
·
Monday, 14 October 2019 13:55
·
0 Likes
·
0 Votes
·
0 Comments
·
I believe this is a bug on showcase module. To fix it i changed this

<?php echo $post->getCreationDate()->format($params->get('dateformat', JText::_('DATE_FORMAT_LC3'))); ?>

and added the true value on getCreationDate and looks like this

<?php echo $post->getCreationDate(true)->format($params->get('dateformat', JText::_('DATE_FORMAT_LC3'))); ?>

Now Showcase module returns the correct time
·
Monday, 14 October 2019 16:40
·
0 Likes
·
0 Votes
·
0 Comments
·
I am sorry for the delayed of this reply,

Thanks for reported, we will fix this in next release version.
·
Tuesday, 15 October 2019 12:18
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi there,

It seems that we can replicate them when you have set 'Website Time Zone' and it will included those timezone as well. I have logged them internally and we will see if we included them on our next release version.
·
Tuesday, 15 October 2019 12:26
·
0 Likes
·
0 Votes
·
0 Comments
·
Thank you
·
Tuesday, 15 October 2019 18:43
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi there,

You are most welcome and thanks for your understanding.

Just for your information, I have locked and marked this thread as resolved to avoid confusions in the future. Please start a new thread if you have any other issue in the future so it will be easier for us to manage your inquiries.
·
Tuesday, 15 October 2019 18:56
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post