Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

jarzom

Archived
  • Posts

    37
  • Joined

  • Last visited

Profile Information

  • Real Name
    jarzom

jarzom's Achievements

  1. Hi, The contrib doesnt' seem to work when i try COPYING a product. Ill get an error: 1136 - Column count doesn't match value count at row 1 Any ideas ?? Regards jarzom
  2. Hi, When i try Index Position i get an error accessing google: Unable to open remote file http://www.google.dk/search?as_q=Biosilk&a...ges&start=0. The site i am trying is: www.coiffure-bettina.dk/catalog Any ideas ? regards jarzom
  3. Hahahahaha, SORRY Fab ! I didn't see the pull-down on the left side :rolleyes: Again, sorry :lol:
  4. Hi, Fab Have you ever thought about makeing this contrib multilangual ? Regards jarzom
  5. Hi, i have encountered a minor bug. If you add an additional language to your system, and afterwards try to update the category-description, it wont update it at all (only the old languages). The box remains empty ?? If you delete the whole category-description and start over again, the you can update all the languages. It seems that it only handles the languages that are installed when the textbox is created. regards jarzom
  6. Hi, I have added the code (found somewhere here in topic) to get description and BUY NOW, but i would like to have the 'BUY NO' button on a seperate line (<BR>), in the bottom instead of now in front of prices. 'text' => '<a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $featured_products['products_id']) . '">' . tep_image(DIR_WS_IMAGES . $featured_products['products_image'], $featured_products['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT) . '</a><br><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $featured_products['products_id']) . '">' . $featured_products['products_name'] . '</a><br>' . strip_tags($description['products_description']) . '<a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $featured_products['products_id']). '">' . DESCR_READ_MORE . '</a><br> <a href="' . tep_href_link(FILENAME_DEFAULT, tep_get_all_get_params(array('action')) . 'action=buy_now&products_id=' . $featured_products['products_id']) . '">' . tep_image_button('button_buy_now.gif', IMAGE_BUTTON_BUY_NOW) . '</a> <s>' . $currencies->display_price($featured_products['products_price'], tep_get_tax_rate($featured_products['products_tax_class_id'])) . '</s> <span class="productSpecialPrice">' . Does anybody got a solotion for this ? Regards jarzom
  7. Thanks allot Chris. It works perfectly :thumbsup:
  8. I would like to bypass the first screen and go directly to the creditcard-payment, instead of having to: Don't have a PayPal account? Use your credit card or bank account (where available). Continue. This PayPal-module bypasses the first screen: http://www.oscommerce.com/community/contributions,5655/ Is it possible to implement this function ? And is anybody up for it ? Thanks ! Regards jarzom
  9. Anybody who has implemented the WYSIWYG Editor to this contrib. ? It would really help me alot :) regards Jarzom
  10. Hi, has anybody made an addition to this contrib. So that it shows the attributes as well ? Eg. different prices, sizes, colors and so forth ..... Anybody ?? Regards jarzom
  11. Solution for those who use product_listing_col, Showing the textboxes. Hi, to make this great contrib work with product_listing_col.php, you can make the following changes to the installation: 1. Disregard the additions to index.php (you dont need them) 2. Add the following code BEFORE anything (at the very top, at line 1) at product_listing_col.php <?php // category textbox mod // first query - get current category id if (DISPLAY_EXTRA_CATEGORIES == 'true'){ $text_query = tep_db_query("select c.categories_id from " . TABLE_CATEGORIES . " c, " . TABLE_CATEGORIES_DESCRIPTION . " cd where c.categories_id = '" . (int)$current_category_id . "' and cd.categories_id = '" . (int)$current_category_id . "' and cd.language_id = '" . (int)$languages_id . "'"); $text = tep_db_fetch_array($text_query); // now get textbox description for this category (if set) and display if(isset($text['categories_id'])){ $query2 = tep_db_query("select categories_description from " . TABLE_EXTRA_CATEGORIES . " where ". TABLE_EXTRA_CATEGORIES.".categories_id=". $text['categories_id'] . " and ". TABLE_EXTRA_CATEGORIES . ".language_id = '" . (int)$languages_id . "'"); while($category_info_text = tep_db_fetch_array($query2)){ if(!empty($category_info_text['categories_description'])){ // prevent output where description not set for particular language echo ("<div class=\"cat_info_box\">".$category_info_text['categories_description']."</div>"); } } } } ?> Thats it ! Thanks for at great contrib Regards jarzom
  12. Hi, to make this great contrib work with product_listing_col.php, you can make the following changes to the installation: 1. Disregard the additions to index.php (you dont need them) 2. Add the following code BEFORE anything (at the very top, at line 1) at product_listing_col.php <?php // category textbox mod // first query - get current category id if (DISPLAY_EXTRA_CATEGORIES == 'true'){ $text_query = tep_db_query("select c.categories_id from " . TABLE_CATEGORIES . " c, " . TABLE_CATEGORIES_DESCRIPTION . " cd where c.categories_id = '" . (int)$current_category_id . "' and cd.categories_id = '" . (int)$current_category_id . "' and cd.language_id = '" . (int)$languages_id . "'"); $text = tep_db_fetch_array($text_query); // now get textbox description for this category (if set) and display if(isset($text['categories_id'])){ $query2 = tep_db_query("select categories_description from " . TABLE_EXTRA_CATEGORIES . " where ". TABLE_EXTRA_CATEGORIES.".categories_id=". $text['categories_id'] . " and ". TABLE_EXTRA_CATEGORIES . ".language_id = '" . (int)$languages_id . "'"); while($category_info_text = tep_db_fetch_array($query2)){ if(!empty($category_info_text['categories_description'])){ // prevent output where description not set for particular language echo ("<div class=\"cat_info_box\">".$category_info_text['categories_description']."</div>"); } } } } ?> Thats it ! Thanks for at great contrib Regards jarzom
×
×
  • Create New...