We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 17412
    • 270 Posts
    Hi,
    I'm exploring the possibility of adding a 3rd party component (simple ecommerce panel) into the Manager. I'm not looking for deep integration (only at manager auth level). In EVO this could be simply achieved by capturing with an iFrame -> is there a similar technique to simply "capture" the app within a Manager page?

    Thanks.
      • 38360
      • 20 Posts
      I would start from here http://rtfm.modx.com/revolution/2.x/developing-in-modx/advanced-development/custom-manager-pages

      (follow the first three steps)

      Then you can add your custom index file.

      I also use the following commands to include some css and js

      $modx->regClientCSS($assetsUrl.'css/mystyles.css');
      $modx->regClientStartupScript($assetsUrl.'js/jquery-1.4.4.min.js');
      $modx->regClientStartupScript($assetsUrl.'js/myjs.js');
      


      then I use this to make it look like a manager page

      <div class='x-panel modx-page-header x-panel-noborder' >
      	<h2>A Page title</h2>
      </div>
      <div class='stage-panel-body'>
      </div>
      


      in here you sure can implement an iframe...