/components/com_community/templates/default/photos.photo.php
Есть строка:
<?php
// no direct access
defined('_JEXEC') or die('Restricted access');
if( $photos )
{
?>
<link rel="stylesheet" type="text/css" href="<?php echo JURI::root(); ?>components/com_community/assets/imgareaselect/css/imgareaselect-default.css" />
<script type="text/javascript" src="<?php echo JURI::root(); ?>components/com_community/assets/imgareaselect/scripts/jquery.imgareaselect.pack.js"></script>
Её надо исправить на эту:
<?php
// no direct access
defined('_JEXEC') or die('Restricted access');
if( $photos )
{
?>
<?php
$document = &JFactory::getDocument();
$document->addStyleSheet(''.JURI::root().'components/com_community/assets/imgareaselect/css/imgareaselect-default.css');
?>
<script type="text/javascript" src="<?php echo JURI::root(); ?>components/com_community/assets/imgareaselect/scripts/jquery.imgareaselect.pack.js"></script>
Ещё ищем:
<img class="photoImage"/>
Правим на:
<img class="photoImage" src="" alt="" />

Ещё здесь
/components/com_community/templates/default/profile.uploadavatar.php
Ищем
<?php
/**
* @package JomSocial
* @subpackage Template
* @copyright (C) 2008 by Slashes & Dots Sdn Bhd - All rights reserved!
* @license GNU/GPL, see LICENSE.php
*
* @param my Current browser's CUser object.
**/
defined('_JEXEC') or die();
?>
<?php if ($firstLogin) { ?>
<div class="skipLink">
<a href="<?php echo $skipLink; ?>"class="saveButton"><span><?php echo JText::_('COM_COMMUNITY_SKIP_UPLOAD_AVATAR'); ?></span></a>
</div>
<?php } ?>
<!-- JS and CSS for imagearea selection -->
<link rel="stylesheet" type="text/css" href="<?php echo JURI::root(); ?>components/com_community/assets/imgareaselect/css/imgareaselect-default.css" />
<script type="text/javascript" src="<?php echo JURI::root(); ?>components/com_community/assets/imgareaselect/scripts/jquery.imgareaselect.pack.js"></script>
Меняем
<?php
/**
* @package JomSocial
* @subpackage Template
* @copyright (C) 2008 by Slashes & Dots Sdn Bhd - All rights reserved!
* @license GNU/GPL, see LICENSE.php
*
* @param my Current browser's CUser object.
**/
defined('_JEXEC') or die();
?>
<?php if ($firstLogin) { ?>
<div class="skipLink">
<a href="<?php echo $skipLink; ?>"class="saveButton"><span><?php echo JText::_('COM_COMMUNITY_SKIP_UPLOAD_AVATAR'); ?></span></a>
</div>
<?php } ?>
<!-- JS and CSS for imagearea selection -->
<?php
$document = &JFactory::getDocument();
$document->addStyleSheet(''.JURI::root().'components/com_community/assets/imgareaselect/css/imgareaselect-default.css');
?>
<script type="text/javascript" src="<?php echo JURI::root(); ?>components/com_community/assets/imgareaselect/scripts/jquery.imgareaselect.pack.js"></script>
/components/com_community/templates/default/groups.search.submenu.php
<input type="submit" value="<?php echo JText::_('COM_COMMUNITY_SEARCH'); ?>">
На
<input type="submit" value="<?php echo JText::_('COM_COMMUNITY_SEARCH'); ?>" />
/components/com_community/templates/default/videos.search.submenu.php
<input type="submit" value="<?php echo JText::_('COM_COMMUNITY_SEARCH'); ?>">
На
<input type="submit" value="<?php echo JText::_('COM_COMMUNITY_SEARCH'); ?>" />
/components/com_community/templates/default/videos.video.php
<input id="video-permalink" type="text" readonly="" onclick="joms.jQuery(this).focus().select()" value="<?php echo $video->getPermalink(); ?>" name="video_link" />
На
<input id="video-permalink" type="text" readonly="readonly" onclick="joms.jQuery(this).focus().select()" value="<?php echo $video->getPermalink(); ?>" name="video_link" />
/components/com_community/libraries/videos/youtube.php
Нет решений
/components/com_community/templates/default/groups.viewgroup.php - не уверен
<div class="app-box-content">
<div id="community-group-container">
на
<div class="app-box-content">
<div id="Community-group-container">