Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

vmf08034

Members
  • Posts

    97
  • Joined

  • Last visited

Profile Information

  • Real Name
    Vicente M. Martinez
  • Gender
    Male
  • Location
    Valencia, Spain

vmf08034's Achievements

  1. Can anybody tell me where are the templates stored?
  2. I am installing Mail manager but get following error. Parse error: syntax error, unexpected ';', expecting T_PAAMAYIM_NEKUDOTAYIM in/home/corpor15/public_html/supernovadistri.com/catalog/anna/includes/functions/general.php on line 1519 This is the line, copied from your app directly: ////////////////////////////////////////////////////////start mail manager///////////////////////////////////////////// function tep_mm_set_mailstatus($mail_id, $status) { if ($status == '1') { return tep_db_query("update " . TABLE_MM_RESPONSEMAIL . " set status = '1' where mail_id = '" . (int)$mail_id . "'");(THIS IS THE LINE) } elseif ($status == '0') {< return tep_db_query("update " . TABLE_MM_RESPONSEMAIL . " set status = '0' where mail_id = '" . (int)$mail_id . "'"); } else { return -1; } } //mail it function tep_mm_sendmail($mail, $email_address, $sender_name, $sender, $output_subject, $output_content_html, $output_content_txt) { $mimemessage = new emailMailManager(array('X-Mailer: cat/mail_manager.com')); // add html and alternative text version $mimemessage->add_html($output_content_html, $output_content_txt); $mimemessage->build_message(); // encoding -> 76 character linebreak, replacements must be done before $mimemessage->send($mail, $email_address, $sender_name, $sender, $output_subject, $output_content_html, $output_content_txt); } ///////////////////////////////////////////////////end mail manager////
  3. thanks, i have done that, but the customer can see the products and the prices
  4. I implemented the member approval add-on, which works fine, But I need to hide, products and prices until the customer has been approved. Any help?
  5. I am runing os2.3 there is no way to have more than one shipping method available. I have 3 shipping methods flat, multizone, ups all as true an with order number but always i only get multizone as the ONLY method of shipping
  6. Hi, Can anybody tell me where can I control the size of the text for the description of the products in featured screen? Thanks
  7. I have installed sppc and works fine EXCEPT that i do not get an email advising me that a customer (a store) needs to be included from admin in the commerce category of customers. i know it can be done.- i have it installed on another web store.- but cannot find how i did it. thanks
  8. Yes that is a relly good solution. I have only installed there the extra fields contibution, so it would br easy to fix I am also using the produl listing multi, instead of product listing.php. In there i might encounter problems???
  9. Now I am trying to install QPBPP. First problem...in admin/categories tells me following: Parse error: syntax error, unexpected $end in /path_to_admin_directory/admin_directory/categories.php on line 1526 </td> <!-- body_text_eof //--> </tr> </table> <!-- body_eof //--> <!-- footer //--> <?php require(DIR_WS_INCLUDES . 'footer.php'); ?> <!-- footer_eof //--> <br> </body> </html> <?php require(DIR_WS_INCLUDES . 'application_bottom.php'); ?>
  10. I dont know if i expressed myself right, I needed to insert a way for customers to put the quantity they want to buy right in the product listing page Well i was able to fix it. FINALLY!!!! Thanks Jan, your tips were of most importance to solve this matter.
  11. I am trying but.... can´t Is there a contribution for SPPC that adds a checkbox on the the product listing page to add the quantities to the cart?
  12. I will work on that But most of all THANK YOU.....
  13. The file i am using has following: while ($listing = tep_db_fetch_array($listing_query)) { instead of: for ($x = 0; $x < $no_of_listings; $x++) { so if I use the $X I get a blank screen And also it only happens with the wholesaler price column the rest are ok, if it wasa problem of the $x it would happen in all columns (?) :blink:
  14. I think the problem is in the list price section, but i am totally unable to find the cause, I have been trying for 3 days..... :blink: case 'PRODUCT_LIST_RETAIL_PRICE': $lc_align = 'right'; if ((tep_not_null($listing['products_retail_price'])) && ($listing['products_retail_price']) > 0) { $lc_text = '<font color="#55508a">' . $currencies->display_price($listing['products_retail_price'], tep_get_tax_rate($listing['products_tax_class_id'])); } else { $lc_text = ' '; } break; // End EZier New Fields added case 'PRODUCT_LIST_PRICE': $lc_align = 'center'; if (tep_not_null($listing['specials_new_products_price'])) { $lc_text = ' <div class="listPrice">' . $currencies->display_price($listing['products_price'], tep_get_tax_rate($listing['products_tax_class_id'])) . '</div> <span class="productSpecialPrice">' . $currencies->display_price($listing['specials_new_products_price'], tep_get_tax_rate($listing['products_tax_class_id'])) . '</span> '; } else { $lc_text = ''. $currencies->display_price($listing['products_price'], tep_get_tax_rate($listing['products_tax_class_id'])); } break;
×
×
  • Create New...