- Сообщений: 62
- Спасибо получено: 1
Как создать и настроить свой веб-сервер на VDS (05 сен 2024)
Осенью самое время заняться установкой и тюнингом своего веб-сервера. Не правда ли?
Powered by iCagenda…
- beginner
- Автор темы
- Не в сети
- Захожу иногда
Less
Больше
9 года 11 мес. назад #1
от beginner
beginner создал тему: Powered by iCagenda…
Народ, прошу прощения если что не так, но посоветуйте, как удалить эту строчку - Powered by iCagenda - в последней версии компонента? (iCagenta 3.3..
Пожалуйста Войти или Регистрация, чтобы присоединиться к беседе.
- beginner
- Автор темы
- Не в сети
- Захожу иногда
Less
Больше
- Сообщений: 62
- Спасибо получено: 1
9 года 11 мес. назад #2
от beginner
beginner ответил в теме Powered by iCagenda…
Сам спросил, сам и отвчаю... в файле
удаляем все что там находится, в данном случае это строчка
И все.
Code:
media/com_icagenda/js/jsevt.js
удаляем все что там находится, в данном случае это строчка
Code:
<p><div style="text-align: center; font-size: 10px; text-decoration: none">Powered by <a href="http://www.joomlic.com" target="_blank" style="text-decoration: none !important;"><b>iCagenda</b></a></div></p>
И все.
Пожалуйста Войти или Регистрация, чтобы присоединиться к беседе.
- serge
- Не в сети
- Модератор
Less
Больше
- Сообщений: 980
- Спасибо получено: 146
9 года 11 мес. назад #3
от serge
А я смогу! - А поглядим! - А я упрямый!
serge ответил в теме Powered by iCagenda…
Гы. Хотя бы объяснил, что за зверь такой, iCagenta. Впрочем,
вижу
- сomponent for Event Management designed for Joomla 2.5 & 3.x.
А я смогу! - А поглядим! - А я упрямый!
Пожалуйста Войти или Регистрация, чтобы присоединиться к беседе.
- mrcypress
- Не в сети
- Новый участник
Less
Больше
- Сообщений: 1
- Спасибо получено: 0
8 года 4 мес. назад #4
от mrcypress
mrcypress ответил в теме Powered by iCagenda…
IMPORTANT...if the joomlaroot/media/com_icagenda/js/jsevt.js doesn't work...I found a solution!!!!!
Just go to [ROOT]/administrator/components/com_icagenda/utilities/.
There you can find the folder events.
Inside that folder you'll find the file events.php.
There you can find this:
public static function isListOfEvents()
{
$app = JFactory::getApplication();
$params = $app->getParams();
$list_of_events = $params->get('copy', '');
$core = $params->get('icsys');
$string = '<a href="ht';
$string.= 'tp://icag';
$string.= 'enda.jooml';
$string.= 'ic.com" target="_blank" style="font-weight: bold; text-decoration: none !important;">';
$string.= 'iCagenda';
$string.= '</a>';
$icagenda = JText::sprintf('ICAGENDA_THANK_YOU_NOT_TO_REMOVE', $string);
$default = 'Powered by ';
$footer = '<div style="text-align: center; font-size: 10px; text-decoration: none"><p>';
$footer.= preg_match('/iCagenda/',$icagenda) ? $icagenda : $default . $string;
$footer.= '</p></div>';
if ($list_of_events || $core == 'core')
{
echo $footer;
}
}
REMOVE "echo $footer;"
FIXED
Just go to [ROOT]/administrator/components/com_icagenda/utilities/.
There you can find the folder events.
Inside that folder you'll find the file events.php.
There you can find this:
public static function isListOfEvents()
{
$app = JFactory::getApplication();
$params = $app->getParams();
$list_of_events = $params->get('copy', '');
$core = $params->get('icsys');
$string = '<a href="ht';
$string.= 'tp://icag';
$string.= 'enda.jooml';
$string.= 'ic.com" target="_blank" style="font-weight: bold; text-decoration: none !important;">';
$string.= 'iCagenda';
$string.= '</a>';
$icagenda = JText::sprintf('ICAGENDA_THANK_YOU_NOT_TO_REMOVE', $string);
$default = 'Powered by ';
$footer = '<div style="text-align: center; font-size: 10px; text-decoration: none"><p>';
$footer.= preg_match('/iCagenda/',$icagenda) ? $icagenda : $default . $string;
$footer.= '</p></div>';
if ($list_of_events || $core == 'core')
{
echo $footer;
}
}
REMOVE "echo $footer;"
FIXED
Пожалуйста Войти или Регистрация, чтобы присоединиться к беседе.
- Aleksej
- Не в сети
- Модератор
8 года 4 мес. назад #5
от Aleksej
Great. Really cool.
Aleksej ответил в теме Powered by iCagenda…
mrcypress пишет: I found a solution!!!!!
Great. Really cool.
Пожалуйста Войти или Регистрация, чтобы присоединиться к беседе.