

grouppda
Members-
Content count
22 -
Joined
-
Last visited
About grouppda
- Birthday June 22
Profile Information
-
Real Name
Smeets Peter
-
Gender
Male
-
Location
Belgium
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
RMA Request Module
grouppda replied to grouppda's topic in osCommerce Online Merchant Community Bootstrap Edition
I have another good idea, a contribution to extract product information from the database into an excel file... Maybe this exists allready ? -
RMA Request Module
grouppda replied to grouppda's topic in osCommerce Online Merchant Community Bootstrap Edition
I know... -
RMA Request Module
grouppda replied to grouppda's topic in osCommerce Online Merchant Community Bootstrap Edition
Again, I'm not a programmer, I just try... I came from Oscommerce V2.0 and I upgraded last month to Phoenix... Maybe there is a guy who can fix this. -
RMA Request Module
grouppda replied to grouppda's topic in osCommerce Online Merchant Community Bootstrap Edition
let's rock & roll -
-
RMA Request Module
grouppda replied to grouppda's topic in osCommerce Online Merchant Community Bootstrap Edition
And if we use a different logo on our mails ? For exemple, in our shop we have a logo with a black background 1280px x 115px and on our mails we have a smaller logo with a white background 140px x50px Maybe an idea to chose between different logo's... -
RMA Request Module
grouppda replied to grouppda's topic in osCommerce Online Merchant Community Bootstrap Edition
That's the problem, I don't know how I can do this, I am not a programmer, I try just with the "Try and Error"-Method Maybe one of the guys can fix this or send me the script for it. -
RMA Request Module
grouppda replied to grouppda's topic in osCommerce Online Merchant Community Bootstrap Edition
BUG: I forgot to delete a critical line in catalog/rma.php In my shop's mail there is a logo placed at the top, this will not work in your shop, so you need to delete just one line at 43: $email_text.= "<img src='https://xtreme-iceskateshop.be/images/icons/logo.jpg'/>"; If you want a logo you should modify this line: $email_text.= "<img src='https:// [your shop] /images/icons/logo.jpg'/>"; and add a picture named logo.jpg in the folder: catalog/images/icons Here's the file without the link to the logo: rma.php -
-
RMA Request Module
grouppda replied to grouppda's topic in osCommerce Online Merchant Community Bootstrap Edition
Here's a screendump -
RMA Request Module
grouppda posted a topic in osCommerce Online Merchant Community Bootstrap Edition
I have a contribution for Phoenix. RMA Request Module tested on OSCOMMERCE PHOENIX V1.0.5.0 (in my own shop) This module allows a customer easily to submit a RMA request to the webshop manager and shows all the orders made in the last 15 days. If you will show orders older, you need to change a value in a string (see below) You must be a customer to submit the form or you must login ****************************************************************************************************** * For use with Recaptcha V3 you need to install catalog/includes/hooks/shop/rma/Recaptcha3 * * If you don't use Recaptcha V3 you don't need to install the hooks module * ****************************************************************************************************** Instructions for regular use: Add the files in the folders: -catalog/rma.php rma.php -catalog/includes/hooks/shop/rma/Recaptcha3 Recaptcha3.php (only if you have Recaptcha3) -catalog/includes/languages/dutch/rma.php rma.php -catalog/includes/languages/english/rma.php rma.php -catalog/includes/languages/french/rma.php rma.php Search in the file catalog/includes/languages/ [your languages] /shipping.php for define('TEXT_CONTAINER_BLOK',' xxxxxxxxxxxx '); and add the text below Catalog/includes/languages/dutch/shipping.php add or replace: define('TEXT_CONTAINER_BLOK', ' <p> <strong><i>Retourlabel: </i> </strong> Vraag <a href="rma.php" target="_parent"><i><b>hier</b></i></a> uw retourlabel aan. </p>'); -------------------------------------------------------- Catalog/includes/languages/english/shipping.php add or replace: define('TEXT_CONTAINER_BLOK', ' <p> <strong><i>Retourlabel: </i> </strong> Ask your retourlabel <a href="rma.php" target="_parent"><i><b>here</b></i></a> </p>'); --------------------------------------------------------- Catalog/includes/languages/french/shipping.php add or replace: define('TEXT_CONTAINER_BLOK', ' <p> <strong> <i> Étiquette de retour: </i> </strong> Demandez votre étiquette de retour <a href="rma.php" target="_parent"> <i> <b> ici </b> </ i> </a> </p>'); ---------------------------------------------------------- ORDERS MADE IN THE LAST xx DAYS //catalog/rma.php search: $next_due_date = strtotime ( '15 day' , strtotime ( $date ) ) ; change 15 in another value exemple: orders made in the last 30 days will be: $next_due_date = strtotime ( '30 day' , strtotime ( $date ) ) ; ----------------------------------------------------------- If you add "0Cancelled" in your shop's administrator / localisation / orderstatus => all cancelled orders will be shown as marked "order cancelled" otherwise they are highlighted as green If it's the last day to ask for a RMA for an order, that order will be highlited in red, all other orders are highlighted in green. Succes folks ! -
this was the quickest way at this moment, I tried to add a new module but the page stucks.
-
Foutmelding na installatie Nederlands taalpakket
grouppda replied to geldolto's topic in Languages and Zones
welke versie gebruik je ? Je spreekt van ( Engels V2.3.4.1) en (Dutch Phoenix) Er is een verschil tussen deze twee versies. Poenix taalpakketten werken niet op V2.3.xxx Best installeer je de volledige Phoenixversie, die werkt ook op een mobieltje -
The easiest way... in catalog/includes/templatetop.php search for : echo $oscTemplate->getContent('navigation'); <?php /* $Id$ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 2018 osCommerce Released under the GNU General Public License */ $oscTemplate->buildBlocks(); $OSCOM_Hooks->call('siteWide', 'injectRedirects'); if (!$oscTemplate->hasBlocks('boxes_column_left')) { $oscTemplate->setGridContentWidth($oscTemplate->getGridContentWidth() + $oscTemplate->getGridColumnWidth()); } if (!$oscTemplate->hasBlocks('boxes_column_right')) { $oscTemplate->setGridContentWidth($oscTemplate->getGridContentWidth() + $oscTemplate->getGridColumnWidth()); } ?> <!DOCTYPE html> <html<?php echo HTML_PARAMS; ?>> <head> <meta charset="<?php echo CHARSET; ?>"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <title><?php echo tep_output_string_protected($oscTemplate->getTitle()); ?></title> <base href="<?php echo (($request_type == 'SSL') ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>"> <?php echo $OSCOM_Hooks->call('siteWide', 'injectSiteStart'); echo $oscTemplate->getBlocks('header_tags'); ?> </head> <body> <?php echo $OSCOM_Hooks->call('siteWide', 'injectBodyStart'); // NAVBAR ABOVE HEADERLOGO, show = remove // in the echo line // echo $oscTemplate->getContent('navigation'); // END NAVBAR ABOVE HEADERLOGO ?> <div id="bodyWrapper" class="<?php echo BOOTSTRAP_CONTAINER; ?> pt-2"> <?php echo $OSCOM_Hooks->call('siteWide', 'injectBodyWrapperStart'); echo $OSCOM_Hooks->call('siteWide', 'injectBeforeHeader'); require('includes/header.php'); // NAVBAR UNDER HEADERLOGO, hide = put // in the echo line echo $oscTemplate->getContent('navigation'); echo "<br>"; // END NAVBAR UNDER HEADERLOGO echo $OSCOM_Hooks->call('siteWide', 'injectAfterHeader'); ?> <div class="row"> <div id="bodyContent" class="col order-1 order-md-6"> <?php echo $OSCOM_Hooks->call('siteWide', 'injectBodyContentStart'); ?>
-
Is it possible to place the navbar under the storelogo ? Now I have the navbar then the storelogo and next the breadcrump
-
solved. The file wasn't overwrite on the remoteserver, perhaps a cache problem On the remote server there was still define('HTTP_COOKIE_DOMAIN', ' '); define('HTTPS_COOKIE_DOMAIN', ' '); while it should be, I changed the configure file in Plesk and now it's working define('HTTP_COOKIE_DOMAIN', '.xtreme-iceskateshop.be'); define('HTTPS_COOKIE_DOMAIN', '.xtreme-iceskateshop.be');
-
After changing my webspace from http into https shopping cart stays empty, it's impossible to fill it configure.php define('HTTP_SERVER', 'https://xtreme-iceskateshop.be'); define('HTTPS_SERVER', 'https://xtreme-iceskateshop.be'); define('ENABLE_SSL', true); define('HTTP_COOKIE_DOMAIN', '.xtreme-iceskateshop.be'); define('HTTPS_COOKIE_DOMAIN', '.xtreme-iceskateshop.be'); define('HTTP_COOKIE_PATH', '/catalog/'); define('HTTPS_COOKIE_PATH', '/catalog/'); define('DIR_WS_HTTP_CATALOG', '/catalog/'); define('DIR_WS_HTTPS_CATALOG', '/catalog/'); define('DIR_FS_CATALOG', '/var/www/vhosts/xtreme-iceskateshop.be/httpdocs/catalog/'); define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/'); define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');