By Christophe on Thursday, 01 March 2018
Posted in General Issues
Likes 0
Views 494
Votes 0
Hi,
How can I move up the Event categories (not the Joomla module but the one on the Events page ==> see capture) ?
Thanks
Hello,

You can move it by editing this file : ../components/com_easysocial/themes/wireframe/events/default/sidebar.php. Here is the code that render categories: http://take.ms/cVcOV . However, it is not as simple as move it up and down. When moving this div, it must be wrapped by <?php if ($browseView) { ?><?php } ?> .


<?php if ($browseView) { ?>
<div class="es-side-widget">
<?php echo $this->html('widget.title', 'COM_EASYSOCIAL_EVENTS_CATEGORIES_SIDEBAR_TITLE'); ?>
<div class="es-side-widget__bd">
<?php echo $this->html('cluster.categoriesSidebar', SOCIAL_TYPE_EVENT, $activeCategory) ?>
</div>
</div>
<?php } ?>


Hope this helps.
·
Thursday, 01 March 2018 10:40
·
0 Likes
·
0 Votes
·
0 Comments
·
ok thanks
·
Thursday, 01 March 2018 21:29
·
0 Likes
·
0 Votes
·
0 Comments
·
You are most welcome Christophe
·
Thursday, 01 March 2018 22:54
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post