Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

EttuBrutus

Pioneers
  • Posts

    12
  • Joined

  • Last visited

EttuBrutus's Achievements

  1. First off, Thank you for the contribution!! I have installed 1.08 and am having an error when trying to edit existing categories. I am able to add them just fine and Have been able to add ckeditor to the new category section. It works great. But when trying to edit an existing category the "work panel" on the right hand side of the page goes away and I am just left with a list of categories and the active/inactive toggle. I would really appreciate someone providing me an idea to resolve this as I have not been able to solve it my self as of yet. Thank you in advance.
  2. in the installation instructions there is this: In includes/application_top.php, FIND: /*** End Header Tags SEO ***/ ADD BENEATH: /**** BEGIN ARTICLE MANAGER ****/ // include the articles functions require(DIR_WS_FUNCTIONS . 'articles.php'); // calculate topic path if (isset($HTTP_GET_VARS['tPath'])) { $tPath = $HTTP_GET_VARS['tPath']; } elseif (isset($HTTP_GET_VARS['articles_id']) && !isset($HTTP_GET_VARS['authors_id'])) { $tPath = tep_get_article_path($HTTP_GET_VARS['articles_id']); } else { $tPath = ''; } if (tep_not_null($tPath)) { $tPath_array = tep_parse_topic_path($tPath); $tPath = implode('_', $tPath_array); $current_topic_id = $tPath_array[(sizeof($tPath_array)-1)]; } else { $current_topic_id = 0; } if (isset($_GET['articles_id'])) { $articlesPage = FILENAME_ARTICLE_INFO . "?articles_id=" . $_GET['articles_id']; $pageTags_query = tep_db_query("select page_name, page_title from " . TABLE_HEADERTAGS . " where page_name like '" . $articlesPage . "' and language_id = '" . (int)$languages_id . "' LIMIT 1"); if (tep_db_num_rows($pageTags_query) == 1) { $pageTags = tep_db_fetch_array($pageTags_query); $breadcrumb->add('Articles', tep_href_link(FILENAME_ARTICLES)); $breadcrumb->add($pageTags['page_title'], tep_href_link($articlesPage)); } } /**** END ARTICLE MANAGER ****/ I do not have a "/*** End Header Tags SEO ***/" in my application top. Any suggestions on whereelse to put it. I have 2.3.1 installed. Thanks
  3. I have realized that this dosent happen in IE. Must be something related to Chrome.
  4. I feel confused. I hope someone can help me out. I have recently installed osc2.3.1 and have added ipvu2.05 to it since 2.06 and 2.07 seem to be written for osc2.2. I have the database installed and all of the files installed. The problem I am having is that when I go to add new info pages through the admin side I the body of the page I am trying to add doesn't enter the database. instead I get the error: 1364 - Field 'information_description' doesn't have a default value insert into information (language_id, information_group_id, sort_order, information_title) values ('1', '1', '2', 'we') I have manually entered info into the database and am able to view and edit the entries title but not the body. I do not get an error when editing and the page reports a successful modification but the body doesn't change. I am sure that it is some small spelling error in the code that writes to the database, But I haven't been able to find anything and am hoping someone will be able to help me or give me a fresh idea. Thanks for any help
  5. I was able to do this. you have to add the folowing to your sql database(be sure to backup first!) INSERT INTO `configuration` (`configuration_id`, `configuration_title`, `configuration_key`, `configuration_value`, `configuration_description`, `configuration_group_id`, `sort_order`, `last_modified`, `date_added`) VALUES (250, 'Display Product Last Updated', 'PRODUCT_LIST_LAST_MODIFIED', '5', 'Do You want to display the date an item was last updated?', 8, 90, '2011-07-19 17:33:42', '2011-07-19 11:07:11'); open catalog/index.php ------------------------------------------ find: 'PRODUCT_LIST_QUANTITY' => PRODUCT_LIST_QUANTITY, below add: 'PRODUCT_LIST_LAST_MODIFIED' => PRODUCT_LIST_LAST_MODIFIED, ------------------------------------------ find: case 'PRODUCT_LIST_QUANTITY': $select_column_list .= 'p.products_quantity, '; break; below add: case 'PRODUCT_LIST_LAST_MODIFIED': $select_column_list .= 'p.products_last_modified, '; break; ------------------------------------------ find: case 'PRODUCT_LIST_QUANTITY': $listing_sql .= " order by p.products_quantity " . ($sort_order == 'd' ? 'desc' : '') . ", pd.products_name"; break; Below add: case 'PRODUCT_LIST_LAST_MODIFIED': $listing_sql .= " order by p.products_last_modified " . ($sort_order == 'd' ? 'desc' : '') . ", pd.products_name"; break; ****************************************** open catalog/includes/modules/product_listing.php ------------------------------------------ find: case 'PRODUCT_LIST_QUANTITY': $lc_text = TABLE_HEADING_QUANTITY; $lc_align = 'left'; break; below add: case 'PRODUCT_LIST_LAST_MODIFIED': $lc_text = TABLE_HEADING_LAST_MODIFIED; $lc_align = 'left'; break; ------------------------------------------ find: case 'PRODUCT_LIST_QUANTITY': $prod_list_contents .= ' <td align="right">' . $listing['products_quantity'] . '</td>'; break; below add: case 'PRODUCT_LIST_LAST_MODIFIED': $prod_list_contents .= ' <td align="left">' . $listing['products_last_modified'] . '</td>'; break; ------------------------------------------ open catalog/includes/languages/english/index.php add: define('TABLE_HEADING_LAST_MODIFIED', 'Last Modified'); Done. hope it works for you!!
  6. I am trying to do the same but having a hard go at it. Have you made any progress?
×
×
  • Create New...