OsCommerce: Unterschied zwischen den Versionen

Aus Doku-Wiki
Zur Navigation springenZur Suche springen
Zeile 12: Zeile 12:
 
  vi [WEBROOT]includes/languages/german/impressum.php
 
  vi [WEBROOT]includes/languages/german/impressum.php
 
  vi [WEBROOT]includes/languages/english/impressum.php
 
  vi [WEBROOT]includes/languages/english/impressum.php
 +
=Widerrufsbelehrung=
 +
* [http://addons.oscommerce.com/info/5948 Download]
 +
==Doku==
 +
* [http://addons.oscommerce.com/profile/56411 Author: compuskill]
 +
 +
1. Backup!
 +
 +
2. Upload the files attached to your shop directory:
 +
    catalog/includes/languages/yourlanguage/widerruf.php
 +
    catalog/widerruf.php
 +
 +
3. Edit the existing file catalog/includes/filenames.php
 +
    Find this code ->[ '''?>''' ]
 +
 +
    and add before it:
 +
      define('FILENAME_WIDERRUF', 'widerruf.php');
 +
      define('FILENAME_BESTELLABLAUF', 'bestellablauf.php');
 +
 +
4. Edit the existing file catalog/includes/boxes/information.php
 +
    Find the following code:
 +
      '<a href="' . tep_href_link(FILENAME_CONDITIONS) . '">' . BOX_INFORMATION_CONDITIONS . '</a><br>' .
 +
    and add after it:
 +
      '<a href="' . tep_href_link(FILENAME_WIDERRUF) . '">'. BOX_INFORMATION_WIDERRUF . '</a><br>' .
 +
 +
5. Edit the existing file catalog/includes/languages/yourlanguage.php (i.e. german.php, english.php etc.)
 +
    Find this code: [ '''?>''' ]
 +
    and add before it:
 +
      define('BOX_INFORMATION_WIDERRUF', 'Widerrufsbelehrung');
 +
 +
6. Repeat step 5 for all languages your shop supports
 +
 +
7. Modify the language files catalog/includes/languages/yourlanguage.php: Enter the required legal information.
 +
 +
8. You're done!
  
  

Version vom 12. Oktober 2010, 14:39 Uhr

Links

Module ein-/ausblenden

vi [WEBROOT]/includes/column_right.php
vi [WEBROOT]/includes/column_left.php

Impressum

Impressum: Das Impressum muss in die folgenden Dateien separat eingefügt werden.

vi [WEBROOT]includes/languages/german/impressum.php
vi [WEBROOT]includes/languages/english/impressum.php

Widerrufsbelehrung

Doku

1. Backup!

2. Upload the files attached to your shop directory:
   catalog/includes/languages/yourlanguage/widerruf.php
   catalog/widerruf.php
3. Edit the existing file catalog/includes/filenames.php
   Find this code ->[ ?> ]
   and add before it: 
     define('FILENAME_WIDERRUF', 'widerruf.php');
     define('FILENAME_BESTELLABLAUF', 'bestellablauf.php');

4. Edit the existing file catalog/includes/boxes/information.php
   Find the following code:
      '<a href="' . tep_href_link(FILENAME_CONDITIONS) . '">' . BOX_INFORMATION_CONDITIONS . '</a>
' . and add after it: '<a href="' . tep_href_link(FILENAME_WIDERRUF) . '">'. BOX_INFORMATION_WIDERRUF . '</a>
' . 5. Edit the existing file catalog/includes/languages/yourlanguage.php (i.e. german.php, english.php etc.) Find this code: [ ?> ] and add before it: define('BOX_INFORMATION_WIDERRUF', 'Widerrufsbelehrung'); 6. Repeat step 5 for all languages your shop supports 7. Modify the language files catalog/includes/languages/yourlanguage.php: Enter the required legal information. 8. You're done!