Hi Testcouch,
for the "equal" space, here the CSS for fixing it:
put this code at the bottom of /templates/ja_social_t3/css/custom.css
.cStream-Quote img {
margin-right: 10px;
}
Hi Testcouch,
This issue only happen at your site, I don't know why. for solution I swtich the position between those tabs
/components/com_community/templates/default/groups.viewgroup.php between lines 243 - 255.
Regards,
Albert
Albertus wrote: Hi Testcouch,
This issue only happen at your site, I don't know why. for solution I swtich the position between those tabs
/components/com_community/templates/default/groups.viewgroup.php between lines 243 - 255.
Regards,
Albert
Hi Testcouch,
after I investigated. I confirmed this is a bug. but I already put temporary fix for you, by using override (
documentation.jomsocial.com/wiki/Customizing_Template
):
/components/com_community/templates/default/groups.viewgroup.php line 304
from
if( $config->get('createannouncement') && $isMember)
if( $config->get('createannouncement') && ($isMember || $isSuperAdmin))
hello Albertus, thanks for your fix..i will double check this again! ;)
is that correct that announcement tabs not showed for joomla Usertype Members on a puplic Group?
please Check:
index.php?option=com_community&view=groups&task=viewgroup&groupid=46&Itemid=113
announcement Tab is not showed but announcement Link!?
Member Account Access in Private Site Info!
Hi Testcounch,
that a bug too. announcement only can viewable for group members and site admin. for the fix, please edit
/components/com_community/templates/default/groups.viewgroup.php line 76
from
<?php if($config->get('createannouncement')){?>
<?php if($config->get('createannouncement') && ($isMember || $isSuperAdmin)) { ?>
Albertus wrote: Hi Testcounch,
that a bug too. announcement only can viewable for group members and site admin. for the fix, please edit
/components/com_community/templates/default/groups.viewgroup.php line 76
fromto<?php if($config->get('createannouncement')){?><?php if($config->get('createannouncement') && ($isMember || $isSuperAdmin)) { ?>
Regards,
Albert
Albertus wrote: Hi Testcouch,
the last fix will be included at 3.2.1.6, sorry for this inconvenience but now I already put the fix by using override at /templates/ja_social_t3/html/com_community/
Regards,
Albert