Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Question involving top right hand pictures


dbibby

Recommended Posts

Good Morning

 

I have spent some time reading through the forums and I cant find the answer that I need so im either not looking well enough or it hasnt been asked before.

 

My Site

 

Above is the link to my site as you can see the box (Empty Image) to the left of the live support button is causing me problems. If someone could advise how to get rid of this that would be great :)

 

Many Thanks

Link to comment
Share on other sites

There it is supposed to be an image. You deleted the image from the server but not the refference to it, thats why the browser is looking to find it. Because no image existing you see the questionmark (or red x etc)

 

Do you want to have an image there or not?

Link to comment
Share on other sites

There it is supposed to be an image. You deleted the image from the server but not the refference to it, thats why the browser is looking to find it. Because no image existing you see the questionmark (or red x etc)

 

Do you want to have an image there or not?

 

Hi Multimixer

 

I have put the image back on for reference but would like it not to be there.

 

Thanks

Link to comment
Share on other sites

I have put the image back on for reference but would like it not to be there.

 

If it is just about the image on the "front page" the go to file index.php and find near the end

            
<td class="pageHeading" align="right"><?php echo tep_image(DIR_WS_IMAGES . 'table_background_default.gif', HEADING_TITLE, HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT); ?></td>

Change it to this

            
<td class="pageHeading" align="right"><?php //echo tep_image(DIR_WS_IMAGES . 'table_background_default.gif', HEADING_TITLE, HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT); ?></td>

 

Do you want to remove the other category images too?

Link to comment
Share on other sites

If it is just about the image on the "front page" the go to file index.php and find near the end

            
<td class="pageHeading" align="right"><?php echo tep_image(DIR_WS_IMAGES . 'table_background_default.gif', HEADING_TITLE, HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT); ?></td>

Change it to this

            
<td class="pageHeading" align="right"><?php //echo tep_image(DIR_WS_IMAGES . 'table_background_default.gif', HEADING_TITLE, HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT); ?></td>

 

Do you want to remove the other category images too?

 

Yes I would like to remove from everypage is that in the includes/languages/english/index.php becuase I cannot find it?

 

Thanks

 

EDIT: Found the other PHP and it works fine.

 

Thank you.

Link to comment
Share on other sites

You can put your own category image there to be displayed, are you sure you want to remove? It could be for example a nice graphic or something

 

Yeah I think I want to get rid of it I prefer it without the image :)

 

Thank you.

Link to comment
Share on other sites

Yeah I think I want to get rid of it I prefer it without the image :)

 

Ok, so, in file index.php (main root file, not the language file)

 

Find

            
<td class="pageHeading" align="right"><?php echo tep_image(DIR_WS_IMAGES . $category['categories_image'], $category['categories_name'], HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT); ?></td>

Replace with

            
<td class="pageHeading" align="right"><?php //echo tep_image(DIR_WS_IMAGES . $category['categories_image'], $category['categories_name'], HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT); ?></td>

 

Find again

            
<td align="right"><?php echo tep_image(DIR_WS_IMAGES . $image, HEADING_TITLE, HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT); ?></td>

replace with

            
<td align="right"><?php //echo tep_image(DIR_WS_IMAGES . $image, HEADING_TITLE, HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT); ?></td>

Link to comment
Share on other sites

  • 2 months later...

You can put your own category image there to be displayed, are you sure you want to remove? It could be for example a nice graphic or something

 

Hi, could you tell us how you can change the category imge? I'd like to be able to do this.

Link to comment
Share on other sites

Dali,

 

Category images are uploaded from Admin. When you create the category there is an option to upload an image.

 

 

Chris

Link to comment
Share on other sites

Dali,

 

Category images are uploaded from Admin. When you create the category there is an option to upload an image.

 

 

Chris

 

Thanks Chris. After posting this I managed to find out how to do it :blush: (posted in another thread). However I don't want an image on the main page, but don't know how to remove it for just that page...

Link to comment
Share on other sites

I don't want an image on the main page, but don't know how to remove it for just that page...

 

See post #4 wink.gif

- :: Jim :: -

- My Toolbox ~ Adobe Web Bundle, XAMPP & WinMerge | Install ~ osC v2.3.3.4 -

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...