Zen Cart Logo
Forums / All Other Contributions/Addons / Advice on iframe

Advice on iframe

Locked

Views: 752

Results 1 to 3 of 3
This thread is locked. New replies are disabled.
18 Dec 2010, 5:38 PM
#1
dw08gm avatar

dw08gm

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

18 Dec 2010, 6:58 PM
#2
kobra avatar

kobra

Black Belt

Join Date:
Aug 2005
Location:
Arizona
Posts:
31,500
Plugin Contributions:
4

Re: Advice on iframe

With many advocating against the use of iframes in zencart:
That would be not placing the main cart app inside an iframe

19 Dec 2010, 9:33 PM
#3
dw08gm avatar

dw08gm

Totally Zenned

Join Date:
Sep 2008
Location:
DownUnder, overlooking South Pole.
Posts:
1,016
Plugin Contributions:
2

Re: Advice on iframe

I get it now thanks. That will save me a lot of bother.