nathanh12 Posted June 15, 2011 Report Share Posted June 15, 2011 Hi Guys, I have seen a few threads containg a piece of software called artisteer,if I was to create a skin in this, how would I port it into phpVMS Thanks. Yours, Nathan Quote Link to comment Share on other sites More sharing options...
marciogg Posted March 25, 2012 Report Share Posted March 25, 2012 Sorry to bump an old topic, but I have recently discovered phpvms. I have a website in joomla and use artisteer to make template, can someone please give tips in what format to export a template in artisteer and how to convert this format to phpvms template? Many thanks to all in advance. Regards, Márcio Quote Link to comment Share on other sites More sharing options...
Txmmy83 Posted March 26, 2012 Report Share Posted March 26, 2012 Sorry to bump an old topic, but I have recently discovered phpvms. I have a website in joomla and use artisteer to make template, can someone please give tips in what format to export a template in artisteer and how to convert this format to phpvms template? Many thanks to all in advance. Regards, Márcio to use artisteer templates with phpVMS you have to save the artisteer template in html and need to manually amend the index.html via dreamweaver or any other suitable html editor it sounds bit difficult but it is easier than it sounds rename the index.html to layout.tpl after you made the changes making backup of the original 'unedited' template would be a good idea in case something goes wrong! I use a Artisteer Template for my own VA http://www.flyeurope-va.org Quote Link to comment Share on other sites More sharing options...
marciogg Posted March 26, 2012 Report Share Posted March 26, 2012 to use artisteer templates with phpVMS you have to save the artisteer template in html and need to manually amend the index.html via dreamweaver or any other suitable html editor it sounds bit difficult but it is easier than it sounds rename the index.html to layout.tpl after you made the changes making backup of the original 'unedited' template would be a good idea in case something goes wrong! I use a Artisteer Template for my own VA http://www.flyeurope-va.org Hi, I'm very very grateful for your tips. Just a little doubt. What do you mean by "manually amend" Regards, Márcio Quote Link to comment Share on other sites More sharing options...
Txmmy83 Posted March 26, 2012 Report Share Posted March 26, 2012 what I meant with amend is the placement of the following php code parts important parts are: <?php echo $page_htmlhead; ?> <?php Template::Show('core_htmlhead.tpl'); ?> </head> <body> <?php $page_htmlreq; ?> and for the Content <?php /* This will insert all of the "meat" of the page in there - the template which is generated, depending on which page you're on. To change these templates, check out the docs on the site. They're under the /core/templates folder, and to change them, copy them into the folder of your skin (the folder this file is in right now. */ echo $page_content; ?> best way to start a template from scratch by clicking 'website or blog' which is the first icon on row 1 on start screen if you use Artisteer 3.1 here is my layout.tpl zipped which you can use as referrence layout.zip Quote Link to comment Share on other sites More sharing options...
marciogg Posted March 26, 2012 Report Share Posted March 26, 2012 Hi, I added those lines but wasn't very successfull, after selecting the desired template in the settings, when loading the website it loads like a html with white background. I've uploaded the exported template which had the html renamed to layout.tpl as required and lines entered as above. http://www15.zippyshare.com/v/11214595/file.html If you can take a look and point where I went wrong that would be great. Regards, Márcio Quote Link to comment Share on other sites More sharing options...
Jeff Posted March 27, 2012 Report Share Posted March 27, 2012 For starters, you do not have the script.js or the style.css files linked to the location you have them on your site. They should be: <script type="text/javascript" src="http://www.mysite.com/jslocation/script.js"></script> <link rel="stylesheet" href="http://www.mysite.com/csslocation/style.css" type="text/css" media="screen" /> Quote Link to comment Share on other sites More sharing options...
Txmmy83 Posted March 27, 2012 Report Share Posted March 27, 2012 For starters, you do not have the script.js or the style.css files linked to the location you have them on your site. They should be: <script type="text/javascript" src="http://www.mysite.com/jslocation/script.js"></script> <link rel="stylesheet" href="http://www.mysite.com/csslocation/style.css" type="text/css" media="screen" /> sorry I forgot to mention that in my code sections Quote Link to comment Share on other sites More sharing options...
twelka3 Posted March 27, 2012 Report Share Posted March 27, 2012 Just follow the documentation on the phpvms site and you will be set and of course what jeff said link those properly. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.