By Justin on Thursday, 11 June 2015
Posted in General Issues
Replies 3
Likes 0
Views 0.9K
Votes 0
Hi there,

Is it possible to keep the "Share What's New..." story box expanded at all times vs. it being collapsed until clicked on?

Thanks,
Justin
Hello Justin,

Currently there is not setting to do so. You can however manually hack the code to keep the story box open when the page is first loaded. Go to your /components/com_easysocial/themes/wireframe/story/default.php and located the following html code at line 14:
<div class="es-story es-responsive is-collapsed" data-story="<?php echo $story->id;?>" data-story-form data-story-hashtags="<?php echo implode(',', $story->hashtags); ?>">
// Replace it with
<div class="es-story es-responsive is-expanded" data-story="<?php echo $story->id;?>" data-story-form data-story-hashtags="<?php echo implode(',', $story->hashtags); ?>">


Hope these help.
·
Thursday, 11 June 2015 13:29
·
0 Likes
·
0 Votes
·
0 Comments
·
Perfect! Thanks Ezrul!
·
Thursday, 11 June 2015 21:42
·
0 Likes
·
0 Votes
·
0 Comments
·
You are most welcome Justin.
·
Friday, 12 June 2015 11:04
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post