Totally Zenned
- Join Date:
- Sep 2008
- Location:
- DownUnder, overlooking South Pole.
- Posts:
- 1,016
- Plugin Contributions:
- 2
Advice on iframe
The existing Event Calendar mod requires an iframe and the following edit:
4)Edit includes/templates/your_template/common/tpl_main_page.php
//Add at top first line before "<?php " this code:
<?php
if (isset($_GET['eventmode']) && $_GET['eventmode'] == 'eventframe') {
require($body_code);
}else{
?>
//Add at bottom last line after "?> " this code:
<?php
}
?>
With many advocating against the use of iframes in zencart:
Is the iframe arrangement in Event Calendar OK to use?
If not, how should Event Calendar be modified to exclude the iframe?
Thanks