Jump to content

Artisteer


nathanh12

Recommended Posts

  • 9 months later...

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

Link to comment
Share on other sites

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

Link to comment
Share on other sites

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

Link to comment
Share on other sites

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

Link to comment
Share on other sites

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

Link to comment
Share on other sites

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" />

Link to comment
Share on other sites

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 :(

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...