Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

RJMA

Pioneers
  • Posts

    5
  • Joined

  • Last visited

Everything posted by RJMA

  1. Hello, I'm using the Minsparx Admin in my store. Can I use the AJAX Manager in it too? Or this may make errors or "blow up" my store?
  2. Hello adelgado. To change the term you need to open the file "shopping_cart.php" in the "catalog" folder and edit the line 97. Be careful, so you don't change where you're no suppose to. There is the original line. Where you need to change is underlined and in red: $products_name .= '<br /><br />' . tep_draw_input_field('cart_quantity[]', $products[$i]['quantity'], 'size="4"') . tep_draw_hidden_field('products_id[]', $products[$i]['id']) . tep_draw_button(IMAGE_BUTTON_UPDATE, 'refresh') . ' or <a href="' . tep_href_link(FILENAME_SHOPPING_CART, 'products_id=' . $products[$i]['id'] . '&action=remove_product') . '">remove</a>'; Must look like this: $products_name .= '<br /><br />' . tep_draw_input_field('cart_quantity[]', $products[$i]['quantity'], 'size="4"') . tep_draw_hidden_field('products_id[]', $products[$i]['id']) . tep_draw_button(IMAGE_BUTTON_UPDATE, 'refresh') . ' ou <a href="' . tep_href_link(FILENAME_SHOPPING_CART, 'products_id=' . $products[$i]['id'] . '&action=remove_product') . '">Remover</a>'; Another thing, this modification isn´t in the language pack, but in the base files of osCommerce. I'll try to find a away to change this, because if a visitor change the language he is using, in this case it will always shown the Portuguese term.
×
×
  • Create New...