Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

De Dokta

Pioneers
  • Posts

    329
  • Joined

  • Last visited

  • Days Won

    15

Reputation Activity

  1. Like
    De Dokta got a reaction from frankl in Modal Info Popup Layer for osc 2.3.4BS   
    Support Thread for the new content module Modal Info Popup Layer for osCommerce 2.3.4BS
     
    Note: This content Module is for the bootstrap version of oscommerce 2.3.4 only!
     
    Download Link: http://addons.oscommerce.com/info/9204
     
    If you want your customers to take note of certain informations, there is one way to make them aware by using a popup window or a layer. This contrib uses a bootstrap modal for this purpose. When a customer enters the shop the first time, a info popup layer is once laid over the page - regardless on which site the customer enters the shop.
     

    The individual messages can be created via a pop-up manager as plain text, html-text and/or graphics in the admin area.There you can also specify a start and an expiration date for the display of messages.
     

     
    The add-on is designed as content module, which means that no changes to core files (in the frontend) are neccessary. Only in the admin area two files (admin\includes\boxes\tools.php and admin\includes\languages\english.php) must be changed to add a new entry to the tools box.
     
    Tested with bootstrap-gold and FF 35, Google Chrome 37.0.2062.124, Opera 26.0 and IE 8.
     
    Please report any problems here.
     
    J.J.
  2. Like
    De Dokta got a reaction from ce7 in table edit instructions addon Invoice Editor 1.0 / 8885   
    Hi
     
    1. Definitions which you don't find in the Sqls you find in the appropriate language files - in this case admin/includes/your language/invoice.php and packingslip.php.
     
    2. Have you entered the tables in admin/includes/database_tables.php?
     
    3. Depends on what you want to change. But in principle correct!
     
    J.J.
  3. Like
    De Dokta got a reaction from ce7 in table edit instructions addon Invoice Editor 1.0 / 8885   
    @@ce7
     
    Hi,
     
    it's German. :D
     
    If you don't understand the meaning of any definition in the files look into invoice_en.sql where you'll find these definitions and their meaning in English.
     
    J.J.
  4. Like
    De Dokta got a reaction from sihi in Latest News Rotator Multilingual 1.0 BS   
    Hi
     
    I made a new version of my Latest News Multilingual Addon (http://addons.oscommerce.com/info/9147) as content module for BS-Gold.
     
    It displays news in a sliding or fading carousel which you can install on the index page or in the header area.

    With the exception of the index.php, which by default has (still) no hook, no core files must be changed.
     
    Download here: http://addons.oscommerce.com/info/9314
    Demo here: http://www.video-stuff.de/demo/bootstrap
     
    Pls. report any problems, bugs etc. here.
     
    J.J.
  5. Like
    De Dokta got a reaction from raiwa in State Selector for BS   
    Artisan Foundry, on 12 May 2015 - 21:20, said:
     
    There's a <div class="form-group"> in address_book_details.php. Change it to <div class="form-group has-feedback"> and the asterix will be in the right place.
     
    J.J.
  6. Like
    De Dokta got a reaction from raiwa in [Contribution] Recently Viewed Products(sales optimized)   
    @@raiwa
     
    Hi
     
    Just tested your BS version on BS gold - works really great! :rolleyes:
    Two small issues: It would be helpful, to add SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT to content\product_info\cm_pi_recently_viewed.php and to modules\content\index\cm_recently_viewed.php to prevent problems with images of different sizes.
    $recently_viewed_content .= tep_image (DIR_WS_IMAGES . $products_data[$products_id]['image'], $products_data[$products_id]['name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT . 'hspace="2" vspace="3"'); It also would be useful to add the equal-height tag to modules\content\product_info\cm_pi_recently_viewed.php:
    $recently_viewed_content .= '    <div class="thumbnail equal-height">'; J.J.
     
  7. Like
    De Dokta reacted to raiwa in [Contribution] Recently Viewed Products(sales optimized)   
    Uploaded a new version for bootstrap:
     
    Recently Viewed Products (sales optimized) for osCommerce 2.3.4 Bootstrap
    http://addons.oscommerce.com/info/9299
     
     
    Version 3.0 BS by @raiwa [email protected]
    Changes:
    - Updated for Bootstrap
    - All modules updated for Bootstrap box and content modules
    - recently viewed page updated to use core product_listing.php
    - hardcoded database table names and filenames
    - spanish and german language files added
    - Easy installation


    Based on:
    http://addons.oscommerce.com/info/5520
    1.0 Original version by b00
    2.0 Updates and additional features by Kymation
     
    Demo Store:
    http://www.sarfotostock.com/osCommerce234bs/
  8. Like
    De Dokta got a reaction from raiwa in [Contribution] Recently Viewed Products(sales optimized)   
    Hi Chris,
     
    your shop is based on an earlier version of bootstrap, not on bootstrap-gold. To get raiwas addon into your product_info you must add the appropriate hook to that file:
     
      <div class="row">
        <?php echo $oscTemplate->getContent('product_info'); ?>
      </div>
     
    J.J.
  9. Like
    De Dokta got a reaction from Tsimi in Shipping Quote in Cart 2.3.3.4 - Support Thread   
    @@Tsimi
     

    Hi Lambros
     
    I'm not sure if I exactly understand what you mean. Do you want to display in the pulldown that part that appears in checkout process after the name of the shipping module in brackets, e.g. Flat Rate (Best Way) ?
    If so, look in both files for:
    $quotes_array[] = array('id' => $quotes[$i]['id'].'_'.$quotes[$i]['methods'][$j]['id'], 'text' => $quotes[$i]['module']); and replace it by:
      $quotes_array[] = array('id' => $quotes[$i]['id'].'_'.$quotes[$i]['methods'][$j]['id'], 'text' => $quotes[$i]['methods'][$j]['title']); also look for  (2x in each file) 
    $title_shipping = $quotes[$i]['module']; and replace it with:
       $title_shipping = $quotes[$i]['methods'][$j]['title']; For your zones/states problem I have no quick answer. I never saw a shipping module which works on the basis of states (probably because something like that is not needed in Europe :D ) - so I don't know how they work. I suppose they use the entry_zone_id!? But it should be possible - for example as in create account - to add a logic that checks to see whether a country has zones, and if so, will open a second pulldown for states.........A lot of effort for such a gimmick!
     
    J.J.

     
  10. Like
    De Dokta got a reaction from Tsimi in Shipping Quote in Cart 2.3.3.4 - Support Thread   
    Next try - fixes the 'invalid zone' bug:
    get_shipping_quotes.php
    shipping_in_cart.php
  11. Like
    Guest
    De Dokta got a reaction from Guest in Modal Info Popup Layer for osc 2.3.4BS   
    Support Thread for the new content module Modal Info Popup Layer for osCommerce 2.3.4BS
     
    Note: This content Module is for the bootstrap version of oscommerce 2.3.4 only!
     
    Download Link: http://addons.oscommerce.com/info/9204
     
    If you want your customers to take note of certain informations, there is one way to make them aware by using a popup window or a layer. This contrib uses a bootstrap modal for this purpose. When a customer enters the shop the first time, a info popup layer is once laid over the page - regardless on which site the customer enters the shop.
     

    The individual messages can be created via a pop-up manager as plain text, html-text and/or graphics in the admin area.There you can also specify a start and an expiration date for the display of messages.
     

     
    The add-on is designed as content module, which means that no changes to core files (in the frontend) are neccessary. Only in the admin area two files (admin\includes\boxes\tools.php and admin\includes\languages\english.php) must be changed to add a new entry to the tools box.
     
    Tested with bootstrap-gold and FF 35, Google Chrome 37.0.2062.124, Opera 26.0 and IE 8.
     
    Please report any problems here.
     
    J.J.
  12. Like
    De Dokta got a reaction from tgely in Modal Info Popup Layer for osc 2.3.4BS   
    Support Thread for the new content module Modal Info Popup Layer for osCommerce 2.3.4BS
     
    Note: This content Module is for the bootstrap version of oscommerce 2.3.4 only!
     
    Download Link: http://addons.oscommerce.com/info/9204
     
    If you want your customers to take note of certain informations, there is one way to make them aware by using a popup window or a layer. This contrib uses a bootstrap modal for this purpose. When a customer enters the shop the first time, a info popup layer is once laid over the page - regardless on which site the customer enters the shop.
     

    The individual messages can be created via a pop-up manager as plain text, html-text and/or graphics in the admin area.There you can also specify a start and an expiration date for the display of messages.
     

     
    The add-on is designed as content module, which means that no changes to core files (in the frontend) are neccessary. Only in the admin area two files (admin\includes\boxes\tools.php and admin\includes\languages\english.php) must be changed to add a new entry to the tools box.
     
    Tested with bootstrap-gold and FF 35, Google Chrome 37.0.2062.124, Opera 26.0 and IE 8.
     
    Please report any problems here.
     
    J.J.
  13. Like
    De Dokta reacted to altoid in Modal Info Popup Layer for osc 2.3.4BS   
    Add in install
     
    Before running, install content module
     
    Otherwise...database error
  14. Like
    De Dokta got a reaction from multimixer in Modal Info Popup Layer for osc 2.3.4BS   
    Support Thread for the new content module Modal Info Popup Layer for osCommerce 2.3.4BS
     
    Note: This content Module is for the bootstrap version of oscommerce 2.3.4 only!
     
    Download Link: http://addons.oscommerce.com/info/9204
     
    If you want your customers to take note of certain informations, there is one way to make them aware by using a popup window or a layer. This contrib uses a bootstrap modal for this purpose. When a customer enters the shop the first time, a info popup layer is once laid over the page - regardless on which site the customer enters the shop.
     

    The individual messages can be created via a pop-up manager as plain text, html-text and/or graphics in the admin area.There you can also specify a start and an expiration date for the display of messages.
     

     
    The add-on is designed as content module, which means that no changes to core files (in the frontend) are neccessary. Only in the admin area two files (admin\includes\boxes\tools.php and admin\includes\languages\english.php) must be changed to add a new entry to the tools box.
     
    Tested with bootstrap-gold and FF 35, Google Chrome 37.0.2062.124, Opera 26.0 and IE 8.
     
    Please report any problems here.
     
    J.J.
  15. Like
    De Dokta got a reaction from Tsimi in Modal Info Popup Layer for osc 2.3.4BS   
    Support Thread for the new content module Modal Info Popup Layer for osCommerce 2.3.4BS
     
    Note: This content Module is for the bootstrap version of oscommerce 2.3.4 only!
     
    Download Link: http://addons.oscommerce.com/info/9204
     
    If you want your customers to take note of certain informations, there is one way to make them aware by using a popup window or a layer. This contrib uses a bootstrap modal for this purpose. When a customer enters the shop the first time, a info popup layer is once laid over the page - regardless on which site the customer enters the shop.
     

    The individual messages can be created via a pop-up manager as plain text, html-text and/or graphics in the admin area.There you can also specify a start and an expiration date for the display of messages.
     

     
    The add-on is designed as content module, which means that no changes to core files (in the frontend) are neccessary. Only in the admin area two files (admin\includes\boxes\tools.php and admin\includes\languages\english.php) must be changed to add a new entry to the tools box.
     
    Tested with bootstrap-gold and FF 35, Google Chrome 37.0.2062.124, Opera 26.0 and IE 8.
     
    Please report any problems here.
     
    J.J.
  16. Like
    De Dokta reacted to multimixer in Modal Info Popup Layer for osc 2.3.4BS   
    No need for that either, you can avoid modifying any file. Create a new (sub)box file + corresponding language file
    foreach ( $cl_box_groups as &$group ) { if ( $group['heading'] == BOX_HEADING_TOOLS ) { $group['apps'][] = array('code' => 'popup_manager.php', 'title' => MODULES_ADMIN_MENU_TOOLS_POPUP_MANAGER, 'link' => tep_href_link('popup_manager.php')); break; } }
  17. Like
    De Dokta got a reaction from Tsimi in Master Products - MS2   
    @@Tsimi
     
    Hi Lambros
     
    Yes, you are right - apart from the conversion in BS, there is no big difference to standard Osc. The only (for me) something difficult enhancement was the conversion of the Ajax price update contrib, so that also prices of slaves are automatically updated.when the customer selects options.
    And yes, in that form it is commercial. But if I find the time, I will build it up again into an unmodified BS shop - without the gimmicks - and upload to the addon area. :D But for that I need to familiarize myself with the gold version.
     
    J.J.
  18. Like
    De Dokta reacted to ArtcoInc in Invoice Editor 1.0   
    It has been my experience that the PDF invoices are saved, as per the Dr's instructions above. But, the HTML invoices are not saved. Instead, they are created dynamically each time they are accessed.
     
    Malcolm
     
  19. Like
    De Dokta got a reaction from GLWalker in Shipping Quote in Cart 2.3.3.4 - Support Thread   
    Hi
     
    I couldn't stop thinking about this issue. I love Lambros' idea with the shipping-modal, but without a correct calculation of the tax it is of no use for me. So, I've tried myself to find a solution. And with some copy'n paste :- and some ajax code I finally got one.

    Installation is simple:

    shopping_cart.php:
    after:   <div class="buttonSet">
            <span class="buttonAction">
    add :
        <button type="button" class="btn btn-primary" data-toggle="modal" data-target="#quotesModal"><?php echo GET_QUOTES; ?></button>

    before: require(DIR_WS_INCLUDES . 'template_bottom.php');
    add: include(DIR_WS_MODULES . 'shipping_in_cart.php');

    includes/languages/your_language(s)/shopping_cart.php insert:
    german:
    define('GET_QUOTES', 'Versandkosten-Rechner');
    define('GET_QUOTES_TITLE', 'Versandkosten-Rechner');
    define('TEXT_DELIVERY_STATE', 'Bestimmungsland: ');
    define('TEXT_DELIVERY_TRANSPORT', 'Versandart: ');
    define('TEXT_FREE_SHIPPING', 'Versand kostenlos');

    english:
    define('GET_QUOTES', 'Shipping Calculator');
    define('GET_QUOTES_TITLE', 'Shipping Calculator');
    define('TEXT_DELIVERY_STATE', 'Destination Country: ');
    define('TEXT_DELIVERY_TRANSPORT', 'Shipping Method: ');
    define('TEXT_FREE_SHIPPING', 'Shipping free');
     
    get_shipping_quotes.php
    shipping_in_cart.php
     
    Copy the file shipping_in_cart.php into the folder catalog/includes/modules
    Copy the file get_shipping_quotes.php into the catalog folder

    I beg for leniency, that the code is partially still somewhat sloppy.
    What's still missing is a routine that automatically selects the country of logged-in customers. Currently, always the store country is chosen on the first call. I guess it's no big deal!
     
    Demo here
     
    Thoughts?
     
    J.J.
  20. Like
    De Dokta got a reaction from Tsimi in Shipping Quote in Cart 2.3.3.4 - Support Thread   
    Hi
     
    I couldn't stop thinking about this issue. I love Lambros' idea with the shipping-modal, but without a correct calculation of the tax it is of no use for me. So, I've tried myself to find a solution. And with some copy'n paste :- and some ajax code I finally got one.

    Installation is simple:

    shopping_cart.php:
    after:   <div class="buttonSet">
            <span class="buttonAction">
    add :
        <button type="button" class="btn btn-primary" data-toggle="modal" data-target="#quotesModal"><?php echo GET_QUOTES; ?></button>

    before: require(DIR_WS_INCLUDES . 'template_bottom.php');
    add: include(DIR_WS_MODULES . 'shipping_in_cart.php');

    includes/languages/your_language(s)/shopping_cart.php insert:
    german:
    define('GET_QUOTES', 'Versandkosten-Rechner');
    define('GET_QUOTES_TITLE', 'Versandkosten-Rechner');
    define('TEXT_DELIVERY_STATE', 'Bestimmungsland: ');
    define('TEXT_DELIVERY_TRANSPORT', 'Versandart: ');
    define('TEXT_FREE_SHIPPING', 'Versand kostenlos');

    english:
    define('GET_QUOTES', 'Shipping Calculator');
    define('GET_QUOTES_TITLE', 'Shipping Calculator');
    define('TEXT_DELIVERY_STATE', 'Destination Country: ');
    define('TEXT_DELIVERY_TRANSPORT', 'Shipping Method: ');
    define('TEXT_FREE_SHIPPING', 'Shipping free');
     
    get_shipping_quotes.php
    shipping_in_cart.php
     
    Copy the file shipping_in_cart.php into the folder catalog/includes/modules
    Copy the file get_shipping_quotes.php into the catalog folder

    I beg for leniency, that the code is partially still somewhat sloppy.
    What's still missing is a routine that automatically selects the country of logged-in customers. Currently, always the store country is chosen on the first call. I guess it's no big deal!
     
    Demo here
     
    Thoughts?
     
    J.J.
  21. Like
    De Dokta got a reaction from ArtcoInc in Invoice Editor 1.0   
    @@ArtcoInc
     
    Do you have more than 999999 invoices? :P Or do you expect any time soon to exceed this limit? Then you may change the num_invoice field from int(6) to int(7), 8, 10, 100 or whatever you want........
     
    "%02u" adds a leading zero for single-digit numbers. I just think it looks better. :-
     
    The German laws do not say that I must start the counting of invoices each year with 1 - they only say that every invoice number must be unique. But since I built the invoice editor for our shop and I think it is clear when I start every year again with the invoice number 1, I just decided to chose this way. Our invoice numbers consist of a prefix, the counter, the current month and the current year e.g. VS25/022014. In this way, I can assign each invoice at a glance a month and year! The mentioned invoice number for example tells me that it was the 25. invoice of the year 2014 and was created in February. And the prefix tells me that it was a sale in our online shop. -_-
     
    J.J.
  22. Like
    De Dokta reacted to Jack_mcs in [CONTRIBUTION] Ultimate SEO URLs v2.1 - by Chemo   
    That function hasn't been used since before version 2.2d-8. The last version I uploaded was 2.2d-13. So if your version has ereg in it, you've got more problems than that and you should upgrade to the latest version.
  23. Like
    De Dokta reacted to Tsimi in Shipping Quote in Cart 2.3.3.4 - Support Thread   
    Bootstrap Modal Version
     
     
     
    Package includes:
    2x new files
    1x install.txt
    1x screenshot
     
    This does the same thing as the original add-on but instead of being embedded into the shopping cart page this version shows a modal. (screenshot included)
    This version works only with osCommerce Bootstrap version (community build)!
  24. Like
    De Dokta got a reaction from ArtcoInc in Automatic Supplier Order   
    Hi,
     
    I don't know an addon which does this. But it's no big thing to add another tep_mail to the checkout_process.php (where the mail to your customer is generated) to send an order to your supplier. Collect the data that your supplier needs to fulfill your order, put them into the tep_mail string and then your supplier automatically gets an order whenever a customer orders something in your store.
    That's quite simple if you have only one supplier - with several suppliers it would be a little bit more complicated, but not impossible.
     
    J.J.
  25. Like
    De Dokta got a reaction from joli1811 in I want to skip "What's In Your Cart"   
    Hi,
     
    you can deactivate the redirect to the shopping cart in admin => configuration => my store => Display Cart After Adding Product = false.
     
    Or if you want to redirect your customer for example to the checkout_shipping immediatly after he clicked the buy button:
    Open includes/application_top.php, search for:   $goto =  FILENAME_SHOPPING_CART; and change it to:  $goto =  FILENAME_CHECKOUT_SHIPPING;
     
    J.J.


     
×
×
  • Create New...