Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Adding template style to box


Ronny

Recommended Posts

Posted

I posted this under Template And Images but not sure if that was the right section.

 

I bought an osCommerce template a while back an have done som editing to it.

The template came without the information box installed so I did what I could to make it appear.

I figured out how to do this but I would like for this box to look like the category box. Don´t know what the people who made the templates did to generate this look.

One thing I found out is that includes/boxes/category.php is not included i includes/column_left.php so the coding is obviously somewhere else.

 

Here´s an image of what I mean.

 

Untitled-1.gif

 

Here´s the column_left.php

<?php
/*
 $Id: column_left.php,v 1.15 2003/07/01 14:34:54 hpdl Exp $

 osCommerce, Open Source E-Commerce Solutions
 http://www.oscommerce.com

 Copyright (c) 2003 osCommerce

 Released under the GNU General Public License
*/

?>
		   <table border="0" cellspacing="0" cellpadding="0">
			<tr><td width="220" height="109" class="bg3"><?php echo tep_draw_form('search',tep_href_link(FILENAME_ADVANCED_SEARCH_RESULT, '', 'NONSSL', false),'get') ?>
				 <table border="0" cellspacing="0" cellpadding="0" width="183" align="center">
				  <tr><td height="11"></td></tr>
				  <tr><td class="ab"><?=tep_image(DIR_WS_IMAGES.'m11.gif')?>  <span class="tx2"><?=IMAGE_BUTTON_SEARCH?></span></td></tr>
				  <tr><td height="16"></td></tr>
				  <tr><td width="218">
<input type=text name="keywords" class="go" value="">

</td></tr>
				  <tr><td height="12"></td></tr>
				  <tr><td class="ab"><?=tep_image(DIR_WS_IMAGES.'m12.gif')?>  <a class="ml2" href="<?=tep_href_link('advanced_search.php')?>"><?=BOX_SEARCH_ADVANCED_SEARCH?></a></td></tr>
				 </table></form>
			</td></tr>
			<tr><td height="4"></td></tr>
		   </table>
		   <table border="0" cellspacing="0" cellpadding="0">
			<tr><td><?=tep_image(DIR_WS_IMAGES.'m13.gif')?></td>
				<td class="bg4 ab" width="211" height="26">    <?=tep_image(DIR_WS_IMAGES.'m15.gif')?>  <span class="tx2"><?=BOX_HEADING_CATEGORIES?></span></td>
				<td><?=tep_image(DIR_WS_IMAGES.'m16.gif')?></td></tr>
		   </table>
		   <table border="0" cellspacing="0" cellpadding="0" width="173" align="center">
			<tr><td><ul>
<?
function tep_show_category($counter) {
global $tree, $categories_string, $cPath_array, $ii;

if ($tree[$counter]['next_id']==false) $kk=' class="sea_el"'; else $kk='';							  

$ii++;
if(!$tree[$counter]['level']){ 
$categories_string .= $categories_string ? '' : ''; 
$categories_string .= '<li'.$kk.'><a href=';
if ($tree[$counter]['parent'] == 0) {
$cPath_new = 'cPath=' . $counter;
} else {
$cPath_new = 'cPath=' . $tree[$counter]['path'];
}
$categories_string .= tep_href_link('index.php', $cPath_new) . '>';
// display categry name
$categories_string .= $tree[$counter]['name'];
$categories_string .= '</a>';

if (SHOW_COUNTS == 'true') {
  $products_in_category = tep_count_products_in_category($counter);
  if ($products_in_category > 0) {
	$categories_string .= ' (' . $products_in_category . ')</li>';
  }
}

}else{ // SUBCATEGORY
$categories_string .= '';
for($i=0;$i<$tree[$counter]['le vel'];$i++)
$categories_string .= '';
$categories_string .= '<li'.$kk.'><a href='; 
if ($tree[$counter]['parent'] == 0) {
$cPath_new = 'cPath=' . $counter;
} else {
$cPath_new = 'cPath=' . $tree[$counter]['path'];
}
$categories_string .= tep_href_link('index.php', $cPath_new) . '>-';
// display category name
$categories_string .= $tree[$counter]['name'];
$categories_string .= '</a>';

if (SHOW_COUNTS == 'true') {
  $products_in_category = tep_count_products_in_category($counter);
  if ($products_in_category > 0) {
	$categories_string .= ' (' . $products_in_category . ')</li>';
  }
}

} 
if ($tree[$counter]['next_id'] != false && $ii < 20) {
tep_show_category($tree[$counter]['next_id']);
} 
}
define(TABLE_CATEGORIES, "categories");
define(TABLE_CATEGORIES_DESCRIPTION, "categories_description");
$categories_string = '';
$tree = array();
$categories_query = tep_db_query("select c.categories_id, cd.categories_name, c.parent_id from " . TABLE_CATEGORIES . " c, " . TABLE_CATEGORIES_DESCRIPTION . " cd where c.parent_id = '0' and c.categories_id = cd.categories_id and cd.language_id='" . (int)$languages_id ."' order by sort_order, cd.categories_name");
while ($categories = tep_db_fetch_array($categories_query)) {
$tree[$categories['categories_id']] = array('name' => $categories['categories_name'],
'parent' => $categories['parent_id'],
'level' => 0,
'path' => $categories['categories_id'],
'next_id' => false);
if (isset($parent_id)) {
$tree[$parent_id]['next_id'] = $categories['categories_id'];
}
$parent_id = $categories['categories_id'];
if (!isset($first_element)) {
$first_element = $categories['categories_id'];
}
}
//------------------------
if ($cPath) {
$new_path = '';
reset($cPath_array);
while (list($key, $value) = each($cPath_array)) {
unset($parent_id);
unset($first_id);
$categories_query = tep_db_query("select c.categories_id, cd.categories_name, c.parent_id from " . TABLE_CATEGORIES . " c, " . TABLE_CATEGORIES_DESCRIPTION . " cd where c.parent_id = '" . (int)$value . "' and c.categories_id = cd.categories_id and cd.language_id='" . (int)$languages_id ."' order by sort_order, cd.categories_name");
if (tep_db_num_rows($categories_query)) {
$new_path .= $value;
while ($row = tep_db_fetch_array($categories_query)) {
$tree[$row['categories_id']] = array('name' => $row['categories_name'],
'parent' => $row['parent_id'],
'level' => $key+1,
'path' => $new_path . '_' . $row['categories_id'],
'next_id' => false);
if (isset($parent_id)) {
$tree[$parent_id]['next_id'] = $row['categories_id'];
}
$parent_id = $row['categories_id'];
if (!isset($first_id)) {
$first_id = $row['categories_id'];
}
$last_id = $row['categories_id'];
}
$tree[$last_id]['next_id'] = $tree[$value]['next_id'];
$tree[$value]['next_id'] = $first_id;
$new_path .= '_';
} else {
break;
}
}
}
$categories_string .= '';
tep_show_category($first_element); 
$categories_string .= '';
echo $categories_string;
?>

[b][color=#6633FF]////////////////THE FOLLOWING I ADDED AS A HEADER TO THE INFORMATION BOX///////////////////[/color][/b]

<tr><td height="4"></td></tr>
		   </table>
		   <table border="0" cellspacing="0" cellpadding="0">
			<tr><td><?=tep_image(DIR_WS_IMAGES.'m13.gif')?></td>
				<td class="bg4 ab" width="211" height="26">    <?=tep_image(DIR_WS_IMAGES.'m15.gif')?>  <span class="tx2"><?=BOX_HEADING_INFORMATION?></span></td>
				<td><?=tep_image(DIR_WS_IMAGES.'m16.gif')?></td></tr>
											</table>
<table border="0" cellspacing="0" cellpadding="0" width="173" align="center">
			<tr><td><ul>

			<tr><td><ul>
				   </ul></td></tr>
		   </table>

 

Is the reference to the style/look anywhere to find here?

And if so.....

 

Please help :'(

May life be good to you...

Sincerely, Ronny

Posted

no, it is set where the infobox styles are defined.

Personaly I did not like the intire infobox structure all over the site and restyled all the used boxes manually

(no tables used, more css).

 

edit: as found in includes/boxes/...

Posted
no, it is set where the infobox styles are defined.

That´s true but in this case category.php is not the sourse for the category in column_left.php.

 

I can delete category.php and nothing happens.

 

I found that the images used are defined in style.css. But I can´t find any file regarding the category box with a link to the css file.

 

I´m considering makeing a table from scratch and paste the links from information.php and link this new file to the css. Not the best way but something I can manage :blush:

May life be good to you...

Sincerely, Ronny

Archived

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

×
×
  • Create New...