Recent Topics

1 Dec 12, 2011 03:14    

Hi all,
I'd like to put some code just before </head> but I can not have access to editing HTML. Can you show me how to?
Thanks a lot.

2 Dec 12, 2011 17:45

Welcome to the forums!

1. copy /skins/_html_footer.inc.php file into your skin e.g. /skins/mysqkin/_html_footer.inc.php
2. ... then edit it :)

3 Dec 13, 2011 01:45

is it the one you mean?

<?php
02
/**
03
* This is the HTML footer include template.
04
*
05
* For a quick explanation of b2evo 2.0 skins, please start here:
06
* {@link http://manual.b2evolution.net/Skins_2.0}
07
*
08
* This is meant to be included in a page template.
09
* Note: This is also included in the popup: do not include site navigation!
10
*
11
* @package evoskins
12
*/
13
if( !defined('EVO_MAIN_INIT') ) die( 'Please, do not access this page directly.' );
14

15
// Trigger plugin event, which could be used e.g. by a google_analytics plugin to add the javascript snippet here:
16
$Plugins->trigger_event('SkinEndHtmlBody');
17
?>
18

19
<!-- End of skin_wrapper -->
20
</div>
21

22
</body>
23
</html>


Form is loading...