Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

remove link manually


Guest

Recommended Posts

Posted

how to remove this link manually without contrib

what file that i must edit

 

Shipping & Returns

Privacy Notice

Conditions of Use

Contact Us

Posted
how to remove this link manually without contrib

what file that i must edit

 

Shipping & Returns

Privacy Notice

Conditions of Use

Contact Us

 

 

You can remove them just be removing the informationbox link from your template.

 

HOWEVER, depending upon where you are, if you are doing business over the internet, it is a LEGAL requirement to have this information posted in a visible and easily noticeable area!!!!

 

Be careful what you remove.

Just between us, remember there are only 10 kinds of people in the world; those who understand binary and those who don't!!

 

Remember, learning is a "do-it-yourself" experience; although, not necessarily a "do-it-BY-yourself" experience.

 

The quickest way to learn is to forget to BACKUP!

Posted
how to remove this link manually without contrib

what file that i must edit

 

Shipping & Returns

Privacy Notice

Conditions of Use

Contact Us

If you want the entire box gone

catalog/includes/column_left.php

find this code:

 require(DIR_WS_BOXES . 'information.php');

change to this:

//require(DIR_WS_BOXES . 'information.php');

My Contributions

 

Stylesheet With Descriptions Glassy Grey Boxtops Our Products Meta Tags On The Fly

Password Protect Admin

"No matter where you go....There you are" - Buccaroo Bonsai

Posted
If you want the entire box gone

catalog/includes/column_left.php

find this code:

 require(DIR_WS_BOXES . 'information.php');

change to this:

//require(DIR_WS_BOXES . 'information.php');

 

no not delete all

 

just 1 or 2 link

 

not all

Posted
no not delete all

 

just 1 or 2 link

 

not all

ok then

catalog/includes/boxes/information.php

 

  $info_box_contents = array();
 $info_box_contents[] = array('text' => '<a href="' . tep_href_link(FILENAME_SHIPPING) . '">' . BOX_INFORMATION_SHIPPING . '</a><br>' .
									 '<a href="' . tep_href_link(FILENAME_PRIVACY) . '">' . BOX_INFORMATION_PRIVACY . '</a><br>' .
									 '<a href="' . tep_href_link(FILENAME_CONDITIONS) . '">' . BOX_INFORMATION_CONDITIONS . '</a><br>' .
									 '<a href="' . tep_href_link(FILENAME_CONTACT_US) . '">' . BOX_INFORMATION_CONTACT . '</a>');


each line starts with  '<a href	and ends with   .
except for the last one that must end in   );
just delete the lines you want
example

 $info_box_contents[] = array('text' => '<a href="' . tep_href_link(FILENAME_SHIPPING) . '">' . BOX_INFORMATION_SHIPPING . '</a>');
would only give you shipping link

My Contributions

 

Stylesheet With Descriptions Glassy Grey Boxtops Our Products Meta Tags On The Fly

Password Protect Admin

"No matter where you go....There you are" - Buccaroo Bonsai

Posted
ok then

catalog/includes/boxes/information.php

 

  $info_box_contents = array();
 $info_box_contents[] = array('text' => '<a href="' . tep_href_link(FILENAME_SHIPPING) . '">' . BOX_INFORMATION_SHIPPING . '</a><br>' .
									 '<a href="' . tep_href_link(FILENAME_PRIVACY) . '">' . BOX_INFORMATION_PRIVACY . '</a><br>' .
									 '<a href="' . tep_href_link(FILENAME_CONDITIONS) . '">' . BOX_INFORMATION_CONDITIONS . '</a><br>' .
									 '<a href="' . tep_href_link(FILENAME_CONTACT_US) . '">' . BOX_INFORMATION_CONTACT . '</a>');
each line starts with  '<a href	and ends with   .
except for the last one that must end in   );
just delete the lines you want
example

 $info_box_contents[] = array('text' => '<a href="' . tep_href_link(FILENAME_SHIPPING) . '">' . BOX_INFORMATION_SHIPPING . '</a>');
would only give you shipping link

 

thx its work

case close

Archived

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

×
×
  • Create New...