Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

jarzom

Archived
  • Posts

    37
  • Joined

  • Last visited

Everything posted by jarzom

  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
  13. Chris, I have now been able to isolate the problem. It HAS something to do with using product_listing_col.php. If i incorporate you module into the product_listing_col.php i can get it to show the textboxes. Otherwise the product_listing_col.php will overwrite the product_extra_categories.php, and the box wont show. Anyone got it working with product_listing_col.php ?? Regards Jarzom
  14. Christian, thanks for ur quick reply. I understand how the contrib should work, but i dont work on my site. Could it be because i use product_listing_columphp instead of product_listing.php ? Regards jarzom
  15. Hi' I get this error when i press the Change password button. Warning: session_save_path() [function.session-save-path]: SAFE MODE Restriction in effect. The script whose uid is 386732 is not allowed to access owned by uid 0 in /customers/xxxxxxx.dk/xxxxxx.dk/httpd.www/catalog/admin/includes/functions/sessions.php on line 110 Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /customers/xxxxxxxx.dk/xxxxxx.dk/httpd.www/catalog/admin/includes/functions/sessions.php:110) in /customers/xxxxxxx.dk/coiffure-bettina.dk/httpd.www/catalog/admin/includes/functions/sessions.php on line 67 Any ideas ?
  16. Hi, Fab. Nope ! im using WYSIWYG Editor 1.7 /jarzom
  17. I have found out what causes the error. It is the WYSIWYG Editor 1.7 that removes the: Å Æ Ø å æ ø If i edit directly in tickercontent.ticker (like the old days ;) ) i works perfect. I gues that i will keep on doing that . . . regards jarzom
  18. Hmmm... strange. I got the 〈 charater in all cases ??
  19. In the prior release. I just putted in the å in the text-string, and it worked. Maybe there is a way in the .php file where you can say that you would like the UTF-8 characterset ? jarzom
  20. Hi again. Is there a way to handle national characters like eq: æ Æ ø Ø å Å I have tried withe the corresponding html codes: Å big Å Å Å Æ big Æ Æ Æ Ø big Ø Ø Ø å small å å å æ small æ æ æ ø small ø ø ø Regards jarzom
×
×
  • Create New...