Integrating Sales Page Studio And JV Manager
Posted in Sales Page Studio by NeoSys with No Comments
Instructions on creating a shared theme between salespage studio and jv manager .
Pre Requisites
Sales Page Studio Version 3.0
JV Manager
Installation
Create a folder called images on your server e.g. /public_html/images/
Copy your theme images into this folder.
Copy the following files to the images folder on your server.
getcartcss.php
getnavbarhtml.php
In Sales Page Studio
Under the settings menu in wordpress you will find the Sales Page Studio admin link, in this area you must make sure that your image locations are set to the following.
Background: /images/background.jpg
Header: /images/header.png
Content: /images/content.png
Footer: /images/footer.png
In JV Manager
Here are the code snippets for each section of the JV Manager templates page.
Admin Area – Header
[sourcecode language="plain"]<head>
#{suppl}
<title>Administration</title>
<link rel="stylesheet" href="/wp-content/themes/default/sps.css" type="text/css">
<link rel="stylesheet" href="/images/getcartcss.php" type="text/css" >
</head>
<body style="background:url(‘/images/background.jpg’) repeat-x;"><div id="header" style="position:relative;"><img src="/images/header.png" /></div>
<script type="text/javascript" src="/images/getnavbarhtml.php"></script>
<div id="content" style="background:url(‘/images/content.png’) #ffffff">
<div id="padding">
#{menu}[/sourcecode]
Admin Area – Footer
[sourcecode language="plain"]</div>
</div>
<div id="footer"><img src="/images/footer.png" /></div>
[/sourcecode]
Affiliate Registration Form – Header
[sourcecode language="plain"]<head>
#{suppl}
<title>Affiliate Registration</title>
<link rel="stylesheet" href="/wp-content/themes/default/sps.css" type="text/css">
<link rel="stylesheet" href="/images/getcartcss.php" type="text/css" >
</head>
<body style="background:url(‘/images/background.jpg’) #f0f0f0 repeat-x;">
<div id="header" style="position:relative;"><img src="/images/header.png" />
</div>
<script type="text/javascript" src="/images/getnavbarhtml.php"></script>
<div id="content" style="background:url(‘/images/content.png’) #ffffff">
<div id="padding">[/sourcecode]
Affiliate Registration Form – Footer
[sourcecode language="plain"]</div>
</div>
<div id="footer"><img src="/images/footer.png" /></div>[/sourcecode]
Affiliate Area – Header
[sourcecode language="plain"]<head>
#{suppl}
<title>Affiliate Area</title>
<link rel="stylesheet" href="/wp-content/themes/default/sps.css" type="text/css">
<link rel="stylesheet" href="/images/getcartcss.php" type="text/css" >
</head>
<body style="background:url(‘/images/background.jpg’) repeat-x;">
<div id="header" style="position:relative;"><img src="/images/header.png" />
</div>
<script type="text/javascript" src="/images/getnavbarhtml.php"></script>
<div id="content" style="background:url(‘/images/content.png’) #ffffff">
<div id="padding">
#{menu}[/sourcecode]
Affiliate Area – Footer
[sourcecode language="plain"]</div>
</div>
<div id="footer"><img src="/images/footer.png" /></div>[/sourcecode]
Customer Area – Header
[sourcecode language="plain"]<head>
#{suppl}
<title>Joint Venture Manager</title>
<link rel="stylesheet" href="/wp-content/themes/default/sps.css" type="text/css">
<link rel="stylesheet" href="/images/getcartcss.php" type="text/css" >
</head>
<body style="background:url(‘/images/background.jpg’) repeat-x;">
<div id="header" style="position:relative;"><img src="/images/header.png" />
</div>
<script type="text/javascript" src="/images/getnavbarhtml.php"></script>
<div id="content" style="background:url(‘/images/content.png’) #ffffff">
<div id="padding">[/sourcecode]
Customer Area – Footer
[sourcecode language="plain"]</div>
</div>
<div id="footer"><img src="/images/footer.png" /></div>[/sourcecode]
Shopping Cart pages
[sourcecode language="plain"]<link rel="stylesheet" href="/wp-content/themes/default/sps.css" type="text/css">
<link rel="stylesheet" href="/images/getcartcss.php" type="text/css" >
<body style="background:url(‘/images/background.jpg’) repeat-x;">
<div id="header" style="position:relative;"><img src="/images/header.png" />
</div>
<script type="text/javascript" src="/images/getnavbarhtml.php"></script>
<div id="content" style="background:url(‘/images/content.png’) #ffffff">
<div id="padding">
<table width=100%>
<tr>
<td valign="top" width=10>
#{menu}
</td>
<td valign="top">
#{central}
</td>
</tr>
</table>
</div>
</div>
<div id="footer"><img src="/images/footer.png" /></div>
<br>[/sourcecode]
Tags: JV Manager, Total Plugins









