Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Help Removing the White Arrow Icons


buckandzinkos

Recommended Posts

Posted

I've tried locating these little white arrows and I cannot seem to find them. I would like to comepletly remove them from the left and right infoboxes. Can someone please point me to the correct spot?

 

thank you.

Posted

I've tried locating these little white arrows and I cannot seem to find them. I would like to comepletly remove them from the left and right infoboxes. Can someone please point me to the correct spot?

 

thank you.

Those are links to the info box contents. You really want to eliminate them? Have you looked in the images folder? (that's where the image is)

 

But, if you want to remove the link and the image then find the box code in /catalog/includes/boxes/whateverbox.php

 

    new infoBoxHeading($info_box_contents, false, false, tep_href_link(FILENAME_WHATEVERBOX));

and remove the tep_href_link() code and see what it does.

Community Bootstrap Edition, Edge

 

Avoid the most asked question. See How to Secure My Site and How do I...?

Posted

Those are links to the info box contents. You really want to eliminate them? Have you looked in the images folder? (that's where the image is)

 

But, if you want to remove the link and the image then find the box code in /catalog/includes/boxes/whateverbox.php

 

    new infoBoxHeading($info_box_contents, false, false, tep_href_link(FILENAME_WHATEVERBOX));

and remove the tep_href_link() code and see what it does.

 

 

Thanks for pointing me to that I will give it a try. I only want to remove it from a couple of the boxes. What if I wanted to just edit the image that shows up there instead of the white arrow, how do I change that?

Posted

Thanks for pointing me to that I will give it a try. I only want to remove it from a couple of the boxes. What if I wanted to just edit the image that shows up there instead of the white arrow, how do I change that?

I'm just guessing that the arrow is an image in the images directory. Upload a new image with that same name.

Community Bootstrap Edition, Edge

 

Avoid the most asked question. See How to Secure My Site and How do I...?

Posted

I'm just guessing that the arrow is an image in the images directory. Upload a new image with that same name.

 

 

The problem with doing that is that it changes the white arrow in every info box. Basically what I would like to do is figure out how to put an image inside a box header that only applies to that one box, not all of them.

Posted

The problem with doing that is that it changes the white arrow in every info box. Basically what I would like to do is figure out how to put an image inside a box header that only applies to that one box, not all of them.

Then you will have to go to the /includes/boxes/yourbox.php file and find the function the merges the link with the image, and write a custom function with the image you want and change which function the box calls.

 

Of course, what is the return from the amount of butchering you are going to be doing to your shop? Is it really that necessary? Only you know.

Community Bootstrap Edition, Edge

 

Avoid the most asked question. See How to Secure My Site and How do I...?

Posted

Then you will have to go to the /includes/boxes/yourbox.php file and find the function the merges the link with the image, and write a custom function with the image you want and change which function the box calls.

 

Of course, what is the return from the amount of butchering you are going to be doing to your shop? Is it really that necessary? Only you know.

 

 

excellent point =) Thanks for the help.

Archived

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

×
×
  • Create New...