By Michel Dubé on Wednesday, 30 January 2019
Posted in General Issues
Likes 0
Views 481
Votes 0
Hi!

Is it possible to get the icons in the story board always visible, like if "is-expanded" state is always visible?

If not may you could give me some cue to modify the good file to do it.

Thanks!

Michel
++++++++++++++++++++++++++++=
Hey Michel,

If you want the story form to always be expanded, all you need to do is to edit the theme file /components/com_easysocial/themes/wireframe/story/default.php and replace the codes below:

[gist]
<div class="es-story <?php echo $fromModule ? 'is-expanded' : 'is-collapsed'; ?>" data-story="<?php echo $story->id;?>" data-story-form data-story-hashtags="<?php echo implode(',', $story->hashtags); ?>" data-story-module="<?php echo $fromModule; ?>">
[/gist]

With,

[gist]
<div class="es-story is-expanded" data-story="<?php echo $story->id;?>" data-story-form data-story-hashtags="<?php echo implode(',', $story->hashtags); ?>" data-story-module="<?php echo $fromModule; ?>">
[/gist]
·
Wednesday, 30 January 2019 22:56
·
0 Likes
·
0 Votes
·
0 Comments
·
Thank you so much Mark!

A+
·
Wednesday, 30 January 2019 23:05
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi there,

You are most welcome. Glad to hear that your issue has been resolved now.

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.

Thanks for understanding.
·
Thursday, 31 January 2019 10:00
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post