Remove Help Icon
JEvents 2.0 was launched over 2 years ago and the latest stable version is version 2.2 which will run on Joomla 1.5 and Joomla 2.5. JEvents 1.5 is therefore no longer actively supported - you should upgrade to JEvents 2.2+ as soon as possible.
Forum rules
Please include as much detail in any test or bug reports for JEvents 1.5 as possible.
First of all, check if you are running the latest available version of Joomla! and JEvents. Posts for issues, where both systems are not updated, will be ignored.
We need the following at least:
* PHP version (e.g. 5.2.5). Note: Support for PHP4 is discontinued.
* Joomla! version
* JEvents version
* Web Server software (Apache or IIS with version number if possible)
* Server Operating system (e.g. Linux, Windows, Solaris, Darwin ...)
* Database version
* memory_limit from your phpinfo
* Web browser and version
Please enable error reporting and include any error messages in your posting. You do this via the Joomla Configuration - set "error reporting" to "maximum" on the Server tab.
Finally, please describe the steps required to recreate the problem and also please enable error reporting and give us any error messages generated.
Please include as much detail in any test or bug reports for JEvents 1.5 as possible.
First of all, check if you are running the latest available version of Joomla! and JEvents. Posts for issues, where both systems are not updated, will be ignored.
We need the following at least:
* PHP version (e.g. 5.2.5). Note: Support for PHP4 is discontinued.
* Joomla! version
* JEvents version
* Web Server software (Apache or IIS with version number if possible)
* Server Operating system (e.g. Linux, Windows, Solaris, Darwin ...)
* Database version
* memory_limit from your phpinfo
* Web browser and version
Please enable error reporting and include any error messages in your posting. You do this via the Joomla Configuration - set "error reporting" to "maximum" on the Server tab.
Finally, please describe the steps required to recreate the problem and also please enable error reporting and give us any error messages generated.
Remove Help Icon
by stewartshram » Fri Mar 27, 2009 10:01 am
Is there a way to remove the help icon in the top right hand corner of the calendar.
Many Thanks
Many Thanks
- stewartshram
- Posts: 7
- Joined: Tue Dec 16, 2008 2:30 pm
Re: Remove Help Icon
by Geraint » Fri Mar 27, 2009 10:29 am
It has a CSS class associated with it so you can hide it with your stylesheet.
------------
JEvents club members can get priority forum support at the Support Forum. As well as access to a variety of custom JEvents addons and benefits.
Join the JEvents club today!
JEvents club members can get priority forum support at the Support Forum. As well as access to a variety of custom JEvents addons and benefits.
Join the JEvents club today!
-

Geraint - Posts: 30507
- Joined: Fri Feb 15, 2008 6:14 pm
Re: Remove Help Icon
by stewartshram » Fri Mar 27, 2009 10:43 am
Thanks for the reply, I have now found this in:-
components\com_jevents\views\default\helpers\defaultviewhelperheader.php
I have plinged out the code so it now shows this:-
/*echo '<td class="buttonheading" align="right">';
*echo '<a href="http://www.jevents.net" target="_blank">'
*. "<img src=\"" . JURI::root() . "components/".JEV_COM_COMPONENT."/views/".$view->getViewName()."/assets/images/help.gif\" border=\"0\" alt=\"help\" />"
*. "</a>";
*echo "</td>"
*/
components\com_jevents\views\default\helpers\defaultviewhelperheader.php
I have plinged out the code so it now shows this:-
/*echo '<td class="buttonheading" align="right">';
*echo '<a href="http://www.jevents.net" target="_blank">'
*. "<img src=\"" . JURI::root() . "components/".JEV_COM_COMPONENT."/views/".$view->getViewName()."/assets/images/help.gif\" border=\"0\" alt=\"help\" />"
*. "</a>";
*echo "</td>"
*/
- stewartshram
- Posts: 7
- Joined: Tue Dec 16, 2008 2:30 pm
Re: Remove Help Icon
by enkode » Wed Jul 15, 2009 3:57 pm
You can also just remove the following code from /components/com_jevents/views/default/helpers/defaultviewhelperheader.php
But of course this isnt suggested since is part of the original source. These guys worked hard on this, they deserve some credit.
- Code: Select all
<table class="contentpaneopen jeventpage<?php echo $params->get( 'pageclass_sfx' ); ?>" id="jevents_header">
<tr>
<td class="contentheading" width="100%">
<?php
$t_headline = ' ';
switch ($cfg->get('com_calHeadline', 'comp')) {
case 'none':
$t_headline = ' ';
break;
case 'menu':
$menu2 =& JSite::getMenu();
$menu = $menu2->getActive();
if (isset($menu) && isset($menu->name)) {
$t_headline = $menu->name;
}
break;
default:
$t_headline = JText::_('JEV_EVENT_CALENDAR');
break;
}
echo $t_headline;
?>
</td>
<?php
$task = JRequest::getString("jevtask");
if ($cfg->get('com_print_icon_view', 1)){
$print_link = 'index.php?option=' . JEV_COM_COMPONENT
. '&task=' . $task
. ($evid ? '&evid=' . $evid : '')
. ($jevtype ? '&jevtype=' . $jevtype : '')
. ($view->year ? '&year=' . $view->year : '')
. ($view->month ? '&month=' . $view->month : '')
. ($view->day ? '&day=' . $view->day : '')
. $view->datamodel->getItemidLink()
. $view->datamodel->getCatidsOutLink()
. '&pop=1'
. '&tmpl=component';
$print_link = JRoute::_($print_link);
if ($pop) { ?>
<td width="20" class="buttonheading" align="right">
<a href="javascript:void(0);" onclick="javascript:window.print(); return false;" title="<?php echo JText::_('JEV_CMN_PRINT'); ?>">
<img src="<?php echo JURI::root();?>images/M_images/printButton.png" align="middle" name="image" border="0" alt="<?php echo JText::_('JEV_CMN_PRINT');?>" />
</a>
</td> <?php
} else { ?>
<td width="20" class="buttonheading" align="right">
<a href="javascript:void(0);" onclick="window.open('<?php echo $print_link; ?>', 'win2', 'status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=600,height=600,directories=no,location=no');" title="<?php echo JText::_('JEV_CMN_PRINT'); ?>"><img src="<?php echo JURI::root(); ?>images/M_images/printButton.png" align="middle" name="image" border="0" alt="<?php echo JText::_('JEV_CMN_PRINT'); ?>" /></a>
</td> <?php
}
}
echo '<td class="buttonheading" align="right">';
echo '<a href="http://www.jevents.net" target="_blank">'
. "<img src=\"" . JURI::root() . "components/".JEV_COM_COMPONENT."/views/".$view->getViewName()."/assets/images/help.gif\" border=\"0\" alt=\"help\" class='jev_help' />"
. "</a>";
echo "</td>"
?>
</tr>
</table>
But of course this isnt suggested since is part of the original source. These guys worked hard on this, they deserve some credit.
- enkode
- Posts: 6
- Joined: Wed Jul 15, 2009 3:52 pm
Re: Remove Help Icon
by pcnw » Thu Sep 17, 2009 12:06 pm
it was well hidden
thank you stewartshram and enkode ! This component now is very usefull and can do many things.
Thanks to the developer too, I will donate !!!
thank you stewartshram and enkode ! This component now is very usefull and can do many things.
Thanks to the developer too, I will donate !!!
-

pcnw - Posts: 1
- Joined: Wed Sep 16, 2009 5:10 pm
- Location: Αθήνα, Χανιά
Re: Remove Help Icon
by ductape » Tue May 11, 2010 4:47 am
I am trying to find the code to remove in the ext template, and i have tried removing everything mentioned in this thread, no help.
Exactly, might I ask, was this made so difficult to do when removing the email and print icons is so easy. If you really must have a link going back to your website, why not try putting it somehwere that doesnt look so bad.
Please, someone help me remove this icon?
Exactly, might I ask, was this made so difficult to do when removing the email and print icons is so easy. If you really must have a link going back to your website, why not try putting it somehwere that doesnt look so bad.
Please, someone help me remove this icon?
- ductape
- Posts: 15
- Joined: Tue Feb 09, 2010 11:36 pm
Re: Remove Help Icon
by AlexRag » Thu Jun 24, 2010 6:30 pm
I am also looking for a way to remove the link. Is the above the only way? Is there any danger in removing the code as suggested? I also notice my code is not the same as illustrated above. the bottom block of code doesn't exist in the version I'm running (1.54)
My client does not want his visitors to be pulled away from his site by the link.
I have purchase your gold membership.
thank you.
- Code: Select all
[i](}
echo '<td class="buttonheading" align="right">';
echo '<a href="http://www.jevents.net" target="_blank">'
. "<img src=\"" . JURI::root() . "components/".JEV_COM_COMPONENT."/views/".$view->getViewName()."/assets/images/help.gif\" border=\"0\" alt=\"help\" class='jev_help' />"
. "</a>";
echo "</td>"
?>
</tr>
</table>)[/i]
My client does not want his visitors to be pulled away from his site by the link.
I have purchase your gold membership.
thank you.
- AlexRag
- Posts: 26
- Joined: Tue Jun 22, 2010 4:44 pm
Re: Remove Help Icon
by Geraint » Fri Jun 25, 2010 8:31 am
------------
JEvents club members can get priority forum support at the Support Forum. As well as access to a variety of custom JEvents addons and benefits.
Join the JEvents club today!
JEvents club members can get priority forum support at the Support Forum. As well as access to a variety of custom JEvents addons and benefits.
Join the JEvents club today!
-

Geraint - Posts: 30507
- Joined: Fri Feb 15, 2008 6:14 pm
Re: Remove Help Icon
by Nadja » Fri Feb 15, 2013 6:44 pm
For Joomla 2.5 and jevents 2.2, remove the following information
echo '<a href="http://www.jevents.net" target="_blank">'
. "<img src=\"" . JURI::root() . "components/".JEV_COM_COMPONENT."/views/".$view->getViewName()."/assets/images/help.gif\" border=\"0\" alt=\"help\" class='jev_help' />"
. "</a>";
from components > com_jevents > views > default > helpers > defaultinformation16.php
Same trick as in V1.5.2 but hidden in another component. Hope this helps.
echo '<a href="http://www.jevents.net" target="_blank">'
. "<img src=\"" . JURI::root() . "components/".JEV_COM_COMPONENT."/views/".$view->getViewName()."/assets/images/help.gif\" border=\"0\" alt=\"help\" class='jev_help' />"
. "</a>";
from components > com_jevents > views > default > helpers > defaultinformation16.php
Same trick as in V1.5.2 but hidden in another component. Hope this helps.
- Nadja
- Posts: 1
- Joined: Fri Feb 15, 2013 5:48 pm
9 posts
• Page 1 of 1
Return to JEvents 1.5 (No longer actively supported)
Who is online
Users browsing this forum: Google [Bot]

