Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

sembrouille

Pioneers
  • Posts

    74
  • Joined

  • Last visited

Reputation Activity

  1. Like
    sembrouille got a reaction from MaceBiz in Shipping in cart   
    This contribution allows guests (without Login) to see shipping costs in shopping_cart, they can choose the country and mode of transport.
     
    download -> http://addons.oscommerce.com/info/7821
  2. Like
    sembrouille got a reaction from al3ks in Shipping in cart   
    Hi,
     
     
     
    Box Shopping:
    in /includes/functions/general.php
     
    Find:
     
    $text_fdp_sboxe = '<span class=msgfdpgratuit>' . sprintf(TEXT_REST_FREE_SHIPPING, $currencies->format($fdp_reste_sboxe)) . ' ' . $currencies->format(0) .'</span>';
     
     
    Replace:
     
    $text_fdp_sboxe = '<span class=msgfdpgratuit>' . sprintf(TEXT_REST_FREE_SHIPPING, $currencies->format($fdp_reste_sboxe)) .'</span>';
     
     
    For the text:
     
    in /includes/languages/english.php
     
    You can change the text in:
    define('TEXT_REST_FREE_SHIPPING', 'The text that you like ...');
     
    ************************************************** ***********************
     
    Shopping cart:
     
    in /includes/fdp_panier.php
     
    Find:
    $text_fdp_scart = sprintf(TEXT_REST_FREE_SHIPPING, $currencies->format($fdp_gratuit_scart)) . ' ' . $currencies->format(0);
     
     
    Replace :
     
    $text_fdp_scart = sprintf(TEXT_REST_FREE_SHIPPING, $currencies->format($fdp_gratuit_scart));
     
     
    For the text:
     
    in /includes/languages/english.php/shopping_cart.php
     
    You can change the text in:
    define('TEXT_REST_FREE_SHIPPING', 'The text that you like ...');
     
×
×
  • Create New...