By Giuseppe Alessio Nuzzo on Thursday, 22 October 2015
Posted in General Issues
Replies 9
Likes 0
Views 295
Votes 0
Hi,
when I click on the groups or events in my community I have sometimes a error of visualization (see the screenshot 1 for error and see the screenshot 2 for correct visualization).
I wait yours.
Hey Giuseppe,

I have applied some fixes for you on the site, can you give this a try again now?
·
Thursday, 22 October 2015 00:55
·
0 Likes
·
0 Votes
·
0 Comments
·
All ok with the visualization.
When I stay in the a group and I click on the category link (under the avatar) I go in the category folder (with the news of the category, see screenshot 1); I would to have the opportunity to go at the category groups list (screenshot 2), is possibile?
·
Thursday, 22 October 2015 01:12
·
0 Likes
·
0 Votes
·
0 Comments
·
Hey Giuseppe,

You need to modify the link in the theme file /components/com_easysocial/themes/wireframe/groups/item.header.php


<a href="<?php echo FRoute::groups( array( 'layout' => 'category' , 'id' => $group->getCategory()->getAlias() ) );?>">
<?php echo $group->getCategory()->get( 'title' ); ?>
</a>


Change it to,


<a href="<?php echo FRoute::groups( array('categoryid' => $group->getCategory()->getAlias() ) );?>">
<?php echo $group->getCategory()->get( 'title' ); ?>
</a>
·
Thursday, 22 October 2015 01:29
·
0 Likes
·
0 Votes
·
0 Comments
·
I have copied the code in the folder but the link now don't work.
I wait yours
·
Thursday, 22 October 2015 02:12
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi there,

Try the following instead and see how it goes.
<a href="<?php echo FRoute::groups( array('categoryid' => $group->getCategory()->getAlias() ) );?>">
<?php echo $group->getCategory()->get( 'title' ); ?>
</a>
·
Thursday, 22 October 2015 11:19
·
0 Likes
·
0 Votes
·
0 Comments
·
nothing, don't work, you can try?
·
Thursday, 22 October 2015 17:37
·
0 Likes
·
0 Votes
·
0 Comments
·
Hey Giuseppe,

You cannot copy the preceeding / after the href=" because that / is generated by Joomla on our end.
·
Thursday, 22 October 2015 18:03
·
0 Likes
·
0 Votes
·
0 Comments
·
Sorry, I don't understand
·
Thursday, 22 October 2015 19:20
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi there,

Try download my attachment below and place it inside your /components/com_easysocial/themes/wireframe/groups/ folder and see how it goes.
·
Thursday, 22 October 2015 19:28
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post