Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Search the Community

Showing results for tags 'module'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • News and Announcements
    • News and Announcements
  • osCommerce v4.x
    • General Support
    • Migration from old osCommerce
    • Design and Templates
    • Apps / Add-ons
    • Translations
    • API and import/export
    • Marketplace integration
    • Manuals and How-to
    • Blog's discussion
  • osCommerce Online Merchant v2.x
    • General Support
    • osCommerce Online Merchant Community Bootstrap Edition
    • Add-Ons
  • Development
  • General
    • General Discussions
    • Live Shop Reviews
    • Security
    • Commercial Support Inquiries
    • Developer Feedback

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Real Name


Location


Interests


Website

Found 22 results

  1. Friends, I would like to know if someone can help me, I have Oscommerce installed on the following domain https://shopdepesca.com.ar/tienda/ Lately I have not made any changes. This morning if I have made any modifications in the store when I try to register an order it does not show me the payment options. Does anyone know what could be wrong? I would be grateful if you could help me solve the problem.
  2. It is possible to configure, enable and disable multiple modules that together constitute Orders in osCommerce v4. There exists a special Order Structure menu under Modules, which to a degree extends what used to be Order Totals in previous versions of osCommerce. As with all the modules, we have made it possible for osCommerce developers to create an add their own Order structure modules. Currently existing modules are as follows: Their position (which can be re-arranged by using the drag-and-drop feature) defines how the system uses them for every order. Each order total module has a number of settings, including restrictions and positioning: It is possible to set, for example, the shipping fee, to include tax on the checkout pages, but exclude tax on the invoices.
  3. LokiSmith

    Payment Mods

    Hi folks. Years ago, I ran a small computer shop and loved OSC so much, I made an in house POS to work with it. That was over 10 years ago. I've been out of the business for a long time and am relearning everything. The payment system is very different. The default installation for the standard package and newest version (not phoenix) is what I'm using and comes with many PayPal mods. I am very lost to what one to use. I have a personal PayPal but I can't figure out how to plug it in. Any and all help is welcome.
  4. Manufacturer's Name With URL Link - Content Module - For Product Info Page 2.3.4.1 CE Add-On Bootstrap Community Edition This is a support forum for problems and questions related to this content module add-on for 2.3.4.1 CE Add-On Bootstrap Community Edition This add-on can be downloaded here: https://apps.oscommerce.com/LMcWt&manufacturer-s-name-with-url-link-bs
  5. Hello everybody, I wonder whether there is a live module (best for 234 bs edge) in existence (even for purchase) which enables to create DHL- shipping labels right out of the admin-area and then provide tracking possiblilites for the user ...? If not, how do you effectively manage to send your packages with DHL / oscommerce? Have a nice day cupidare
  6. Now I need to create my own payment module for linking osCommerce with our own payment server. Mostly it's ready, but there is a problem. How server must return result of payment? Is there documentation on the development of payment modules? Thanks.
  7. Luftwalk

    PayUnity module

    Hi, I need to create a PayUnity payment module for my store. I was wondering if anyone has ever made one or if there already exists one? Couldn't find it anywhere though. Any pointers would be helpful. Thank you.
  8. Hello, I just installed the responsive template (works fantastic) together with the new OSC version Could somebody please help me modify the COD payment module so that it adds a 6.50 EUR fee for orders paid via COD? In which function would I add my code to add a fee? Here is the code of cod.php for reference: <?php /* $Id$ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 2014 osCommerce Released under the GNU General Public License */ class cod { var $code, $title, $description, $enabled; function cod() { global $order; $this->code = 'cod'; $this->title = MODULE_PAYMENT_COD_TEXT_TITLE; $this->description = MODULE_PAYMENT_COD_TEXT_DESCRIPTION; $this->sort_order = defined('MODULE_PAYMENT_COD_SORT_ORDER') ? MODULE_PAYMENT_COD_SORT_ORDER : 0; $this->enabled = defined('MODULE_PAYMENT_COD_STATUS') && (MODULE_PAYMENT_COD_STATUS == 'True') ? true : false; $this->order_status = defined('MODULE_PAYMENT_COD_ORDER_STATUS_ID') && ((int)MODULE_PAYMENT_COD_ORDER_STATUS_ID > 0) ? (int)MODULE_PAYMENT_COD_ORDER_STATUS_ID : 0; if ( $this->enabled === true ) { if ( isset($order) && is_object($order) ) { $this->update_status(); } } } function update_status() { global $order; if ( ($this->enabled == true) && ((int)MODULE_PAYMENT_COD_ZONE > 0) ) { $check_flag = false; $check_query = tep_db_query("select zone_id from " . TABLE_ZONES_TO_GEO_ZONES . " where geo_zone_id = '" . MODULE_PAYMENT_COD_ZONE . "' and zone_country_id = '" . $order->delivery['country']['id'] . "' order by zone_id"); while ($check = tep_db_fetch_array($check_query)) { if ($check['zone_id'] < 1) { $check_flag = true; break; } elseif ($check['zone_id'] == $order->delivery['zone_id']) { $check_flag = true; break; } } if ($check_flag == false) { $this->enabled = false; } } // disable the module if the order only contains virtual products if ($this->enabled == true) { if ($order->content_type == 'virtual') { $this->enabled = false; } } } function javascript_validation() { return false; } function selection() { return array('id' => $this->code, 'module' => $this->title); } function pre_confirmation_check() { return false; } function confirmation() { return false; } function process_button() { return false; } function before_process() { return false; } function after_process() { return false; } function get_error() { return false; } function check() { if (!isset($this->_check)) { $check_query = tep_db_query("select configuration_value from " . TABLE_CONFIGURATION . " where configuration_key = 'MODULE_PAYMENT_COD_STATUS'"); $this->_check = tep_db_num_rows($check_query); } return $this->_check; } function install() { tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Enable Cash On Delivery Module', 'MODULE_PAYMENT_COD_STATUS', 'True', 'Do you want to accept Cash On Delevery payments?', '6', '1', 'tep_cfg_select_option(array(\'True\', \'False\'), ', now())"); tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function, date_added) values ('Payment Zone', 'MODULE_PAYMENT_COD_ZONE', '0', 'If a zone is selected, only enable this payment method for that zone.', '6', '2', 'tep_get_zone_class_title', 'tep_cfg_pull_down_zone_classes(', now())"); tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Sort order of display.', 'MODULE_PAYMENT_COD_SORT_ORDER', '0', 'Sort order of display. Lowest is displayed first.', '6', '0', now())"); tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, use_function, date_added) values ('Set Order Status', 'MODULE_PAYMENT_COD_ORDER_STATUS_ID', '0', 'Set the status of orders made with this payment module to this value', '6', '0', 'tep_cfg_pull_down_order_statuses(', 'tep_get_order_status_name', now())"); } function remove() { tep_db_query("delete from " . TABLE_CONFIGURATION . " where configuration_key in ('" . implode("', '", $this->keys()) . "')"); } function keys() { return array('MODULE_PAYMENT_COD_STATUS', 'MODULE_PAYMENT_COD_ZONE', 'MODULE_PAYMENT_COD_ORDER_STATUS_ID', 'MODULE_PAYMENT_COD_SORT_ORDER'); } } ?> kind regards, Volker
  9. If we want to have content easy to modify on pages or page with option to turning off, we can use Content Module system for it and call only One of the box which we want and print it in our Template where we want. We can do through this steps: Create new directory: includes/modules/content/everywhere/ In template_top.php Before or just after: Add: if ($oscTemplate->hasContent('everywhere')) { $oscTemplate->getContent('everywhere'); } In osc_template.php Add (before getContent method) function getOneContent($title){ return $this->_content['everywhere'][$title]; } Modify: function addContent($content, $group, $contentname = false) { if($contentname){ $this->_content[$group][$contentname] = $content; }else{ $this->_content[$group][] = $content; } } And when you creating new module content in execute funtion do it like that: $oscTemplate->addContent($template, $this->group, $this->title); After all of this it's possible to print content where we want like that: echo $oscTemplate->getOneContent('Custom info');
  10. Hello all, I am huge user of osCommerce and myself have added a few smaller contributions to the Add-ons section and they seem to have gone down quite well. I am now looking at my next project, and something this time a little bigger...integration into the online accounting system Xero. For myself, processing invoices and adding notes in osCommerce is straight forward, but at the time, or the end of the week, recreating the customers and the invoices in my accounting system is a tedious chore, and I am sure my customers don't appreciate having to wait to receive a tax invoice. At the moment, said integration would be manual, given the limitations of the their public API (a Partner API is required to remove many of the limitations), but this would allow: an admin to create an invoice from the osCommerce order page for a specific order. Order would appear as a multi-line invoice, under the correct accounts, with shipping etc. included in Xero, stored as Draft, Submitted or Authorised. Upon creation in Xero, the system will automatically download and store a .pdf copy of the invoice in the store against the order. This would let and admin view again later, helpful for returns/warranty claims. The customer can also have access to the invoice from their account history, so storing it in the future if they need it for tax purposes, or warranty claims etc. At this stage it is just have an outline of a road-map, and an idea of what I would like to do, and not just limited to invoices, but adding customers, and recording payments, but before going any further I am keen to know if anyone else would be interested in using this? Specifically I am interested in numbers of users, expected/preferred features, and amount you would pay for said system, whether you would expect it for free or would pay a monthly license for support and updates, or would pay X amount to have it. Your comments are appreciated and I will endeavour to take them on-board. Thanks, Sean
  11. SMS module compatible with osCommerce 2.3.x.x released! smsCommerce module allows you to send SMS (text messages) to customers or administrators during various events in your osCommerce store. Improve customer service and notify customers via SMS to establish greater levels of trust. Deepen the relationship with your customers and build a stronger customer loyalty with the help of SMS marketing. Loyal customers tend to buy more & more regularly. And they will frequently recommend your e-shop to others. More customers = higher sales...! No integration costs, no monthly fee, no minimum spend is required. You pay only for outgoing SMSs. With smsCommerce module you can send SMSs worldwide. Our prices are among the lowest in the market. Why use SMS for eCommerce? Notification via SMS ensures efficient transmission of information and your customers will be informed more quickly, especially those who do not have permanent access to the internet and e-mails. SMS are always delivered to its addressee, opposed to an e-mail which can be considered as SPAM Some customers receive dozens of e-mails to their mailbox every day and can therefore easily miss e-mail from you SMS are always read! MODULE FEATURES: Send text messages to customers or administrators during various events in your osCommerce store. System automatically recognizes your custom order statuses! Activation/deactivation of all events independently on each other. Customization of SMS text for all events, possibility to use variable fields. For example, creating an account the following can be used: {customer_id}, {customer_email}, {customer_lastname}, {customer_firstname}, {shop_domain}, {shop_name}, {shop_email} and {shop_phone} Multi-lingual versions of SMS text (If you ship your goods worldwide, you can notify your customers in each country in their national language) Multiple admin support (useful for large online stores with more administrators, who have separate responsibilities). Possibility to select one or more administrators for each event. Multiple sender types (Text sender ID, Own mobile number or System number). Possibility to select different sender type for each country (if available). Customization of a Text sender ID for each country (11 characters max, which appear in place of the phone number). Customization of an Own mobile number for each country. Mobile phone number validation is required. SMS marketing with advanced filter options. Sending bulk text messages, similar to a newsletter, enables effective targeting to desired customer groups. This gives you a great tool for running an advertisement campaign, announcing the release of a new product, distributing discount coupon codes etc. Sending bulk SMS from a CSV file. SMS opt-out possibility for a customer in the shopping basket. Admin has an option to set whether SMS opt-out will be displayed to a customer in the shopping basket. SMS charging. Admin has an option to define the price for SMS sending. Price is displayed to a customer in the shopping basket. SMS history with filters (event, date, recipient, content, delivery statuses, SMS price in credits, total number of SMSs, Sender ID). History of SMS answers received from customers. Statistics with filtering options. Simulation mode. Allows to test SMS sending during various events in osCommerce without actually sending them to recipients. SMS are displayed in SMS history with a special status. Unicode characters are supported (Unicode allows you to enter characters in all fonts and various symbols simultaneously. Unicode is used for Chinese, Arabic, Greek, Hebrew, Korean, Cyrillic, etc. or diacritic in the text of your SMS message). Automatic conversion of customer´s mobile number to an international format. SMS delivery report to an e-mail address. Credit account management directly from the module (credit account state, low credit alert setting, credit purchase). API for connecting an external application to smsCommerce module (see file api.php in module folder). We have added also three examples of testing scripts (see files api_test.php; api_test2.php; api_test3.php). STOP SMS (contact us for details). (see www.sms-commerce.net/features.html) You don´t need to register on any portal or website. All administration is in the module! SMS module is translated into the following languages: English Czech Slovak Italian Polish Russian Serbian Spanish German French Portuguese Turkish Greek MODULE WEB: www.sms-commerce.net MODULE DEMO: www.sms-commerce.net/demo.html MODULE MANUAL: www.sms-commerce.net/manual.html SMS PRICELIST: www.sms-commerce.net/pricelist.html DOWNLOAD: www.sms-commerce.net/download.html COMMUNITY ADD-ONS: http://addons.oscommerce.com/info/9099 We are looking forward to your comments regarding this module and proposals for improvements! If you experience any problem with the module don´t hesitate to write it here. We will help you as soon as possible.
  12. SMS module compatible with osCommerce 2.3.x.x released! smsCommerce module allows you to send SMS (text messages) to customers or administrators during various events in your osCommerce store. Improve customer service and notify customers via SMS to establish greater levels of trust. Deepen the relationship with your customers and build a stronger customer loyalty with the help of SMS marketing. Loyal customers tend to buy more & more regularly. And they will frequently recommend your e-shop to others. More customers = higher sales...! No integration costs, no monthly fee, no minimum spend is required. You pay only for outgoing SMSs. With smsCommerce module you can send SMSs worldwide. Our prices are among the lowest in the market. Why use SMS for eCommerce? Notification via SMS ensures efficient transmission of information and your customers will be informed more quickly, especially those who do not have permanent access to the internet and e-mails. SMS are always delivered to its addressee, opposed to an e-mail which can be considered as SPAM Some customers receive dozens of e-mails to their mailbox every day and can therefore easily miss e-mail from you SMS are always read! MODULE FEATURES:Send text messages to customers or administrators during various events in your osCommerce store. System automatically recognizes your custom order statuses! Activation/deactivation of all events independently on each other. Customization of SMS text for all events, possibility to use variable fields. For example, creating an account the following can be used: {customer_id}, {customer_email}, {customer_lastname}, {customer_firstname}, {shop_domain}, {shop_name}, {shop_email} and {shop_phone} Multi-lingual versions of SMS text (If you ship your goods worldwide, you can notify your customers in each country in their national language) Multiple admin support (useful for large online stores with more administrators, who have separate responsibilities). Possibility to select one or more administrators for each event. Multiple sender types (Text sender ID, Own mobile number or System number). Possibility to select different sender type for each country (if available). Customization of a Text sender ID for each country (11 characters max, which appear in place of the phone number). Customization of an Own mobile number for each country. Mobile phone number validation is required. SMS marketing with advanced filter options. Sending bulk text messages, similar to a newsletter, enables effective targeting to desired customer groups. This gives you a great tool for running an advertisement campaign, announcing the release of a new product, distributing discount coupon codes etc. Sending bulk SMS from a CSV file. SMS opt-out possibility for a customer in the shopping basket. Admin has an option to set whether SMS opt-out will be displayed to a customer in the shopping basket. SMS charging. Admin has an option to define the price for SMS sending. Price is displayed to a customer in the shopping basket. SMS history with filters (event, date, recipient, content, delivery statuses, SMS price in credits, total number of SMSs, Sender ID). History of SMS answers received from customers. Statistics with filtering options. Simulation mode. Allows to test SMS sending during various events in osCommerce without actually sending them to recipients. SMS are displayed in SMS history with a special status. Unicode characters are supported (Unicode allows you to enter characters in all fonts and various symbols simultaneously. Unicode is used for Chinese, Arabic, Greek, Hebrew, Korean, Cyrillic, etc. or diacritic in the text of your SMS message). Automatic conversion of customer´s mobile number to an international format. SMS delivery report to an e-mail address. Credit account management directly from the module (credit account state, low credit alert setting, credit purchase). API for connecting an external application to smsCommerce module (see file api.php in module folder). We have added also three examples of testing scripts (see files api_test.php; api_test2.php; api_test3.php). STOP SMS (contact us for details). (see www.sms-commerce.net/features.html) You don´t need to register on any portal or website. All administration is in the module! SMS module is translated into the following languages: English Czech Slovak Italian Polish Russian Serbian Spanish German French Portuguese Turkish Greek MODULE WEB: www.sms-commerce.net MODULE DEMO: www.sms-commerce.net/demo.html MODULE MANUAL: www.sms-commerce.net/manual.html SMS PRICELIST: www.sms-commerce.net/pricelist.html DOWNLOAD: www.sms-commerce.net/download.html COMMUNITY ADD-ONS: http://addons.oscommerce.com/info/9099 We are looking forward to your comments regarding this module and proposals for improvements!
  13. Hi all, I dont want to be wiseacre disappear but have found a lot of problem with reviews system in oscommerce. So i try to mention personal opinion about it. My critics are the folllowing.. For review need prehistory of products. Probably the reviewer has product experriencies and can say something about it. osCommerce shop follows orders? No. osCommerce use the login force to make review which is a very bad behaviour with a press button. There would be better inform reviews after login as neither force login write reviews. Could customer found easy the reviews system to take a review? Hm.. Which customers write review? Basicly nobody unless somebody ask them. Do you remember to write a review yourself after 3 weeks of order? Could customers manage the self reviews in account? No. Are there any contribution for reviews? Yes but I dont find effective solution for it. I am not the supporter to write reviews as admin. I dont like to implement outside ajax applications to give out my shop commercial data. What would be better? First of all oscommerce has another problem. When I tried to rewrite of reviews system just realised that attributes system are not followed in reviews.. When I listed the ordered products by customers the attributes take a limit of options. How could customers reviews reflected to attributes? This main conflict founded between attributes and stocks too. V3 can handle this conflict with parent-child connections but we are producing in v2 at this moment. The best way would be to prevent option's conflict when connect attributes to reviewed product. How could we integrate the previous listed requirements? As @@burt mentioned in oscommerce appears to be totaly outdated topic I have to aggree with him. Previously I take a reflection about his post but I re-evaluated my opinion now. I have started to work out an alpha review module system for oscommerce. under test mode - ask pseudo review form in email after specified order status and date limit - cron management - alternative html reviews page for emails on http server - display statistical page from emails under construction for v2.3.4 - implement review modules in customer account focused on ordered products - implement review box for product_info page with microformats - change login logic to inform customers about reviews - enable reviews vote for visitors Known other conflicts: order language is not figured out in the core. To see in my github repo Estimated full reviews modul will be work out for v2.4 system If you have any question or remark it is free to write here.
  14. Hey guys and gals, Need some help on finding a module that allows you to change the price on categories instead of having to change on each item. If there is a module like that out there can someone please let me know. Has to be pretty easy to install as I don't have a very good knowledge of installs on OsCommerce. Also were do I go to ask people to install specific modules on my website? Thanks in advance for your help.
  15. Hi, 960gs Template system configuration addon finished. What this addon does? Visualise Grids! Controll 960 Grid CSS System Manage the grids Display grid columns in background Allow 24, 16 and 12 columns variations You can select from 23 column layouts. Regards, Gergely
  16. Hey everyone, looking for a payment module for First Data Global Gateway E4? I wrote the following module based on their latest Version 12 API, it is for OsCommerce 2.3 but could easily be adjusted to work in 2.2: First Data Global Gateway e4 AIM In their documentation, First Data put out a hack for the Authorize.net SIM module, which works and is all well and fine for those that do not mind their customers leaving the site, but not so great if you want to keep your customer on your site. There was no way I was going to take customers away from my site, especially with some hacked up module, but no one had written a module with advanced integration for OsCommerce yet...well not until now! This new module keeps everything on your site, I have tested it up down and sideways and cannot find any bugs. The instructions are very in depth so setup will be a breeze. I know there were quite a few people looking for this, hope it helps the community as much as the community has helped me. Problems? Message me or post here! :D
  17. Hello. I'm trying to get the built-in (non-payment gateway) "Credit Card" module to work with a new installation of OSCommerce. I was told that the module will work unchanged with the new installation. I copied over cc.php into my /catalog/includes/modules/payment/ folder, and the cc.php language file into the /catalog/includes/languages/modules/payment folder. The module shows up in my administration - modules - boxes - install page as "Credit Card." When I click the "Edit" button on the settings, it throws me back to administration - modules - boxes and the module is not enabled. I'm assuming something goes wrong at this point. Am I missing any steps, or is there anything further I can do to circumvent the problem? I'd appreciate any and all help. Dan
  18. Announcing the release of our new, customizable layaway payment plugin for osCommerce users. Merchants will now be able to expand their suite of payment options to include layaway powered by eLayaway, the Internet’s largest third-party layaway payment technology. The eLayaway Payment Module simplifies the administration of a retailers’ layaway program by: Immediately notifying merchants of a new layaway order Scheduling payments to be automatically debited from the customer’s checking account Providing real-time monitoring of each layaway plan through eLayaway’s Merchant Control Center Alerting the merchant of items or services that are ready to be fulfilled upon receipt of final payment The eLayaway Payment Module is compatible with version 2.3.x and can be downloaded for free by visiting the community add-on center. An eLayaway Merchant Account is required to use the module.
  19. Hi all, Is there any possible way to get Domestic and International Shipping methods for First Class, Priority Mail, and Express Mail without the use of any USPS shipping module? I would like to have those options available to customers without having to connect to a USPS online tools/service. I have done a little bit of research and it seems that using the USPS Methods module is the only way to get First Class, Priority Mail, and Express Mail shipping methods for Domestic and International Shipping. Is there another way, perhaps different modules, to achieve this? I am running osCommerce 2.3.1.
  20. I am looking to integrate the Paymate Express Payment Module into my OSCommerce Website. I have researched high and low, but just cannot seem to find anything that will help me get started. Does anyone know where I can download the latest Paymate Express Payment Module for OSCommerce, and also how to integrate that download into the OS Commerce Admin area...the last I saw was from 2007! Thank you so much as I have become very frustrated in my travels and need some fresh intellect to bail my frazzled wits out!
  21. Hi, Has anyone found a Purchase Order payment module/add-on for OSCommerce 2.3.1? I've upgraded a client's site and their module was ancient and won't work with 2.3.1. Or maybe there are instructions somewhere on how to covert one of the existing modules to work with 2.3.1? Thanks!
  22. I would like to know whether an add-on or module exists that would allow the user to select one of two available options to receive their product(s). For example, customer orders pastries and at check-out selects whether he/she wants to pick-up the pastries (which is free) or have the pastries delivered (which is $10 USD). Best, Christopher
×
×
  • Create New...