By Kris D'hoe on Wednesday, 30 May 2018
Posted in General Issues
Likes 0
Views 586
Votes 0
Hello

on my phone the easy articles is mobile friendly
on my colleague his phone, both samsung s8, it's not mobile friendly
on iphone of my boss, also not mobile friendly?

regards
I already consult with our designer regarding this, it seems like that is your template issue only happen on 3rd party component.

We already applied this following changes from your site under this file -> JoomlaFolder/templates/bloghf/component.php


<?php
defined('_JEXEC') or die;
?>
<!DOCTYPE html>
<html dir="ltr" lang="<?php echo $this->language; ?>">
<head>
<jdoc:include type="head" />
<link rel="stylesheet" href="<?php echo $this->baseurl; ?>/templates/system/css/system.css" type="text/css" />
<link rel="stylesheet" href="<?php echo $this->baseurl; ?>/templates/system/css/general.css" type="text/css" />
<link rel="stylesheet" href="<?php echo $this->baseurl . '/templates/' . $this->template; ?>/css/print.css" type="text/css" />
</head>
<body class="contentpane">
<jdoc:include type="message" />
<jdoc:include type="component" />
</body>
</html>


Replace to :

<?php
defined('_JEXEC') or die;
?>
<!DOCTYPE html>
<html dir="ltr" lang="<?php echo $this->language; ?>">
<head>
<jdoc:include type="head" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="<?php echo $this->baseurl; ?>/templates/system/css/system.css" type="text/css" />
<link rel="stylesheet" href="<?php echo $this->baseurl; ?>/templates/system/css/general.css" type="text/css" />
<link rel="stylesheet" media="mediatype and|not|only (expressions)" href="<?php echo $this->baseurl . '/templates/' . $this->template; ?>/css/print.css" type="text/css" />
</head>
<body class="contentpane">
<jdoc:include type="message" />
<jdoc:include type="component" />
</body>
</html>


Now I already revert back your Dashboard menu template style to use default, can you give it a check again?

Make sure you have clear your browser cache from your mobile before you test.
·
Thursday, 31 May 2018 10:32
·
0 Likes
·
0 Votes
·
0 Comments
·
It seems like something related with your current template CSS styling, for now I've help you assign to this 'Dashboard' menu template to use protostar temporary.

I will ask our designer to check on this tomorrow.

And can you download my attached file and replace into this Joomlafolder/plugins/system/easyarticles/themes/quickposting.php and see how it goes.
·
Wednesday, 30 May 2018 18:38
·
0 Likes
·
0 Votes
·
0 Comments
·
seems to be working

regards.

kris
·
Thursday, 31 May 2018 15:23
·
0 Likes
·
0 Votes
·
0 Comments
·
It would be best if you can report this to your template provider regarding this, so other user will not hit the same issue.

By the way, glad to heard your issue resolved.

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 May 2018 17:25
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post