-
AuthorPosts
-
November 15, 2012 at 4:47 pm #182268Ninja Lead Moderator
Ninja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
November 16, 2012 at 9:27 am #473121On this case we could not support on this, but you can try to do as follows. M suggestion will help you disable JA Thumbnail plugin on iPhone layout
<blockquote>Open plugins/content/plg_jathumbnail/plg_jathumbnail.php file</blockquote>
find this function “function article(&$article, &$params, $limitstart = 0)”
from
if (!$this->pluginParams->get('content_mode', 'auto')) {
$article->text = $this->removeCode($article->text);
return;
}
change to
$iphone = strpos($_SERVER['HTTP_USER_AGENT'],"iPhone");
if ($iphone !== false) {
return;
}
if (!$this->pluginParams->get('content_mode', 'auto')) {
$article->text = $this->removeCode($article->text);
return;
}
or you can download and extract my fixes on my attachment fileHope it helps
AuthorPostsViewing 2 posts - 1 through 2 (of 2 total)This topic contains 2 replies, has 2 voices, and was last updated by Ninja Lead 12 years, 1 month ago.
We moved to new unified forum. Please post all new support queries in our New Forum
Problem JA Thumbnail Plugin on MOBILE frontpage
Viewing 2 posts - 1 through 2 (of 2 total)