html/com_community/ missing

Professional Joomla social template with metro design and JomSocial extension support.
Rate this topic: Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.1.00 out of 6 based on 1 vote(s)
GK User
Tue Apr 14, 2015 11:59 am
Reply with quote
Report this post
Greetings,
first of all THANK YOU ! for upgrading 3.17 ... there is a missing html/com_community/ on the upgrade pack 3.17 on (m)social . Please check !

Thank you in advance !
User avatar
Gold Boarder

GK User
Tue Apr 14, 2015 1:44 pm
Reply with quote
Report this post
Hello,

yes, this directory is missing, because our support for JomSocial 4 needs only jomsocial.css file without overrides.
User avatar
Administrator

GK User
Tue Apr 14, 2015 1:53 pm
Reply with quote
Report this post
also html/com_content/form is missing ... is it right so ?
User avatar
Gold Boarder

GK User
Tue Apr 14, 2015 2:03 pm
Reply with quote
Report this post
yes, it was a small mistake in the changelog (this directory wasn't marked as the removed one) - we will update it soon :)
User avatar
Administrator

GK User
Tue Apr 14, 2015 5:19 pm
Reply with quote
Report this post
I've found at the over all look, some issues on the new (m)social jomsocial 4.x . can we debug here or into a new topic ?
User avatar
Gold Boarder

GK User
Tue Apr 14, 2015 10:29 pm
Reply with quote
Report this post
Please write here - it can be useful when we will develop next templates with JS4 support.
User avatar
Administrator

GK User
Wed Apr 15, 2015 8:53 am
Reply with quote
Report this post
1. The avatar image over profile cover image in profile page must be look like the group avatar over group cover image in group page, right ? I think is something wrong at the <svg .... > syntax code.
2. When you upload and publish 5, 6 ...9 ... images once this must be look on the streaming page into a compact way. not putting all images one above the other at the full size, right ? is something wrong with this since the 3.16 upgrade

thank you for your support !
User avatar
Gold Boarder

GK User
Thu Apr 16, 2015 9:30 am
Reply with quote
Report this post
With all my respect for you guys ... I need your support to solve this issues ...
User avatar
Gold Boarder

GK User
Thu Apr 16, 2015 12:53 pm
Reply with quote
Report this post
Hello again,

Regarding your issues

1. I don't understand what is an issue in this case - as I see both pages and their avatars look very similar.

2. Please replace in joomla.css the following code:

Code: Select all
section img {
   height: auto!important;
   max-width: 100%!important
}


to:

Code: Select all
section img {
   height: auto;
   max-width: 100%!important
}
User avatar
Administrator

GK User
Thu Apr 16, 2015 4:16 pm
Reply with quote
Report this post
Thank you dziudek, issue 2 solved ! about issue 1. see attachment and look the avatar position. you'll see what I'm talking about.

I'm suspecting the differences in code of the <svg> wich in the case of the avatar from profile ( where the issue is ) looking like :
Code: Select all
<svg class="joms-icon" viewBox="0 0 16 16" onclick="joms.api.avatarChange('profile', '297', arguments &amp;&amp; arguments[0]); return false; ">

and in avatar of the group ( where is apear normal ) looks like :
Code: Select all
<svg class="joms-icon" viewBox="0 0 16 16" onclick="joms.api.avatarChange('group', '2', arguments &amp;&amp; arguments[0]);">


Thank you in advance for your support.
User avatar
Gold Boarder

GK User
Thu Apr 16, 2015 11:09 pm
Reply with quote
Report this post
I don't have this issue, but please try to add the following CSS code:

Code: Select all
.cProfile .joms-focus__header .joms-avatar--focus img {
height: 56px!important;
width: 56px!important;
}
User avatar
Administrator

GK User
Tue Apr 28, 2015 6:27 pm
Reply with quote
Report this post
Untitled-2.jpg
Greetings dziudek,
Please help me to make a nice looking mobile (M)social and jomsocial layout.
Please advice how to improve the layout on mobile. See attachment to understand better the issues.

thank you in advance for your support
User avatar
Gold Boarder

GK User
Sat May 02, 2015 12:50 pm
Reply with quote
Report this post
I solved the small logo on mobile view with mobile.css ... but the layout optimisation of jomsocial on small resolutions as mobile is still an issue ... please support.
User avatar
Gold Boarder

GK User
Mon May 04, 2015 10:54 am
Reply with quote
Report this post
We will address this issues in the next update.
User avatar
Administrator

GK User
Thu May 07, 2015 5:32 pm
Reply with quote
Report this post
I found a solution for the second issue with the layout space under avatar in mobile small screen view.
Ițve made a fixed header but I have an issue : I need to show the breadcrumb position ( the all rest of layout ) starting under fixed header not behind please support.
User avatar
Gold Boarder

GK User
Mon May 11, 2015 10:13 am
Reply with quote
Report this post
Please support me regarding those issues ...
User avatar
Gold Boarder

GK User
Mon May 11, 2015 2:48 pm
Reply with quote
Report this post
In this case please move the following block in the layouts/default.php file:

Code: Select all
<?php if($this->API->modules('breadcrumb')) : ?>
           <div id="gkBreadcrumb">
                <div class="gkPage">
                        <?php if($this->API->modules('breadcrumb')) : ?>
                        <jdoc:include type="modules" name="breadcrumb" style="<?php echo $this->module_styles['breadcrumb']; ?>" />
                        <?php endif; ?>
                </div>
           </div>
           <?php endif; ?>


to other place in the layout structure.
User avatar
Administrator

GK User
Mon May 11, 2015 3:40 pm
Reply with quote
Report this post
Greetings,
the problem is THAT by making fixed header all pages are loading behind header making them not visible entirely ... I need to put a padding top ( or something else ) for all pages to load below the header and not behind it. ( just moving in other place the breadcrumb position not resolve the issue )
User avatar
Gold Boarder

GK User
Mon May 11, 2015 10:20 pm
Reply with quote
Report this post
Please set padding top for the #system-message-container selector:

Code: Select all
#system-message-container {
padding-top: 80px!important;
}


Please adjust the 80px value to your need.
User avatar
Administrator