|
<<prev |
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
next>>
RealCart 101 - Figuring out where to make modifications
Most all of RealCarts templates are well documented inside the source code; if you will View Source on any page. As an exercise, you can follow along by viewing the source code of this page. << (Click this link then View Source to follow along.) You will see some information in the first few lines of the source code that look similar to this:
<!-- to DESIGN or REDESIGN this file edit the file called "catalog.html" in your c:\program files\realcart.com\realcart\templates\Real Soft Shop folder -->
This tidbit of information tells us the filename we are looking for catalog.html as well as the folder where this file resides on your PC.
Snippits and their locations
If you will scan farther down into the code, you will find the first snippit file jstop.snp:
The code that follows can be found in the file called jstop.snp v2.0.6.1
This is the default snippit located in "c:\program files\realcart.com\realcart\Templates\Common" folder
begin file jstop.snp - - - - - - - - - - - - - - - - - -
The parsed contents of the snippit file will follow, being capped off by this line of code at the end of the snippit contents:
end jstop.snp code - - - - - - - - - - - - - - - - - -
If you look carefully, you may notice another embedded snippit file that appears within the lines of code between the begin and end comments. This is an embedded snippit.
<<prev |
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
next>>
|