OSCOMMERCE SUPPORT CALL 702-453-3332

 

Help - Search - Members - Calendar
Full Version: Basic Design Pack Support
osCommerce Community Support Forums > osCommerce Online Merchant v2.x > Contributions / Add-Ons > Templates and Images
Pages: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18
toyicebear
Link to Basic Design Pack

Basic design pack 1.0

This is not a real contribution as such...its just an easy to use short-cut to make your own osc design.

Included in this pack is:

- Fixed width with css by Devhype and Rhea Anthony
- Remove default images David Allen


What will this pack do?

1. It will center your shop and give you the possibilety to set outside background color in the stylesheet.
2. It will remove the default oscommerce cartoonish icons
3. It removes the rounded infobox corners and replaces them with square transparent ones, so you can change the colors in the styleaheet.
4. It removes the osCommerce banner in the footer
5. It will make it easy to have 1 top graphic logo filling the whole header width.

Thats it.....

How to use....Just drop over a defaut oscommerce shop.....and you are finished...

If you have any questions, well i am at the forum as always....best wishes Toyicebear


This contribution is ofcourse GNU, and used at your own risk..and so on..... ;-)
Jen7pc
I have an existing site built last year, not a new one - will this override the custom stuff I've already done? .. ie, the corners?

All I really need to do is to delete the cartoonish icons.

Thanks,
J
mark27uk3
Hi Jennifer,

All you have to do is transfer over all the files in the catalog/image folder that begin with table_background.

Mark
toyicebear
Basic design pack 1.1 now available, Link....

Added:

1. Nicer arrows
2. Automatic thumbnails generation
toyicebear
Basic design pack 1.2 now available, Link....

Added:

- CSS defined buttons

Att: If you want to use/keep graphically based buttons use version 1.1 instead of 1.2

Why use CSS buttons you might ask?

- They load faster
- They are automatically generated for any language in your shop
toyicebear
Basic design pack 1.3 now available, Link.....

Added:

- Modded the 2 boxes search and tip a friend to have the submitt button under the form fields. Othervise the css buttons break the box width.

- Now with 2 alternative html_output.php files included.

1. Which includes css buttons and automatic thumbnails functions.

2. Which only includes the css buttons. (The thumbnails contribution would break the shop for those who did not have gdlib support on their web server/hosting.)
toyicebear
Short breakdown of the install instructions, before posting a question make sure you have followed the points mentioned below:

1. Download the version you want to use, unzip it and read the instructions included.

2. Inside the zip , there is a folder named catalog , copy all the content of this folder and upload it to your web hotel/server using your favorite ftp program.

If you have your shop in the root , then upload the files and folders to root.
If you have your shop in /catalog/ , then upload all the files and folders into the /catalog/ folder
If you have your shop in another folder, upload the files into the same folder where you have your other shop files and folders.

When you get asked if you want to overwrite the exsisting files, you choose yes.

Now you can go to your web site, press CTRL + F5 , the page will refresh and you will see the new changes.


Att. If you have an already modified shop...you can not follow the instructions above..then you will have to use a file compare program, like for instance beyondcompare , to merge your exsisting files with the ones in this contribution.
mpm
Hi,
I love everything in this contrib except that I'd like to leave the bottom banner alone. How do I restore them?
toyicebear
QUOTE (mpm @ Dec 21 2005, 06:53 AM) *
Hi,
I love everything in this contrib except that I'd like to leave the bottom banner alone. How do I restore them?



Hi....

In the footer.php file, after the last </table> but before the last </div> you add this:



QUOTE
<?php
if ($banner = tep_banner_exists('dynamic', '468x50')) {
?>
<br>
<table border="0" width="100%" cellspacing="0" cellpadding="0">
<tr>
<td align="center"><?php echo tep_display_banner('static', $banner); ?></td>
</tr>
</table>
<?php
}
?>
daniemuse
Thank you for this. It did the trick. I'm only having one problem now... and that is with the CSS buttons. On any given page, one button shows up as what appears to be a graphic, but then the others show up as these plain boxy CSS "table" type buttons. I was poking around the html_output files from the package and I noticed a similarity: the buttons that submit a form show up as the cool "graphic", but the buttons that just redirect the customer to another page show up as the "table" type buttons. Can you help me get them all to look like the "graphic"? Or if there's no way to do that, what I need to do to go back to using actual graphics (.gif, etc.).
Thanks
D
toyicebear
QUOTE (daniemuse @ Dec 26 2005, 07:40 AM) *
Thank you for this. It did the trick. I'm only having one problem now... and that is with the CSS buttons. On any given page, one button shows up as what appears to be a graphic, but then the others show up as these plain boxy CSS "table" type buttons. I was poking around the html_output files from the package and I noticed a similarity: the buttons that submit a form show up as the cool "graphic", but the buttons that just redirect the customer to another page show up as the "table" type buttons. Can you help me get them all to look like the "graphic"? Or if there's no way to do that, what I need to do to go back to using actual graphics (.gif, etc.).
Thanks
D


Hi, The .css button part transforms all osc standard button calles into css defined buttons. Ie. the buttons looks are defined in stylesheet.css , you can have different borders, you can bevel the borders for a more button like look and/or you can add graphical background images to the buttons aswell and so on.

But if you want to just use the standard graphical buttons, you can just change this piece of code in includes/functions/html_output.php (from basic design pack mk1.3)

Change this
QUOTE
////
// The HTML form submit button wrapper function
// Outputs a button in the selected language
// BEGIN: CSS Buttons Everywhere
function tep_image_submit($image, $value = '-AltValue-', $parameters = '') {
global $language;
$css_submit = '<input type="submit" class="cssButton" value="' . tep_output_string($value) . '" />';
return $css_submit;
}
// END: CSS Buttons Everywhere

////
// Output a function button in the selected language
// BEGIN: CSS Buttons Everywhere
function tep_image_button($image, $value = '-AltValue-', $parameters = '') {
global $language;
$image = '<div class="cssButton">&nbsp;' . tep_output_string($value) . '&nbsp;</div>';
return $image;
}
// END: CSS Buttons Everywhere


To this:
QUOTE
////
// The HTML form submit button wrapper function
// Outputs a button in the selected language
function tep_image_submit($image, $alt = '', $parameters = '') {
global $language;

$image_submit = '<input type="image" src="' . tep_output_string(DIR_WS_LANGUAGES . $language . '/images/buttons/' . $image) . '" border="0" alt="' . tep_output_string($alt) . '"';

if (tep_not_null($alt)) $image_submit .= ' title=" ' . tep_output_string($alt) . ' "';

if (tep_not_null($parameters)) $image_submit .= ' ' . $parameters;

$image_submit .= '>';

return $image_submit;
}

////
// Output a function button in the selected language
function tep_image_button($image, $alt = '', $parameters = '') {
global $language;

return tep_image(DIR_WS_LANGUAGES . $language . '/images/buttons/' . $image, $alt, '', '', $parameters);
}
daniemuse
Thanks for the info, but I feel like I didn't ask my question properly. I want to use the CSS Buttons. I feel like they would definitely make my life easier. My problem is that I need them to look the SAME. Some of the CSS Buttons look boxy and the other CSS Buttons look like regular buttons. I've tried altering the stylesheet, but it only affects the boxy buttons. Is there anyway to get them all to look the same? I'm really trying to avoid actually having to make buttons. Thanks again.
D
toyicebear
QUOTE (daniemuse @ Dec 26 2005, 08:16 PM) *
Thanks for the info, but I feel like I didn't ask my question properly. I want to use the CSS Buttons. I feel like they would definitely make my life easier. My problem is that I need them to look the SAME. Some of the CSS Buttons look boxy and the other CSS Buttons look like regular buttons. I've tried altering the stylesheet, but it only affects the boxy buttons. Is there anyway to get them all to look the same? I'm really trying to avoid actually having to make buttons. Thanks again.
D


Can you post links which shows the 2 different button styles at your site?
vondada
How do you set the background color for the site in the stylesheet and can you set a background image instead?
arkitekt
Hi Toyicebear,

I love your basic design pack it makes things quite quick and easy - I just had one question... is there anyway to use the basic design pack but keep the "image_enlarge.gif" --- I'd really like to keep the small magnifying glass image (or create an icon) for the enlargment of the image but I love the css for everything else.


Thanks for your help and a great contribution!

Nathan
daniemuse
QUOTE (toyicebear @ Dec 27 2005, 05:29 AM) *
Can you post links which shows the 2 different button styles at your site?


I did something funky to my site and it's down at the moment, but as soon as I get it up, I'll get back to you with the links. Thanks for your prompt response.
D
toyicebear
QUOTE (vondada @ Dec 27 2005, 08:25 PM) *
How do you set the background color for the site in the stylesheet and can you set a background image instead?


Yes you can set background color and yes you can use an image instead of a color definition if you so choose.

The section of the stylsheet whe this can be done is here:
QUOTE
BODY {
text-align: center;
background: #ffffff;
color: #000000;
margin: 0px;
}

.fixcenter {
width: 778px;
border: solid; border-width: 1px;
background: #ffffff;
color: #000000;
margin: auto;
margin-top: 20px;
text-align: left;
}
toyicebear
QUOTE (arkitekt @ Dec 27 2005, 10:13 PM) *
Hi Toyicebear,

I love your basic design pack it makes things quite quick and easy - I just had one question... is there anyway to use the basic design pack but keep the "image_enlarge.gif" --- I'd really like to keep the small magnifying glass image (or create an icon) for the enlargment of the image but I love the css for everything else.
Thanks for your help and a great contribution!

Nathan


Hi...the css button mod does make all the images called by tep_image_button , to exclude an image and let it show as an image...just copy the wanted image from the buttons folder and into the image folder...

and then you change tep_image_button to tep_image for this image in the relevant .php file

in this case that is product_info.php
daniemuse
QUOTE (toyicebear @ Dec 27 2005, 05:29 AM) *
Can you post links which shows the 2 different button styles at your site?


Okay, I've partially restored my site. Here is the link:
https://host283.ipowerweb.com/~alldanie/new...cbade4777682815

I checked the page using another browser and the buttons were all uniform. I usually use Safari which was where I was seeing the problem. In Firefox, everything's cool. Let me know if you can help. And thanks for all your help already!
D
toyicebear
QUOTE (daniemuse @ Dec 28 2005, 01:56 AM) *
Okay, I've partially restored my site. Here is the link:
https://host283.ipowerweb.com/~alldanie/new...cbade4777682815

I checked the page using another browser and the buttons were all uniform. I usually use Safari which was where I was seeing the problem. In Firefox, everything's cool. Let me know if you can help. And thanks for all your help already!
D


Hi...

Sorry...but i do not have access to Safari

But it seems to work fine in bothe IE and Firefox.
toyicebear
Basic Design Pack 1.4 is now available: Download Link....

Added:

Great Categories , this gives a categories/menu box that looks better, have clearer navigation path markings and the looks are further customizable in stylesheet.css
Guido
i run in major problems with the newest build of OScommerce MS 2 [today]

after install your contribution i see only an empty site with the left table and no main content or pictures.

after i remove the html_output.php all was back again.
its my mistake ? maybe by downloading ?

thank you
arkitekt
Hi Toyicebear,

The change from tep_image_button to tep_image sounds easy enough but I couldn't seem to pull it off... could you suggest the changes necessary to this portion of the code --- so I can understand it? I attempted what I thought was right - but ended up losing all the product info except the title of the page. So I had to change it back.

Thanks for your help!



CODE
<script language="javascript"><!--
document.write('<?php echo '<a href="javascript:popupWindow(\\\'' . tep_href_link(FILENAME_POPUP_IMAGE, 'pID=' . $Qproduct->valueInt('products_id')) . '\\\')">' . tep_image(DIR_WS_IMAGES . $Qproduct->value('products_image'), addslashes($Qproduct->value('products_name')), SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT, 'hspace="5" vspace="5"') . '<br>' . tep_image_button('image_enlarge.gif', TEXT_CLICK_TO_ENLARGE) . '</a>'; ?>');
//--></script>
<noscript>
<?php echo '<a href="' . tep_href_link(DIR_WS_IMAGES . $Qproduct->value('products_image')) . '" target="_blank">' . tep_image(DIR_WS_IMAGES . $Qproduct->value('products_image'), $Qproduct->value('products_name'), SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT, 'hspace="5" vspace="5"') . '<br>' . tep_image_button('image_enlarge.gif', TEXT_CLICK_TO_ENLARGE) . '</a>'; ?>
toyicebear
QUOTE (Guido @ Dec 28 2005, 03:34 PM) *
i run in major problems with the newest build of OScommerce MS 2 [today]

after install your contribution i see only an empty site with the left table and no main content or pictures.

after i remove the html_output.php all was back again.
its my mistake ? maybe by downloading ?

thank you


You can use this pack without using the included html_outp.php , this will give you all the functions in the package except - automatic thumbnails and css buttons.
toyicebear
QUOTE (arkitekt @ Dec 28 2005, 06:52 PM) *
Hi Toyicebear,

The change from tep_image_button to tep_image sounds easy enough but I couldn't seem to pull it off... could you suggest the changes necessary to this portion of the code --- so I can understand it? I attempted what I thought was right - but ended up losing all the product info except the title of the page. So I had to change it back.

Thanks for your help!
CODE
<script language="javascript"><!--
document.write('<?php echo '<a href="javascript:popupWindow(\\\'' . tep_href_link(FILENAME_POPUP_IMAGE, 'pID=' . $Qproduct->valueInt('products_id')) . '\\\')">' . tep_image(DIR_WS_IMAGES . $Qproduct->value('products_image'), addslashes($Qproduct->value('products_name')), SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT, 'hspace="5" vspace="5"') . '<br>' . tep_image_button('image_enlarge.gif', TEXT_CLICK_TO_ENLARGE) . '</a>'; ?>');
//--></script>
<noscript>
<?php echo '<a href="' . tep_href_link(DIR_WS_IMAGES . $Qproduct->value('products_image')) . '" target="_blank">' . tep_image(DIR_WS_IMAGES . $Qproduct->value('products_image'), $Qproduct->value('products_name'), SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT, 'hspace="5" vspace="5"') . '<br>' . tep_image_button('image_enlarge.gif', TEXT_CLICK_TO_ENLARGE) . '</a>'; ?>



Try this and let me know if it works....


QUOTE
<script language="javascript"><!--
document.write('<?php echo '<a href="java script:popupWindow(\\\'' . tep_href_link(FILENAME_POPUP_IMAGE, 'pID=' . $Qproduct->valueInt('products_id')) . '\\\')">' . tep_image(DIR_WS_IMAGES . $Qproduct->value('products_image'), addslashes($Qproduct->value('products_name')), SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT, 'hspace="5" vspace="5"') . '<br>' . tep_image(DIR_WS_IMAGES . 'image_enlarge.gif', TEXT_CLICK_TO_ENLARGE) . '</a>'; ?>');
//--></script>
<noscript>
<?php echo '<a href="' . tep_href_link(DIR_WS_IMAGES . $Qproduct->value('products_image')) . '" target="_blank">' . tep_image(DIR_WS_IMAGES . $Qproduct->value('products_image'), $Qproduct->value('products_name'), SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT, 'hspace="5" vspace="5"') . '<br>' . tep_image(DIR_WS_IMAGES . 'image_enlarge.gif', TEXT_CLICK_TO_ENLARGE) . '</a>'; ?>
Guido
QUOTE (toyicebear @ Dec 30 2005, 06:14 AM) *
this will give you all the functions in the package except - automatic thumbnails and css buttons.


this was exactly what i like to use whistling.gif

is there a workaround ?

have somebody else problems with it ?

thank you
arkitekt
QUOTE (toyicebear @ Dec 29 2005, 07:19 PM) *
Try this and let me know if it works....



Tried this too but something strange happens... it just causes the product info page to go blank after the title.

I'll keep looking at this more to see what's up... if you have any ideas please let me know! smile.gif
toyicebear
QUOTE (Guido @ Dec 30 2005, 06:43 AM) *
this was exactly what i like to use whistling.gif

is there a workaround ?

have somebody else problems with it ?

thank you


I will upload a new version with an alternative html_output.php which will be compatible with the latest snapshot.

Try this one....

If this one does not work , the problem is more than likly to that your server does not have the required gdlib support needed for the thumbnails contribution.
toyicebear
Basic design pack 1.5 now available, Link...

Added:

One more alternative html_output.php added to the pack. This html_output.php is for those who use the latest oscommerce snapshot , oscommerce-2.2ms2-051113
Guido
you rock Toyicebear !

i am on my way to test it out.

Thank you very much.
[gdlib is enabled - i am the hoster]
Guido
it works great - thank you very much

:-)
toyicebear
QUOTE (arkitekt @ Dec 30 2005, 06:40 PM) *
Tried this too but something strange happens... it just causes the product info page to go blank after the title.

I'll keep looking at this more to see what's up... if you have any ideas please let me know! smile.gif


Use this one:


QUOTE
<script language="javascript"><!--
document.write('<?php echo '<a href="java script:popupWindow(\\\'' . tep_href_link(FILENAME_POPUP_IMAGE, 'pID=' . $Qproduct->valueInt('products_id')) . '\\\')">' . tep_image(DIR_WS_IMAGES . $Qproduct->value('products_image'), addslashes($Qproduct->value('products_name')), SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT, 'hspace="5" vspace="5"') . '<br>' . tep_image('images/image_enlarge.gif', TEXT_CLICK_TO_ENLARGE) . '</a>'; ?>');
//--></script>
<noscript>
<?php echo '<a href="' . tep_href_link(DIR_WS_IMAGES . $Qproduct->value('products_image')) . '" target="_blank">' . tep_image(DIR_WS_IMAGES . $Qproduct->value('products_image'), $Qproduct->value('products_name'), SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT, 'hspace="5" vspace="5"') . '<br>' . tep_image('images/image_enlarge.gif', TEXT_CLICK_TO_ENLARGE) . '</a>'; ?>



Att: Remember to upload a copy of the image image_enlarge.gif to your images folder.....
exhaust
I f i want use this background? http://snipesshop.de/
How do make it?
thank
toyicebear
QUOTE (exhaust @ Jan 2 2006, 02:52 PM) *
I f i want use this background? http://snipesshop.de/
How do make it?
thank


You can make 1 image ending with the "shadow" effect on both sides, this image should be made in the width you want your site to be.

Then you set this as a centered background image with center aligmnet and repeate-y .

The sections in the stylesheet where this is done is here:


QUOTE
BODY {
text-align: center;
background: #ffffff;
color: #000000;
margin: 0px;
}

.fixcenter {
width: 778px;
border: solid; border-width: 1px;
background: #ffffff;
color: #000000;
margin: auto;
margin-top: 20px;
text-align: left;
}


Playing around with these settings you can adjust it to your liking.


Att: Rember to press CTRL + F5 when viewing your site after having made changes to the stylesheet.
exhaust
I f i want move the page on the top of the browser???
sctsang
Thanks for your great contribution. I have installed it (version 1.5) successfully except that every Category Count Number starts from a new line. I changed the categories.php file as follows:

CODE
    if (tep_has_category_subcategories($counter)) {
      $categories_string .= '';
    }

// $categories_string .= '</a>';

  $categories_string .= "&nbsp; ";

    if (SHOW_COUNTS == 'true') {
      $products_in_category = tep_count_products_in_category($counter);
      if ($products_in_category > 0) {
        $categories_string .= '(' . $products_in_category . ')';
      }
    }
  $categories_string .= '</a>';
   // $categories_string .= '<br>';
   $categories_string .= '</div>';
toyicebear
QUOTE (exhaust @ Jan 3 2006, 01:18 PM) *
I f i want move the page on the top of the browser???



Change:

QUOTE
margin-top: 20px;


To:

QUOTE
margin-top: 0px;
toyicebear
QUOTE (sctsang @ Jan 3 2006, 03:28 PM) *
Thanks for your great contribution. I have installed it (version 1.5) successfully except that every Category Count Number starts from a new line. I changed the categories.php file as follows:

CODE
    if (tep_has_category_subcategories($counter)) {
      $categories_string .= '';
    }

// $categories_string .= '</a>';

  $categories_string .= "&nbsp; ";

    if (SHOW_COUNTS == 'true') {
      $products_in_category = tep_count_products_in_category($counter);
      if ($products_in_category > 0) {
        $categories_string .= '(' . $products_in_category . ')';
      }
    }
  $categories_string .= '</a>';
   // $categories_string .= '<br>';
   $categories_string .= '</div>';



That should do the trick.....


But a small tip, going into your admin and setting show category count to False will give you a tider looking category box aswell as reduce your db querie count drastically and by that make your site load faster.
exhaust
I have add a grafic to yuor contrib but i need know how reduce the weith of the box see my site please, http://www.needforexhaust.com/catalog2 i have add my modified category.php and i want that all box most be same the category box.
What i make??
Bye thanks
toyicebear
QUOTE (exhaust @ Jan 4 2006, 03:31 PM) *
I have add a grafic to yuor contrib but i need know how reduce the weith of the box see my site please, http://www.needforexhaust.com/catalog2 i have add my modified category.php and i want that all box most be same the category box.
What i make??
Bye thanks


I had a look, it seems that you have fixed it..since all the boxes now have the same width....

But for others with the same question, the box width is set in includes/application_top.php
exhaust
Yes i have fix it thank a lot!!! your feedback??
Thank bye
toyicebear
QUOTE (exhaust @ Jan 10 2006, 03:37 AM) *
Yes i have fix it thank a lot!!! your feedback??
Thank bye


Your sites design is comming along very nicly... :-)
Median
Hi

Great contribution. I have played around with stylesheet.css and got most of the changes I want working, but I just can't seem to get a background image to display.

crying.gif Sorry to be a complete dunce, but could you show me exactly what the relevant section of the stylesheet should read to diplay http:// www.mydomain/image/image.png as my page background.

Thanks very much

Mike
Riddick
hi! i installd the contrib and its running very well but i have one small problem: i cant remove the cartoonisch icons...

can u help me please???

greetzz from lake constanz germany
toyicebear
QUOTE (Median @ Jan 14 2006, 04:39 PM) *
Hi

Great contribution. I have played around with stylesheet.css and got most of the changes I want working, but I just can't seem to get a background image to display.

crying.gif Sorry to be a complete dunce, but could you show me exactly what the relevant section of the stylesheet should read to diplay http:// www.mydomain/image/image.png as my page background.

Thanks very much

Mike


1. upload the wanted background image to your shops /images/ folder

2. in stylesheet.css, instead of this:

QUOTE
background: #ffffff;


use this:

QUOTE
background-image: url("images/image.png");


When you want to view the result after a stylesheet change, press CTRL + F5 when viewing your site.
toyicebear
QUOTE (Riddick @ Jan 15 2006, 01:25 PM) *
hi! i installd the contrib and its running very well but i have one small problem: i cant remove the cartoonisch icons...

can u help me please???

greetzz from lake constanz germany



When you upload the files and folders from the pack to your webserver , you will be asked to overwrite old files...say yes to this one.

Then among other all the cartoonish images will be replaced with transparent gifs, ie. not visible anymore.

To view the changes correctly, you need to press CTRL + F5 when viewing the site after the changes is done.

Internet Explorer will then give you the new changes directly while Firefox sometimes require several goes before showing the new changes.
toyicebear
QUOTE (Median @ Jan 14 2006, 04:39 PM) *
Hi

Great contribution. I have played around with stylesheet.css and got most of the changes I want working, but I just can't seem to get a background image to display.

crying.gif Sorry to be a complete dunce, but could you show me exactly what the relevant section of the stylesheet should read to diplay http:// www.mydomain/image/image.png as my page background.

Thanks very much

Mike


Read my previous reply to you on how to insert an image in the stylesheet...

The place to set images for inner and/or outer site background is in this portion of the stylesheet:


QUOTE
BODY {
text-align: center;
background: #ffffff;
color: #000000;
margin: 0px;
}

.fixcenter {
width: 778px;
border: solid; border-width: 1px;
background: #ffffff;
color: #000000;
margin: auto;
margin-top: 20px;
text-align: left;
}
dreamlex
is there any way to change/add links on the header?
for example: Create Account| Login| Cart| Profile|Contact Us|
carbonman
AWESOME CONTRIB!!! yes I am yelling laugh.gif thanks very much

one question though. What is the difference between
html_output.php2.2ms2-051113
and
html_output.php

??

I'm having the same prob as someone before with the add to cart button to show up. I've managed to get all other buttons in use that I want but not this one.

A previous post said to change tep_image_button to tep_image which worked

However when I try to modify the tep_image_submit to tep_image the button shows but does not link anymore.
dreamlex
QUOTE (carbonman @ Jan 19 2006, 05:17 PM) *
AWESOME CONTRIB!!! yes I am yelling laugh.gif thanks very much

one question though. What is the difference between
html_output.php2.2ms2-051113
and
html_output.php

??

I'm having the same prob as someone before with the add to cart button to show up. I've managed to get all other buttons in use that I want but not this one.

A previous post said to change tep_image_button to tep_image which worked

However when I try to modify the tep_image_submit to tep_image the button shows but does not link anymore.


i dont know about cart button, but for html_output.php2.2ms2-051113, if you are using osc new version 2.2, use that. it doesnt matter whether you use it or not i suppose.
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2008 Invision Power Services, Inc.