***** Customizing Details *****
If you know HTML then customizing the Nowonsale template should not be hard.
You can customize your template to fit the look of your current site or use
a whole new design. Basically, all you need to do is keep the same file names
but use your own design and place the PHP code snippets where they are needed.
Don't worry, it is not as hard or confusing as it sounds :=) Once you do one
file you should pretty much get the hang of it.
What does the PHP coding look like?
A PHP code is the stuff you seen between or and ?>
Example: echo $product[0]; ?> <--- You can move that anywhere on your site but
do not edit the string itself.
For tutorial purposes, we will say the PHP code above is calling the product
name from the database and we will call this particular product Brown Widgets.
You don't want to mess with anything within the PHP code itself but you can move
the whole snippet to any part of the page that you want Brown Widgets to appear on
your site.
So if you wanted use the product name for the title of your page you would have:
echo $product[0]; ?>
To Show: Brown Widgets
You could also optimize it furthermore by adding keywords in the title tag:
Buy echo $product[0]; ?> Online
To Show: Buy Brown Widgets Online
The same with the keyword tags as well:
To Show:
That should pretty much give you the idea of how the PHP code can be worked into HTML.
You may need to try a few times to get it right but trial and error is the process of learning.
NOTE:
include("config.php"); ?> should always remain at the very first line of all your template
pages. This is the configuration file with important things that needs to communicate with the
database and the web browsers so they know what the output on the entire page.
***** What's new in this version of the template *****
We have added a Featured Products section in this template, these products are generated via the
file featured.php
Q:) Where can I find the featured.php file?
A:) It's inside the nowonsale template zip file, If you are already using a pervious
version of the nowonsale template and wish to use the featured products listing,
please download the latest version of the template from http://www.linkserving.com/nowonsale/template/download/
and extract the nowonsale zip file, inside the zip file you will find featured.php file,
please upload this featured.php file to your webserver where other files of nowonsale
template reside.
Q:) Can I use the featured products listing with my old template setup?
A:) Yes sure, please read the above faq for more info about how to do the same
Integration : If you want to integrate the featured products listing in your existing
template files just paste this code where you would like the featured products to be listed.
***** ADDING CONTENT TO PRODUCT PAGES *****
Here is how to customize your Nowonsale template sites a step further and integrate content into them.
This tutorial will help you add content to your site such as articles, tips, categorized ads, etc...
During this tutorial I will use categorized tips as an example. This means that I want to put a short
few lines of helpful tips to my visitors for certain categories. Here is how I would implement this.
1. Create a directory on my server and name it "tips"
2. Lets say I wanted to add a tip for my visitors that were looking at the "Clocks" category.
I would then create a new html file with the few lines I would want to use for the content to go in
the "Clocks" category. The html would just be the tip with any html codes, it would not have any
meta tags, After I created the html file I would name it "clocks.html" and then upload it to my
"tips" directory.
3. Next, I would open the file that displays the category pages, in this template the file is named
"category.php" I would then call the category tips using an include and if statement like so:
(I would put the below statement in the file where I wanted the tip to show.
You may have to do a little trial and error at first yourself)
if(!$start){
if($cat == "Clocks")
include("tips/clocks.html");
}
?>
For each tip I would want to add I would just add to the include and if statement as such:
// Display Tips For Categories Here
if(!$start){
if($cat == "Clocks")
include("tips/clocks.html");
if($cat == "Cookers")
include("tips/cookers.html");
}
?>
As you can see its easy to add customized content to each category in this way!
***** Advanced Customizing *****
One thing to remember is that our generic code are not written in stone. You can customize every single
individual file as you please. Picture it as you are creating/designing a website for your very own business.
You can make the pages and files anyway you please because with our program you are doing just that.
The only thing is that you are building your pages to read off of our database instead of your own.
=============================================================
Affiliate Program Management By:
LinkProfits.com
http://www.linkprofits.com
© Copyright LinkProfits.com