Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

[contribution] Simple Template System (sts)


DiamondSea

Recommended Posts

OK, we are getting somewhere now. Please post the HTML code of the template that you are using. I just did a test using a clean version of osCommerce 2.2 Milestone 2, (check your version of osCommerce by the way) and installed STS 4.2. I installed (enabled) the STS "Default" module and set to "true". I then setup my template folder to use the default "out of the box" "test" folder and used the "sts_template.html" in the "test" folder.

 

The popup image worked fine. There must be something that you did with the template that is causing some problems so lets take a look at your HTML and go from there.

 

-Bill Kellum

 

I am going to need to verify my STS4.2 installation because my "out of the box" "test" folder using "sts_template.html" is the one that's giving me trouble. I'll post when I finished installing everything again. Thanks for the help and I will write later.

Link to comment
Share on other sites

I am going to need to verify my STS4.2 installation because my "out of the box" "test" folder using "sts_template.html" is the one that's giving me trouble. I'll post when I finished installing everything again. Thanks for the help and I will write later.

 

The problem disappeared with the new installation. I must have made a mistake in the installation.

Link to comment
Share on other sites

For those of you that maybe having problems installing the PayPal_Ipn contribution as I did.

 

Installation of the contribution into STS 4.2 was extreamly easy as per the installation instrutions. However, the problems arrise when setting up the contribution to use with PayPal. Well, after a weeks worth of reading through a ton of BS over in that contributions support forum I came to the conclusion that the answer just wasn't there. I finally came up with the solution to my problem by just thinking and working through it and finding a more complete instruction set over in a completly different OSC forum.

 

Here is the link

 

http://www.oscommerce.com/forums/index.php?showtopic=166092

 

Read through all the posts and all the answers are there. Pay attention to post 13 as this will explain the majority of problems in emplimenting this contribution.

 

I hope this helps all of you that have had as many problems with this contribution as I have.

 

Guy

Link to comment
Share on other sites

STS FIX - For displaying error messages during the checkout process

 

Ian, Patrick, Deborah:

 

This fix should solve your problem with the credit class/gift voucher contribution not displaying a coupon code error during checkout. I just tried this code and it works great. You can thank Tom Thumb, who used to frequent the STS forum. This STS fix should solve problems with any contribution that is supposed to display error messages during checkout (including Authroize.Net concolidated for AIM 1.7):

 

Look for this in includes/sts_display_output.php:

 

// Prepend any error/warning messages to $content
 if ($messageStack->size('header') > 0) {
$template['content'] = $messageStack->output('header') . $template['content'];
 }

 

Add this right after it:

 

////////Start Error Messages - Tom Wojcik
 if (isset($HTTP_GET_VARS['error_message']) && tep_not_null($HTTP_GET_VARS['error_message'])) {
$messageStack->add('error_message', $HTTP_GET_VARS['error_message']);
$template['content'] =  $messageStack->output('error_message') . $template['content'];
 }
////// End Error Messages

 

Let me know if this works for you.

I think this code would be worth adding to the next version of STS.

 

 

This easy fix solved my problems with earlier versions of STS - now with version 4.xx it is a bit hard to apply it cause sts_display_output.php not look the same as it did. Could someone help we this.

 

The problem is that error messages in checkout dont show at all.

Link to comment
Share on other sites

I have STS 4.1

ALso, my newest problem is that category 26 with the url /catalog/index.php?cPath=26 prints out no template. There was a specific template for this category in /full/content/ but I deleted it. The page still comes up with no template and no content. I can't figure this one out.

Ampleforth,

 

Take a look at your catagories in your shop. Place your mouse over each one and see what the cpath is. Do any of them match cpath=26?

 

If not, then you do not have a catagorie for the template to pull up. Another thing, in the STS Default Module, did you type in the folder name "full" so that STS would use that folder to pull up the content template "product_info.php_26.html"? Your solution may be that simple.

 

Hope this helps,

 

Bill Kellum

Bill Kellum

 

Sounds Good Productions

STS Tutorials & more: STSv4.6, STS Add-ons (STS Power Pack), STS V4 Forum STS Forum FREE TEMPLATE

Link to comment
Share on other sites

I have searched all over the code tree and I can not figure this one out. I just upgraded to STS 4.2 today to try to fix this problem, but it didn't help. I hope someone can help because it's a gigantic thorn in the side of my nearly-complete project.

 

Category 26, and ONLY category 26, will not display for me. the other categories work fine. I only have two files in my selected sts_templates/full/ directory, index.php.html and sts_template.html. There is no specific product file. THe only files present are index.php.html and sts_template.html.

 

SO, when I click the url:

http://www.myhost.com/catalog/index.php?cPath=26

 

I get a page with this and this only:

<!-- left_navigation_eof //-->
</table></td>
<!-- body_text //-->
<td width="100%" valign="top"><table border="0" width="100%" cellspacing="0" cellpadding="0">
  <tr>
	<td><table border="0" width="100%" cellspacing="0" cellpadding="0">
	  <tr>
		<td class="pageHeading">Let's See What We Have Here</td>
		<td align="right"><img src="images/pixel_trans.gif" border="0" alt="Let's See What We Have Here" title=" Let's See What We Have Here " width="57" height="40"></td>

	  </tr>
	</table></td>
  </tr>
  <tr>
	<td><img src="images/pixel_trans.gif" border="0" alt="" width="100%" height="10"></td>
  </tr>
  <tr>
	<td><table border="0" width="100%" cellspacing="0" cellpadding="2">
 <tr>

<td class="smallText">Displaying <b>1</b> to <b>20</b> (of <b>38</b> products)</td>
<td class="smallText" align="right">Result Pages:  <b>1</b>  <a href="http://www.jimhodgson.net/catalog/index.php?cPath=26&sort=3a&page=2" class="pageResults" title=" Page 2 "><u>2</u></a>  <a href="http://www.jimhodgson.net/catalog/index.php?cPath=26&sort=3a&page=2" class="pageResults" title=" Next Page "><u>[Next >>]</u></a> </td>

 </tr>
</table>

 

I have been banging my head on this one for days, so any help would be greatly appreciated. There are not errors in error_log.

 

Help!

 

UPDATE: To answer your above question, bill, yes there is a category 26.

Edited by ampleforth
Link to comment
Share on other sites

I have searched all over the code tree and I can not figure this one out. I just upgraded to STS 4.2 today to try to fix this problem, but it didn't help. I hope someone can help because it's a gigantic thorn in the side of my nearly-complete project.

 

Category 26, and ONLY category 26, will not display for me. the other categories work fine. I only have two files in my selected sts_templates/full/ directory, index.php.html and sts_template.html. There is no specific product file. THe only files present are index.php.html and sts_template.html.

 

SO, when I click the url:

http://www.myhost.com/catalog/index.php?cPath=26

 

I get a page with this and this only:

<!-- left_navigation_eof //-->
</table></td>
<!-- body_text //-->
<td width="100%" valign="top"><table border="0" width="100%" cellspacing="0" cellpadding="0">
  <tr>
	<td><table border="0" width="100%" cellspacing="0" cellpadding="0">
	  <tr>
		<td class="pageHeading">Let's See What We Have Here</td>
		<td align="right"><img src="images/pixel_trans.gif" border="0" alt="Let's See What We Have Here" title=" Let's See What We Have Here " width="57" height="40"></td>

	  </tr>
	</table></td>
  </tr>
  <tr>
	<td><img src="images/pixel_trans.gif" border="0" alt="" width="100%" height="10"></td>
  </tr>
  <tr>
	<td><table border="0" width="100%" cellspacing="0" cellpadding="2">
 <tr>

<td class="smallText">Displaying <b>1</b> to <b>20</b> (of <b>38</b> products)</td>
<td class="smallText" align="right">Result Pages:  <b>1</b>  <a href="http://www.jimhodgson.net/catalog/index.php?cPath=26&sort=3a&page=2" class="pageResults" title=" Page 2 "><u>2</u></a>  <a href="http://www.jimhodgson.net/catalog/index.php?cPath=26&sort=3a&page=2" class="pageResults" title=" Next Page "><u>[Next >>]</u></a> </td>

 </tr>
</table>

 

I have been banging my head on this one for days, so any help would be greatly appreciated. There are not errors in error_log.

 

Help!

 

UPDATE: To answer your above question, bill, yes there is a category 26.

 

If it is an help if I load the code above into FrontPage I can follow the "Next" link to the next page and it displays correctly. On page one viewing the source I only see your code above however page 2 displays all the code.

 

URL to page 2 http://www.jimhodgson.net/catalog/index.ph...t=3a&page=2 works just fine.

Link to comment
Share on other sites

I have searched all over the code tree and I can not figure this one out. I just upgraded to STS 4.2 today to try to fix this problem, but it didn't help. I hope someone can help because it's a gigantic thorn in the side of my nearly-complete project.

 

Category 26, and ONLY category 26, will not display for me. the other categories work fine. I only have two files in my selected sts_templates/full/ directory, index.php.html and sts_template.html. There is no specific product file. THe only files present are index.php.html and sts_template.html.

 

SO, when I click the url:

http://www.myhost.com/catalog/index.php?cPath=26

 

 

UPDATE: To answer your above question, bill, yes there is a category 26.

Ampleforth, a couple of things.

 

1. Are you wanting a separate template for category 26? If so, then create a template called index.php_26.html and save it in your "full" folder. Now, view your shop in a browser and select your category 26 selection and it should pull up this template. Note: You will need to have enabled the Index and Module in admin as well as make sure your Template Folder in the Default Module is set to look into the folder "full".

 

2. If you are not wanting a separte template for category 26, but would rather it use your index.php.html template, then all you need to have is the index.php.html template in your "full" folder.

 

-Bill Kellum

Bill Kellum

 

Sounds Good Productions

STS Tutorials & more: STSv4.6, STS Add-ons (STS Power Pack), STS V4 Forum STS Forum FREE TEMPLATE

Link to comment
Share on other sites

Ampleforth, a couple of things.

 

1. Are you wanting a separate template for category 26? If so, then create a template called index.php_26.html and save it in your "full" folder. Now, view your shop in a browser and select your category 26 selection and it should pull up this template. Note: You will need to have enabled the Index and Module in admin as well as make sure your Template Folder in the Default Module is set to look into the folder "full".

 

2. If you are not wanting a separte template for category 26, but would rather it use your index.php.html template, then all you need to have is the index.php.html template in your "full" folder.

 

-Bill Kellum

 

As I said twice above, there are two files in my "full" folder. index.php.html and sts_template.html. There are no other files in the full folder. The full folder contains these two files and these two files alone. There are no directories. Only these two files.

 

I don't want a separate template for category 26. I just want it to show up like the other categories do. The other ones work precisely as you might expect.

Link to comment
Share on other sites

As I said twice above, there are two files in my "full" folder. index.php.html and sts_template.html. There are no other files in the full folder. The full folder contains these two files and these two files alone. There are no directories. Only these two files.

 

I don't want a separate template for category 26. I just want it to show up like the other categories do. The other ones work precisely as you might expect.

I sent you a PM regarding this issue. Please save us some time by following each step in the PM. If you are still having problems, please repost.

 

Thanks,

 

Bill Kellum

Bill Kellum

 

Sounds Good Productions

STS Tutorials & more: STSv4.6, STS Add-ons (STS Power Pack), STS V4 Forum STS Forum FREE TEMPLATE

Link to comment
Share on other sites

I sent you a PM regarding this issue. Please save us some time by following each step in the PM. If you are still having problems, please repost.

 

Thanks,

 

Bill Kellum

 

I replied in the pm, but I did all this and still have the issue. I think it's interesting that the category that I'm having trouble with (26) and the example category-specific page are both 26.

Link to comment
Share on other sites

I replied in the pm, but I did all this and still have the issue. I think it's interesting that the category that I'm having trouble with (26) and the example category-specific page are both 26.
Just to note... the example is actually a "content" template. The name of the template is product_info.php_26.html. This template can not be used on it's own. It is designed to replace the "main content" in the middle of your page. So it allows you move around the placement of items such as "click to enlarge" "product image" "the price" "product description" and so on.

 

-Bill Kellum

Bill Kellum

 

Sounds Good Productions

STS Tutorials & more: STSv4.6, STS Add-ons (STS Power Pack), STS V4 Forum STS Forum FREE TEMPLATE

Link to comment
Share on other sites

Just to note... the example is actually a "content" template. The name of the template is product_info.php_26.html. This template can not be used on it's own. It is designed to replace the "main content" in the middle of your page. So it allows you move around the placement of items such as "click to enlarge" "product image" "the price" "product description" and so on.

 

-Bill Kellum

 

AH! Okay. Well, I guess that's not so interesting then. I still can't get it to work. :(

 

I just moved the category under another category, and it still doesn't work, so I guess it's something with that category in particular. I don't know how to fix it.

Edited by ampleforth
Link to comment
Share on other sites

Hi people, I am new to sts and oscommerce and I am having some display issue which are really getting to me. I have edited the sts_template.html file to fit the look and feel of my website. Its all well in the editor but when i uploaded it to the server, there is an extra white row at the bottom of the website. I don't think its the stylesheet that I have as its displaying alright as a standalone file. (i.e. when i open it in IE or Firefox locally, it display fine.) This white row appears only when i put the sts_template.html file into the server. Any got any idea.

 

The code in my sts_template.html file is as follows:

 

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html $htmlparams>

<head>

<!--$headcontent-->

<link href="../style_html.css" rel="stylesheet" type="text/css" />

<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />

<script type="text/javascript">

<!--

<!--

function newImage(arg) {

if (document.images) {

rslt = new Image();

rslt.src = arg;

return rslt;

}

}

 

function changeImages() {

if (document.images && (preloadFlag == true)) {

for (var i=0; i<changeImages.arguments.length; i+=2) {

document[changeImages.arguments].src = changeImages.arguments[i+1];

}

}

}

 

var preloadFlag = false;

function preloadImages() {

if (document.images) {

home_over = newImage("../images/home-over.gif");

about_gucio_over = newImage("../images/about-gucio-over.gif");

get_the_right_size_over = newImage("../images/get-the-right-size-over.gif");

shop_over = newImage("../images/shop-over.gif");

mailing_list_over = newImage("../images/mailing-list-over.gif");

preloadFlag = true;

}

}

 

// -->

 

function MM_swapImgRestore() { //v3.0

var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a)&&x.oSrc;i++) x.src=x.oSrc;

}

 

function MM_preloadImages() { //v3.0

var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();

var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)

if (a.indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a;}}

}

 

function MM_findObj(n, d) { //v4.01

var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {

d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}

if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[n];

for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers.document);

if(!x && d.getElementById) x=d.getElementById(n); return x;

}

 

function MM_swapImage() { //v3.0

var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)

if ((x=MM_findObj(a))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}

}

//-->

</script>

<!-- End Preload Script -->

</head>

 

<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onLoad="preloadImages();MM_preloadImages('../images/qubicfusion-over.gif')">

 

 

<table border="0" cellpadding="0" cellspacing="0">

<tr>

<td width="750">

<table width="750" border="0" cellspacing="0" cellpadding="0">

<tr>

<td><img src="../images/logo.gif" width="200" height="182" alt="" /></td>

<td><img src="../images/banner.gif" width="550" height="182" alt="" /></td>

</tr>

<tr>

<td valign="top" class="repeatBackground"> <table border="0" cellspacing="0" cellpadding="0">

<tr>

<td><a href="http://www.myfirststeps.biz/index.html"

onmouseover="changeImages('home', '../images/home-over.gif'); return true;"

onmouseout="changeImages('home', '../images/home.gif'); return true;"

onmousedown="changeImages('home', '../images/home-over.gif'); return true;"

onmouseup="changeImages('home', '../images/home-over.gif'); return true;"> <img src="../images/home.gif" alt="" name="home" width="200" height="42" border="0" id="home" /></a></td>

</tr>

<tr>

<td><a href="http://www.myfirststeps.biz/aboutgucio.html"

onmouseover="changeImages('about_gucio', '../images/about-gucio-over.gif'); return true;"

onmouseout="changeImages('about_gucio', '../images/about-gucio.gif'); return true;"

onmousedown="changeImages('about_gucio', '../images/about-gucio-over.gif'); return true;"

onmouseup="changeImages('about_gucio', '../images/about-gucio-over.gif'); return true;"> <img src="../images/about-gucio.gif" alt="" name="about_gucio" width="200" height="42" border= "0" id="about_gucio" /></a></td>

</tr>

<tr>

<td><a href="http://www.myfirststeps.biz/rightsize.html"

onmouseover="changeImages('get_the_right_size', '../images/get-the-right-size-over.gif'); return true;"

onmouseout="changeImages('get_the_right_size', '../images/get-the-right-size.gif'); return true;"

onmousedown="changeImages('get_the_right_size', '../images/get-the-right-size-over.gif'); return true;"

onmouseup="changeImages('get_the_right_size', '../images/get-the-right-size-over.gif'); return true;"> <img src="../images/get-the-right-size.gif" alt="" name="get_the_right_size" width="200" height="42" border="0" id="get_the_right_size" /></a></td>

</tr>

<tr>

<td><a href="/shop"

onmouseover="changeImages('shop', '../images/shop-over.gif'); return true;"

onmouseout="changeImages('shop', '../images/shop-over.gif'); return true;"

onmousedown="changeImages('shop', '../images/shop-over.gif'); return true;"

onmouseup="changeImages('shop', '../images/shop-over.gif'); return true;"> <img src="../images/shop-over.gif" alt="" name="shop" width="200" height="42" border="0" id="shop" /></a></td>

</tr>

<tr>

<td><img src="../images/optional.gif" width="200" height="42" alt="" /></td>

</tr>

<tr>

<td><img src="../images/repeated-image.gif" width="200" height="152" alt="" /></td>

</tr>

</table></td>

<td rowspan="2" valign="top">

<div class="textAlignment">

<p>?</p>

<p>?</p> </div></td>

</tr>

<tr>

<td valign="bottom" class="repeatBackground"> <table width="0%" border="0" cellspacing="0" cellpadding="0">

<tr>

<td><img src="../images/blank-1.gif" width="200" height="34" alt="" /></td>

</tr>

<tr>

<td><a href="http://www.myfirststeps.biz/mailinglist.html"

onmouseover="changeImages('mailing_list', '../images/mailing-list-over.gif'); return true;"

onmouseout="changeImages('mailing_list', '../images/mailing-list.gif'); return true;"

onmousedown="changeImages('mailing_list', '../images/mailing-list-over.gif'); return true;"

onmouseup="changeImages('mailing_list', '../images/mailing-list-over.gif'); return true;"> <img name="mailing_list" src="../images/mailing-list.gif" width="200" height="42" border="0" alt="" /></a></td>

</tr>

<tr>

<td><img src="../images/blank2.gif" width="200" height="30" alt="" /></td>

</tr>

</table></td>

</tr>

<tr>

<td><a href="http://www.xxxxxx.com" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('xxxxxx','','../images/xxxxxx-over.gif',1)"><img src="../images/xxxxxx.gif" name="xxxxxx" width="200" height="19" border="0" id="xxxxxx" /></a></td>

<td><div align="right" class="copyright">Copyright ? 2006 xxxxxx</div></td>

</tr>

</table></td>

<td width="31" valign="top" class="outerImage">?</td>

</tr>

</table>

</body>

</html>

Edited by kevstral
Link to comment
Share on other sites

I have STS 4.0.5 installed on MS2 Os commerce. But I having a problem with SSL.

When https is enabled some links came through correct with the https address, but appears some others appears only with the http. This is causing the page to display secure and non-secure content. Please Help!!!! :blush:

Edited by marglez
Link to comment
Share on other sites

I have tried your category 26 at your jimhogdson.net address and it works fine. Was it the right place to look?

 

- Rigadin

 

Yes, I got it to work late last night. Here's what changed:

 

When the category had two subcategories that both had only one product each in them and some other products in the top category, it would not pull up a template. When I sorted all products in the top level category into the subcategories, the whole thing started working. So it looked like this when it wasn't working:

 

Top level category
 |---subcategory1
 |		 |--product 1
 |---Subcategory2
 |		 |---product 2
 |---product3
 |---product4
 |---...up to 20 or so products

 

But now it looks like this and IS working:

 

Top level category
 |---subcategory1
 |		 |--product 1
 |		 |---product3
 |		 |---...up to 10 or so products
 |---Subcategory2
 |		 |---product 2
 |		 |---product4
 |		 |---...up to 10 or so products

Link to comment
Share on other sites

Hopefully I post in the right place now.

 

I have a site that needs to be finished, it's almost done but it needs some fixes in the products' page.

I've used STS and a few contributions, I will send the details if anyone is interested.

 

I will pay for this job.

Thanks!

Link to comment
Share on other sites

Bill, need a little assistance here. Playing with the old catalog and Nifty corners. The $content tag seems to break the container and I loose everything that is supposed to be up in the container block to the end of the page. I've been to products_info.php and changed all the table width values to 70% however it still wants to degrade the container.

 

 

 

if you look at

 

 

 

http://www.rcx-jets.com/catalogold/

 

you will see what I mean at the bottom. I was able to change the width of the review table it's just that "main" table that is pulling my hair out.

 

 

 

Many eyeballs are better than two so if you have any suggestions as to where to go with this your help would be greatly appreaciated.

 

 

 

Thanks - Guy

Link to comment
Share on other sites

Bill, need a little assistance here. Playing with the old catalog and Nifty corners. The $content tag seems to break the container and I loose everything that is supposed to be up in the container block to the end of the page. I've been to products_info.php and changed all the table width values to 70% however it still wants to degrade the container.

 

if you look at

 

http://www.rcx-jets.com/catalogold/

 

you will see what I mean at the bottom. I was able to change the width of the review table it's just that "main" table that is pulling my hair out.

Many eyeballs are better than two so if you have any suggestions as to where to go with this your help would be greatly appreaciated.

Thanks - Guy

Can you send another link...the one above is bad. Thanks, Bill Kellum

Bill Kellum

 

Sounds Good Productions

STS Tutorials & more: STSv4.6, STS Add-ons (STS Power Pack), STS V4 Forum STS Forum FREE TEMPLATE

Link to comment
Share on other sites

Can you send another link...the one above is bad. Thanks, Bill Kellum

 

 

 

Actually I think I found what the problem was/is. There is an image pixcel_trans.gif. It was set to 100% and that was causing the problem. I didn't find it until going to lunch with my wife and it hit me like a brick in the head. finding all accurances of that little 1 pix gif and changeing it to 70% seems to have solved part of the problems. I still have a problem with the right side block as it is being broken which may be fixed in the css, just have to find that little begger.

 

 

 

Have a look, Bill. This link should work.

 

 

 

http://www.rcxjets.com/catalogold/

Link to comment
Share on other sites

Ok here is my problem..

 

I have STS installed.. and I want to run Google Analytics... I have it all working fine EXCEPT the checkout_success.php page.

 

It seems that STS alters the checkout_success.php page either partially or fully and the code I placed at the bottom and top of the page to call the final transaction data to send to google is not loaded.

 

Help!

 

http://www.revgear.com

 

 

This is what I am trying to add...

 

TO TOP OF PAGE

<body marginwidth="0" marginheight="0" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0" onLoad="java script:__utmSetTrans()">

 

 

TO BOTTOM OF PAGE

<!-- footer //-->
<?php require(DIR_WS_INCLUDES . 'footer.php'); ?>
<!-- footer_eof //-->
<br>
<?php
// osCoders.biz - Analystics - start
	include(DIR_WS_MODULES . 'analytics/analytics.php');
// osCoders.biz - Analistics - end
?>
</body>
</html>
<?php require(DIR_WS_INCLUDES . 'application_bottom.php'); ?>

Edited by abf
Link to comment
Share on other sites

Actually I think I found what the problem was/is. There is an image pixcel_trans.gif. It was set to 100% and that was causing the problem. I didn't find it until going to lunch with my wife and it hit me like a brick in the head. finding all accurances of that little 1 pix gif and changeing it to 70% seems to have solved part of the problems. I still have a problem with the right side block as it is being broken which may be fixed in the css, just have to find that little begger.

 

 

 

Have a look, Bill. This link should work.

 

 

 

http://www.rcxjets.com/catalogold/

I like the looks of your site. Good Job! -Bill Kellum

Bill Kellum

 

Sounds Good Productions

STS Tutorials & more: STSv4.6, STS Add-ons (STS Power Pack), STS V4 Forum STS Forum FREE TEMPLATE

Link to comment
Share on other sites

Hi everybody,

I am quite new to both OC and STS. I would like to know how can I have a template for the typical product page and another one for the products with special price.

Do I have to just add a new STS template? if so, how do I tell STS to use that specific template instead of the standard one?

Do I have to modify the specials.php box and modify/create any other php file?

thank you for your help

 

ciao

Stefano

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
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  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.

×
×
  • Create New...