Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Right Hand Column Problem Look Puhleez


bsharke

Recommended Posts

Posted

I have searched everywhere to see where I can edit out the line "links page" in my Links Page Box. Could someone point me there. It will be greatly appreciated.

I want to change it and add another link similar to the one below saying "Antiques Links"

 

Here is the website: http://www.blacklightshopantiques.com

Thanks

 

Billy

Posted

catalog/includes/boxes/links.php

No longer giving free advice. Please place deposit in meter slot provided.  Individual: [=] SME: [==] Corporation: [===]
If deposit does not fit one of the slots provided then you are asking too much! :P

Is your Osc dated try Phoenix  raising oscommerce from the ashes.

Posted

Hi Steve.....thanks for the reply but I still do not see where the "Links Page" text below the header and above the "Antiques Links" is in my code to remove. Would you look at the code here and tell what to remove.

 

Copyright © 2003 osCommerce

 

Released under the GNU General Public License

*/

?>

<!-- information //-->

<tr>

<td>

<?php

$info_box_contents = array();

$info_box_contents[] = array('text' => BOX_HEADING_ANTIQUELINKS);

new infoBoxHeading($info_box_contents, false, false);

 

 

$info_box_contents[] = array('align' => 'left',

'text' => '<b><a href="http://www.blacklightshopantiques.com/linkpage.html" target="_blank"><b>Antique Links</a>');

$info_box_contents[] = array('align' => 'left',

'text' => '<b><a href="http://www.blacklightshopantiques.com/linkform.html">Submit a Site</a>'

);

new infoBox($info_box_contents);

?>

</td>

</tr>

<!-- information_eof //-->

Thanks

 

Billy

Posted

A view source shows that you have this somewhere in your codes

  <tr>
   <td class="boxText">Links Page</td>
 </tr>

 

I have seen this happen before, if I can remember I will let you know.

No longer giving free advice. Please place deposit in meter slot provided.  Individual: [=] SME: [==] Corporation: [===]
If deposit does not fit one of the slots provided then you are asking too much! :P

Is your Osc dated try Phoenix  raising oscommerce from the ashes.

Posted

  $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>');

 

Follow the format from the information file. Put the links into (1) array as above. I have a feeling that it's because you have an array set for each link so it's putting the contents in yet another array. Otherwise, if you do it your way, just use html for the links and don't assign arrays - it's pointless.

Posted

Got a screenshot? Also, what mod are you using?

 

btw, you have an extra <b> tag, 2 open <b> tags and also, the <b> tags should be placed inside the <a href> tags

Archived

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

×
×
  • Create New...