Jump to content

VIP AIR Virtual

Members
  • Posts

    8
  • Joined

  • Last visited

Posts posted by VIP AIR Virtual

  1. Is it possible to set a different template than the default for one page only. I am creating a module, and need it to be set to a different template then my default template, for a page.

    Thanks

    Add the skin you created for your module to /lib/skins (if not change /lib/skins/SKIN_NAME/style.css to the location of the template being used.

    This should work (I have not had a chance to test yet work)

    I the header of the .tpl (or .php) page you are creating for you module add:

    <link rel="stylesheet" href="<?php echo SITE_URL?>/lib/skins/SKIN_NAME/style.css" type="text/css" media="screen" />
    

  2. Hey,

    This is my first release for PHPVMS (and I forgot to spell and grammer check the instructions) so this is BETA 0.9 as it is almost complete.

    If you would like to add a tell a friend link to your site, this code should do exactly what you want :-) available as a popup, link, or embed. You can even create Skinned PHPVMS Pages to use with this Module/Code. The fields can be changed easily having on basic knowledge of HTML.

    If you experience any problems Use the forums because everyone may benefit form your question.

    Instructions are included.

    Enjoy

    tellafriend.zip

  3. I started building a mobile portion for PHPVMS admin panel (don't know how good it will turn out but we will see)

    Any Specific pages that I should Include. I was thinking: Dashboard, Pilot Registrations, Pirep Admin, Awards, and Ranks/..

  4. There are two ways to repair the templates css problem:

    The first is very easy and the fastest:

    In the Lib--> Skin Folder change the folder name from betasite1.1 to betasite, This is how it is displayed in the layout.tpl file.

    The second is to open layout.tpl (located in the betasite1.1 folder)

    Change

        <link rel="stylesheet" href="<?php echo SITE_URL?>/lib/skins/betasite/style.css" type="text/css" media="screen" />
       <!--[if IE 6]><link rel="stylesheet" href="<?php echo SITE_URL?>/lib/skins/betasite/style.ie6.css" type="text/css" media="screen" /><![endif]-->
       <!--[if IE 7]><link rel="stylesheet" href="<?php echo SITE_URL?>/lib/skins/betasite/style.ie7.css" type="text/css" media="screen" /><![endif]-->
       <script type="text/javascript" src="<?php echo SITE_URL?>/lib/skins/betasite/script.js"></script>

    to

        <link rel="stylesheet" href="<?php echo SITE_URL?>/lib/skins/betasite1.1/style.css" type="text/css" media="screen" />
       <!--[if IE 6]><link rel="stylesheet" href="<?php echo SITE_URL?>/lib/skins/betasite1.1/style.ie6.css" type="text/css" media="screen" /><![endif]-->
       <!--[if IE 7]><link rel="stylesheet" href="<?php echo SITE_URL?>/lib/skins/betasite1.1/style.ie7.css" type="text/css" media="screen" /><![endif]-->
       <script type="text/javascript" src="<?php echo SITE_URL?>/lib/skins/betasite1.1/script.js"></script>
    

×
×
  • Create New...