Hi, Unregistered. | Today's Posts

T-Shirt Forums
User Name
Password

Need to Register?

Forgot Your Password?


Site Navigation







+   T-Shirt Forums > T-Shirt Selling > Ecommerce Site Design
Discuss website design for ecommerce sites, useability, navigation and other development considerations. To get feedback on your t-shirt design(s) or website, please post a request in our Site Reviews and Design Reviews section here.

How do I remove this image in osCommerce?



 
Share This Thread Thread Tools Search this Thread
Old December 29th, 2008 Dec 29, 2008 11:00:18 AM -   #1 (permalink)
T-Shirt Lover
T-Shirt Fan

zensan's Avatar
 
Member Since: Feb 2008
Location: Ontario, Canada
Posts: 73
Thanks: 1
Thanked 0 Times in 0 Posts
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)


Question How do I remove this image in osCommerce?

Hi I have a quick question for osCommerce experts. I am trying to remove this small image that is placed on the upper righthand corner (acompanied with the default line of "What's New Here on the front page?" ). When I click categories, there are also small image on the upper righthand corner in the mid section (I say mid section because I have left and right columns...) close to my right column.

Could anybody tell me how to get rid of this image? Thanks.
 
Digg this Post!Add Post to del.icio.us Tweet about this Post!
Old December 29th, 2008 Dec 29, 2008 11:10:58 AM -   #2 (permalink)
Senior Member
Certified T-Shirt Junkie


veedub3's Avatar
 
You can call me: Katrina
Member Since: Mar 2007
Location: Atlanta, GA/Panama City, Panama
Posts: 2,377
Thanks: 307
Thanked 674 Times in 492 Posts
Blog Entries: 1
Mentioned: 2 Post(s)
Tagged: 0 Thread(s)


Default Re: How do I remove this image in osCommerce?

I can't answer your question as I am in the process of building my site myself and I just visited the osCommerce Forums. I attached a link that may help you with your problem.

Hope this helps.

How Do I ...? All the basic install questions regularly asked... - osCommerce Community Support Forums
 
Digg this Post!Add Post to del.icio.us Tweet about this Post!
Old December 29th, 2008 Dec 29, 2008 11:50:51 AM -   #3 (permalink)
T-Shirt Lover
T-Shirt Fan
Thread Starter

zensan's Avatar
 
Member Since: Feb 2008
Location: Ontario, Canada
Posts: 73
Thanks: 1
Thanked 0 Times in 0 Posts
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)


Default Re: How do I remove this image in osCommerce?

Thanks. I also go to this forum (a lot) and looks for answers since I am very new to this. I removed "account", "cart" and "checkout" clip art from includes/header.php reading this forum but I could not find how to remove above mentioned images...
 
Digg this Post!Add Post to del.icio.us Tweet about this Post!
Old December 29th, 2008 Dec 29, 2008 10:29:11 PM -   #4 (permalink)
T-Shirt Lover
T-Shirt Ninja

lindsayanng's Avatar
 
Member Since: Oct 2008
Posts: 768
Thanks: 11
Thanked 111 Times in 99 Posts
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)


Default Re: How do I remove this image in osCommerce?

The image that is showing when you see the WELCOME line is in the following file
catalog/includes/languages/yourlanguage/index.php
In that file you will see a code that looks like this:
define(TEXT_MAIN)
After that, you will see some html formatting. That is where you will find that image.. If you right click on that image, you will also be able to find the file name so its easier to find it when you are searching.


The categories images are called in the following file
catalog/index.php

In there you will see the code calling for the category and then a table with the following type of code:
<td class="pageHeading" align="center"><?php echo tep_image(DIR_WS_IMAGES . $category['categories_image'], $category['categories_name'], HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT); ?></td>

(it should be somewhere around 110)

Then you just remove the image code in there.. HOWEVER if you do this, when you upload an image for the categories in the admin section, those images will never show. You shouldnt remove them if you ask me.
__________________
CappyPegLeg - Peg Legged Dog POWER NUBBY FOUNDATION!
Web Design for Idiots (blog) choosing a quality web host
 
Digg this Post!Add Post to del.icio.us Tweet about this Post!
Old December 30th, 2008 Dec 30, 2008 9:41:26 PM -   #5 (permalink)
T-Shirt Lover
T-Shirt Fan
Thread Starter

zensan's Avatar
 
Member Since: Feb 2008
Location: Ontario, Canada
Posts: 73
Thanks: 1
Thanked 0 Times in 0 Posts
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)


Default Re: How do I remove this image in osCommerce?

Thank you for the detailed input. I followed your advise and decided to "replace" the image with my jpg image. I downloaded catalog/index.php and found the image that I want to remove (table_background_default.gif). so I deleted the file name and typed my image file name.jpg as follows:

Get the right image for the top-right
$image = DIR_WS_IMAGES . 'canadianflag1.jpg';

and then, I uploaded my image into the image file folder but the image does not show up... What am I doing wrong?? I still see the original default image on the upper right corner. Do I need to do anything else?? Please help. Thanks
 
Digg this Post!Add Post to del.icio.us Tweet about this Post!
Old December 30th, 2008 Dec 30, 2008 9:57:02 PM -   #6 (permalink)
T-Shirt Lover
T-Shirt Fan
Thread Starter

zensan's Avatar
 
Member Since: Feb 2008
Location: Ontario, Canada
Posts: 73
Thanks: 1
Thanked 0 Times in 0 Posts
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)


Default Re: How do I remove this image in osCommerce?

Oops. I typed over the different image file name. I finally got it and was be able to replace it. Thanks!!!
 
Digg this Post!Add Post to del.icio.us Tweet about this Post!
Old December 30th, 2008 Dec 30, 2008 10:04:00 PM -   #7 (permalink)
T-Shirt Lover
T-Shirt Aficionado

aries's Avatar
 
You can call me: Doris
Member Since: Mar 2007
Location: Kentucky
Posts: 277
Thanks: 19
Thanked 3 Times in 2 Posts
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)


Default Re: How do I remove this image in osCommerce?

Quote:
Originally Posted by zensan
Thank you for the detailed input. I followed your advise and decided to "replace" the image with my jpg image. I downloaded catalog/index.php and found the image that I want to remove (table_background_default.gif). so I deleted the file name and typed my image file name.jpg as follows:

Get the right image for the top-right
$image = DIR_WS_IMAGES . 'canadianflag1.jpg';

and then, I uploaded my image into the image file folder but the image does not show up... What am I doing wrong?? I still see the original default image on the upper right corner. Do I need to do anything else?? Please help. Thanks
I am no pro but as i have done webpages for myself it should be canadianflag1.jpg not ahving these ' before and after ..hope this helps..
 
Digg this Post!Add Post to del.icio.us Tweet about this Post!
Old December 31st, 2008 Dec 31, 2008 7:23:53 AM -   #8 (permalink)
T-Shirt Lover
T-Shirt Ninja

lindsayanng's Avatar
 
Member Since: Oct 2008
Posts: 768
Thanks: 11
Thanked 111 Times in 99 Posts
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)


Default Re: How do I remove this image in osCommerce?

so you got it??

Just so you know, its USUALLY easier to just create your graphics that you want to put in place of the existing ones and make them the SAME NAME as the existing.. So if you called your canadian flah TABLE_BACGROUND_DEFAULT and uploaded it to the images folder, it would replace the existing with your file.. HOWEVER, there are multiple places where that image is used, so there will be SOME Places where you will have to change the code, but overall, you CAN do that,,

There are SOO many little crappy images all over that demo site, and it took me a few months to find them all and get rid of them. I STILL have some that I am finding occasionally.. but for the most part, i have gotten rid of all of them that any average customer might come across.
__________________
CappyPegLeg - Peg Legged Dog POWER NUBBY FOUNDATION!
Web Design for Idiots (blog) choosing a quality web host
 
Digg this Post!Add Post to del.icio.us Tweet about this Post!






This is a discussion about How do I remove this image in osCommerce? that was posted in the Ecommerce Site Design section of the forums.

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off

Similar Threads
Thread Thread Starter Forum Replies Last Post
CorelDraw Remove Black Image From Wh. Backround badappleapparel Graphics and Design Help 5 January 31st, 2008 04:57 PM
osCommerce Designs zepher Ecommerce Site Design 4 September 22nd, 2007 05:34 PM
OsCommerce ? joemeca Ecommerce Site Design 2 December 18th, 2006 04:46 AM
Anyone using osCommerce AND 2CO? govtissues Ecommerce Site Design 6 May 3rd, 2006 07:54 PM
oscommerce Help jermie Ecommerce Site Design 2 February 24th, 2006 01:25 PM


All times are GMT -8. The time now is 01:27 PM.


Copyright 2004-2012 T-ShirtForums.com. All rights reserved.