Products     Magento Extension     PCI-Shopping-Carts     Templates       CRELoaded     WordPress Modules     osCommerce Modules       osCommerce Addons       osCommerce Features       osCommerce Management       Payment Modules     CRELoaded Modules       CRE Loaded Addons       CRE Loaded Features       CRE Loaded Management       Payment Modules       CRELoaded Services
Free Stuff
Customization
Templates
Compare Products
You have no items to compare.
Affiliate Info
Affiliate Program FAQ
Affiliate Log In
Recent Orders
Hot Keywords: Order Notification, Order Search, Coupon, Flash Board, Compare, Floating Message, Tracking, Moneris, RSS, Visitor Filter
Contributions
The following osCommerce contributions are free Opensource code originated from official osCommerce website and provided for your reference only, you may download the original contribution file(s) and install it on your own; or you may request a Paid Installation Service from Agents Of Power; Agents Of Power does the "AS IS" installation on your website, we do not guarantee it will work properly on your website. Extra Paid service is available for repairing the problem from the original contribution or from your website.
Filter: Search:
Displaying 514 to 522 (of 1445 contributions) Result Pages: [<< Prev]  ... 51  52  53  54  55  56  57  58  59  60 ...  [Next >>] 
571. ot_commission 1.0 Request Installation with Paid service
Turkish language added for turkish users. Please backup you files. This contrib is not tested only translated to Turkish ( added turkish language only)
all of your own risk. Please bacup your files before install this contrip to your oscommerce

Türk kullan&#305;c&#305;lar için Türkçe dil dosyas&#305; eklenmi&#351;tir. Lütfn eklentiyi kurmadan önce lütfen sitenizin yede&#287;ini al&#305;n&#305;z. Olu&#351;abilecek hatalardan dolay&#305; sorumluluk kabul edilmeyecektir. eklenti orijinaline sa&#287;d&#305;k kal&#305;narak sadece Türkçe dil dosyas&#305; eklenmi&#351;tir. Faydal&#305; olmas&#305; dileklerimle
   Posted on: 07/13/2009     See contribution details

572. PayEx Online Payment Request Installation with Paid service
The PayEx payment system complies with all security requirements, for both merchants and users, with regards to electronic payment. Read more at http://www.payex.com.
This module's version number is 1.02. With this module you can let your customers pay with almost all of PayEx' payment methods. The module redirects the customer to the PayEx Online Payment portal or it will open the portal in a pop-up window. This module supports Norwegian, Danish, Swedish and English languages, and NOK, DKK, SEK, and EUR currencies. Credit card (Visa, Mastercard), Invoice, PayEx Account and Direct Bank Debit are some of the payment methods the payment portal supports in Norway, Denmark and Sweden. Please contact PayEx for more information on this. There is more information within the module file.
   Posted on: 07/13/2009     See contribution details

573. WorldNet TPS XML Payment Module V1.1 Request Installation with Paid service
This module provides access to the WorldNet TPS XML gateway for processing credit card payments without leaving your site. This solution is fully integrated into osCommerce.

To use this, you must have an SSL certificate for your site and an account with WorldNet TPS.
   Posted on: 07/14/2009     See contribution details

574. PayPal Express Checkout Module Request Installation with Paid service
- Fixed stock decreasing and duplicate product line in order
- Added security check when a duplicate IPN is received for a COMPLETED transaction
- Added delivery address update from the PayPal API response for a ECS customer
- Fixed tax calculation error and discrepancies between order total and values passed to PayPal
- Uses language file to name payment method in orders correctly now
- Avoids rounding errors on values passed to PayPal
- Added state set to return module to default status for repeat purchases on same session id
- Fixed the fix to detect &, &amp correctly
- Tax is now passed as a separate value to PayPal
- Added instructions to the install file to make the Express Checkout the only payment option when used as a short cut or skip page altogether.
- Fixes PayPal error "Shipping Address State Empty"
- Change in [catalog/ppeb.php], line 942)
- Fixed Currency bug
- Fixed works in sandbox and in live server environment (for real...)
   Posted on: 09/08/2008     See contribution details

575. RSS to NEWSDESK Request Installation with Paid service
English__________
Improved version of RSS to Newsdesk


Espanol_________
Versión mejorada del RSS to Newsdesk
FULL PACKAGE.

Added language english to the installation.txt
   Posted on: 09/20/2008     See contribution details

576. Customer List Improved Request Installation with Paid service
this is not a complete file.

add customer addresses from the admin side

in admin/customers.php

ADD

case 'addaddress':


$sql_data_array = array('customers_id' => $HTTP_GET_VARS['cID']);
tep_db_perform(TABLE_ADDRESS_BOOK, $sql_data_array);

$get_address_id = tep_db_query("SELECT address_book_id FROM address_book WHERE customers_id = '" . (int)$HTTP_GET_VARS['cID'] . "' ORDER BY address_book_id DESC LIMIT 1");

$address_id = tep_db_fetch_array($get_address_id);
$new_address_id = $address_id['address_book_id'];

tep_redirect(tep_href_link(FILENAME_CUSTOMERS, tep_get_all_get_params(array('cID', 'action','add_id')) . 'cID=' . $HTTP_GET_VARS['cID'] . '&action=edit&add_id=' . $new_address_id));

break;


BEFORE LINE

case 'update':

$customers_id = tep_db_prepare_input($HTTP_GET_VARS['cID']);

$customers_firstname = tep_db_prepare_input($HTTP_POST_VARS['customers_firstname']);


CHANGE LINE

<td class="formAreaTitle"><?php echo CATEGORY_ADDRESS; ?></td>

TO

<td class="formAreaTitle"><?php echo '' . CATEGORY_ADDRESS . '&nbsp;&nbsp;&nbsp;<a href="' . tep_href_link(FILENAME_CUSTOMERS, tep_get_all_get_params(array('cID', 'action')) . 'cID=' . $cInfo->customers_id . '&amp;action=addaddress') . '">Add an address</a>'; ?></td>
this is not a complete file.

to change customer default address from the admin side

in admin/customers.php

ADD


if(isset($HTTP_POST_VARS['setdefault'])) $sql_data_array['customers_default_address_id'] = $default_address_id;

ABOVE THE LINE

if (ACCOUNT_GENDER == 'true') $sql_data_array['customers_gender'] = $customers_gender;




AND ADD

<tr>

<td class="main" align="right"><input type="checkbox" name="setdefault" value="set"></td>

<td class="main">Set as a default address</td>

</tr>


BELOW THE LINE

<tr>

<td class="main"><?php echo ENTRY_COUNTRY; ?></td>

<td class="main"><?php

if ($error == true) {

if ($entry_country_error == true) {

echo tep_draw_pull_down_menu('entry_country_id', tep_get_countries(), $cInfo->entry_country_id) . '&nbsp;' .

ENTRY_COUNTRY_ERROR;

} else {

echo tep_get_country_name($cInfo->entry_country_id) . tep_draw_hidden_field('entry_country_id');

}

} else {

echo tep_draw_pull_down_menu('entry_country_id', tep_get_countries(), $cInfo->entry_country_id);

}

?></td>

</tr>
v1.6 18 jan 2009
call me old fashion but i missed the buttons next to the customer list
( the truth is the icons in the beginning of the list are very small on a 30inch widescreeen)

there are back in place if you turn it on in configuration of your store

use 7zip to unzip this file
FULL PACKAGE!

Now included languages:
danish
dutch
english
spanish
french
italian - italiano
Fixed minor bug that broke sorting when register_globals=off

Support at: http://forums.oscommerce.com/index.php?showtopic=321793

Full version upload
Customers List Improved v1.5.2
Based on v1.5.1 with the following changes:
Rebuilt tables for correct structure
Many changes for HTML DTD conformance
Date of birth column in list is now displayed only if store configuration uses it
Regrouped contents of edit page for consistency
Company name (if used) is now part of the Address group
Address selector moved inside Address box
Icons for support of other contributions are only displayed if those modules are installed
- Admin Create Account #5388
- Manual Order Maker #4829
- Admin Change Customer Passwords #4469
Added 'Sort by newsletter subscription status' from v1.4.3
Functions tep_address_label() and tep_get_address_format_id do not exist in admin/includes/functions/general.php
so they are conditionally included in this version. (They are from the shop's version of general.php)
Fixed several typographical errors in the English language file
Added French language file (copied from earlier version with my feeble attempts to fill in the missing values.
Corrections are welcomed.)

Support at: http://forums.oscommerce.com/index.php?showtopic=321793

Full package upload
This contribution shows the customer's information in a different and more detailed manner, and has the ability to order the customer's list by different columns.

In this version 1.5.1 the functionality added to use the contributions :
- Admin Change Customer Passwords
- Manual Order Maker
- Account create in admin
- sexy admin
Also added a screenshot of the contribution

Full Package
This contribution shows the customer's information in a different and more detailed manner, and has the hability to order the customer's list by different columns.

In this version 1.5 is is added the functionality to manage all the different addresses from the customer, this is done by adding the code from the "Admin edit any customer address" #6323 contribution.

Full Package

This version is based v1.4_1_3: 2007-06-4 by Qihun
Version française:
Listing clients:
NOMS / PRENOMS / ADRESSE MAIL / NUM TEL / DATE DE CREATION COMPTE CLIENT / DATE DERNIER LOG / NOMBRE DE LOG / ID CLIENTS / NOMBRE DE CRITIQUE /CODE PAYS, VILLE / ACTION=> Editer, commandes, supprimer

Les actions sont géré juste par de petite icones, L'adresse mail est directement cliquable et aussi et surtout on peut classer avec le dernier compte client crée.
Voir le screenshot à l'intérieur.
   Posted on: 09/05/2008     See contribution details

577. Sendestatus by Anja Request Installation with Paid service
Da ich öfters schon nach screenshots gefragt wurde, habe ich hier ein paar hochgeladen
SENDESTATUS by Anja
======================================

Version: 1.0 30.01.2009
Autor: Anja_R, http://www.anjas-hobbylaedchen.de
Lizenz: GNU GENERAL PUBLIC LICENSE, Version 3, 29 June 2007



Diese contribution implementiert die Möglichkeit, zu jeder Bestellung im Admin-Panel eine Tracking-Nummer
(Sendungsnummer), das Logistikunternehmen und das Einlieferungsdatum zu erfassen.

Die Logistikunternehmen, sowie die dazu gehörigen Tracking-Links können im Admin-Panel über eine grafische Ober-
fläche erfasst, gepflegt und erweitert werden.

Die erfassten Informationen werden dem Kunden in der Bestell-Übersicht angezeigt.

Die Sendungsnummer ist dabei verlinkt mit der jeweiligen Auskunftsseite des Logistikunternehmens.
Die dortige Seite wird innerhalb einer thickbox (http://jquery.com/demo/thickbox/) geöffnet.

Die contribution basiert auf "Shipping Status v.1.0 for 2.2ms2" von AlDaffodil und den übrigen Autoren.

Support-Thread: http://forums.oscommerce.de/index.php?showtopic=67693

   Posted on: 01/31/2009     See contribution details

578. small to large iamge Request Installation with Paid service
File will allow the use of a small image for item listing and a large image for the click through product page.
   Posted on: 07/10/2009     See contribution details

579. Mootools Slideshow Request Installation with Paid service
Mootools Slideshow:
_____________________

OVERVIEW
This intro and OSC contribution package is written by me - I found something awesome and I want to share it with the community :-)

However, I take no credit for the actual application which is entirely created by Aeron Glemann - all credit to him.

Furthermore, although I have created an OSC support forum for this contribution (see below) I can only offer very limited support - the best support is available on the Author's site (see below - extensive and excellent support actually!).

I have it installed on an OSC site V RC2.2a with STS template. If you install it anywhere else, you will have to figure that out yourself - but it shouldn't be too hard and there is a lot of support available for this via the Author's site (see below for links to wiki, FAQ, forum etc!)


SUMMARY
Slideshow is a javascript class using Mootools 1.2 to stream and animate the presentation of images on your website. You can use it anywhere you like - the license is entirely Open Source. You may NOT re-sell it. If you like it, make a donation to the author and support the little guy?


This package does not dynamically pull any images from anywhere - but it IS possible to achieve this - and I am hoping others might contribute to the next OSC version (if only instructions) to enable it to do that.

The author's support forum is extensive and there are some examples on there, of how to dynamically pull the data - I just haven't found the need to do that myself - yet.... but it is something I will look into for the next version (unless someone beats me to it :-0



WHAT THIS OSC CONTRIBUTION DOES
- Creates an awesome FREE web2 slideshow box on your front page
- You manually specify the image files to use (currently)
- beautiful, fading image gallery
- controlled by CSS and web2 compliant
- LOTS of variable options / different ways to show stuff
- It's just excellent - which is why it deserves a wider audience.



FEATURES
- Dynamic resizing - Slideshow can accommodate any size presentation.
- Thumbnails - intelligent, auto-scrolling, tracking, etc.
- Full-featured controller - completely style-able with CSS (AND ABILITY TO TURN IT OFF COMPLETELY).
- Animated captions if wanted - plain text or formatted with HTML.
- Fully accessible - Slideshow can be controlled with access keys.
- Automagic slideshows - create slideshows from existing HTML images.
- Varied hyperlinking options - Slideshow allows for mashups with Lightbox, Slimbox, etc.
- CSS slide transitions - designed in stylesheets, not javascript, allow for an infinite combination of

effects (plus support for all Robert Penner (effects) transitions).
- Unobtrusive and degradable - Slideshow even functions with Javascript turned off!


WHAT ELSE
- Several variations to this script are available
- Examples of these are on the author's website



AUTHOR'S WEB SITE DEMOS
- several variation demos available here:
http://www.electricprism.com/aeron/slideshow/example1.html

This package installs example 1 (basic slideshow) as that is all I needed. However, there are lots of variations that are possible if you want to modify the code - go ahead - it's not hard, often you will just need to include a different style sheet (included) and tweak the page code a little. Full instructions, support and examples on this are available on the author's site.


In this distribution, you will find the following files:

slideshow folder containing
css/ - Folder containing stylesheet and background images.
images/ - Folder with example images.
index_EXAMPLE.html - Example script usage.
js/ - Folder with the Slideshow scripts and Mootools 1.2.1.
INSTALLATION.txt - How to install in OSC
LICENCE.TXT - Copy of the MIT license information (from the Author's website)
README.TXT - A copy of this text



SUPPORT
OSC support forum:
http://forums.oscommerce.com/index.php?showtopic=340515


- Official development website.
http://code.google.com/p/slideshow

- Author Site Demos and examples.
http://www.electricprism.com/aeron/slideshow/

- FAQ.
http://code.google.com/p/slideshow/wiki/FAQ

- WIKI Manual.
http://code.google.com/p/slideshow/wiki/Slideshow

- Google Group (excellent help forum but requires google account)
http://groups.google.com/group/mootools-slideshow



INSTALLATION

EASY - 5 minute job!!

Just upload the contents of the slideshow folder and modify your main home page template (STS users)!

NON STS users shold be able to figure out how to change this to suit their site fairly easily!
See the INSTALLATION.TXT file for full details.


Enjoy!!
Sol
July 2009

   Posted on: 07/10/2009     See contribution details
Displaying 514 to 522 (of 1445 contributions) Result Pages: [<< Prev]  ... 51  52  53  54  55  56  57  58  59  60 ...  [Next >>]