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 1117 to 1125 (of 1445 contributions) Result Pages: [<< Prev]  ... 121  122  123  124  125  126  127  128  129  130 ...  [Next >>] 
1241. Rounded-OSC Template Request Installation with Paid service
Stretchable 100% width template with gray blue colors

Demo:http://free-wordpress-themes.info/oscommerce13/

has a series of rounded rectangles on most pages,

some internal pages I didn't add the inner rounded table to, you can add it by including innertableheader.php, innertablefooter.php around where you want it to be
   Posted on: 12/19/2008     See contribution details

1242. Greek credit modules Request Installation with Paid service
osCommerce RC2a compatible credit modules.

Available modules:
Alpha Bank
Emporiki Bank
EFG Eurobank Ergasias
Piraeus Bank (Winbank)
   Posted on: 12/19/2008     See contribution details

1243. Supertracker v3.1a Request Installation with Paid service
FULL PACKAGE

Since v3.2b
-----------
* Stylesheet edit greatly reduced
* Major formatting changes
* Added "Next Ten Results" button to last 10 visitors
* Removed the "Go" button as it is not necessary
* Cleaned up the english file considerably (removed the redundancies and non-called defines)
* Cleaned up the instruction and updated the fileset

This is multi-language ready now, but needs translating...

Scott
   Posted on: 12/20/2008     See contribution details

1244. Silver Buttons Request Installation with Paid service
Here are some silver / chrome button effects. They have white backgrounds but I also added psd photoshop files so easy to make extra buttons or ones with different background. check out http://www.pricelessweddings.com.au for a look at them. If I have not got bored and changed em again :)
   Posted on: 12/20/2008     See contribution details

1245. auctionTastic - product auctions for osCommerce Request Installation with Paid service
Create multiple product auctions in osCommerce

Originally based on another auction contribution (credits.txt included) this is a total rewrite due to the original having unworkable code. At 27 odd files this is quite a large contribution although changes to core files has been kept to very very little.

Full instructions are included:

Package includes: -

* Auto Installer
* Upload folder (contains all files new to oscommerce)
* Modified files folder (files where we are modifying oscommerce code)
* Documentation folder (install instructions including manual file changes - new code syntax highlighted)



Features:-

* Multiple auction products
* Products with attributes can be auctioned
* Products can be bought as normal even if auctioned
* Standard product price shown above auction price (including addition of attributes value)
* product info page refresh options in admin
* My Auction view in My Account
* Inform current highest bidders of new bids
* Inform winning bidders at end of auction
* Product added to cart of winning bidder at end of auction (Can't be removed by them)
* Valid HTML (I hope)
* Compatible with PHP4/5 MySQL4/5
* Error free (error_reporting(E_ALL))
* Compatible with .. RC2a, 2.0 Final (lower probably will work but untested)



Feedback and bug reports appreciated as always.

Support forum http://forums.oscommerce.com/index.php?showtopic=324179
   Posted on: 12/20/2008     See contribution details

1246. eShipper integration module by WayToShip. Ship by Fedex, Canada Post, UPS, Purolator and DHL with one account only. Request Installation with Paid service
Version 1.4.1

- Added fallback shipping
- Added support for automatic discovery of residential status of destination address
- Configuration simplified
   Posted on: 12/20/2008     See contribution details

1247. New Google Sitemap Generator Request Installation with Paid service
added one for reviews.

not the best coder though

basically added a new query and edit the loop

$sql2 = "SELECT products_id as pID,
products_id as products_id
FROM " . TABLE_REVIEWS . "";

/*
* Execute the query
*/
$query = tep_db_query($sql);
$query2 = tep_db_query($sql2);

/*
* If there are returned rows...
* Basic sanity check
*/
if ( tep_db_num_rows($query) > 0 ){

/*
* Initialize the variable containers
*/
$container = array();
$number = 0;
$top = 0;

/*
* Loop the query result set
*/
while( $result = tep_db_fetch_array($query)){
$pID = tep_db_fetch_array($query2);
$top = max($top, $pID['products_id'], $result['date_added']);
$location = tep_href_link(FILENAME_PRODUCT_REVIEWS_INFO, 'products_id=' . $pID['pID'] . '&'. 'reviews_id=' . $result['rID'], 'NONSSL', false);
if ( tep_not_null($result['last_mod']) ){
$lastmod = $result['last_mod'];
} else {
$lastmod = $result['date_added'];
}
$changefreq = 'weekly';
$ratio = ($top > 0) ? ($result['date_added']/$top) : 0;
$priority = $ratio < .1 ? .1 : number_format($ratio, 1, '.', '');

/*
* Initialize the content container array
*/
$container = array('loc' => htmlspecialchars(utf8_encode($location)),
'lastmod' => date ("Y-m-d", strtotime($lastmod)),
'changefreq' => $changefreq,
'priority' => $priority
);


THANKS to who created this and the others!
added one for reviews.

not the best coder though

basically added a new query and edit the loop

$sql2 = "SELECT products_id as pID,
products_id as products_id
FROM " . TABLE_REVIEWS . "";

/*
* Execute the query
*/
$query = tep_db_query($sql);
$query2 = tep_db_query($sql2);

/*
* If there are returned rows...
* Basic sanity check
*/
if ( tep_db_num_rows($query) > 0 ){

/*
* Initialize the variable containers
*/
$container = array();
$number = 0;
$top = 0;

/*
* Loop the query result set
*/
while( $result = tep_db_fetch_array($query)){
$pID = tep_db_fetch_array($query2);
$top = max($top, $pID['products_id'], $result['date_added']);
$location = tep_href_link(FILENAME_PRODUCT_REVIEWS_INFO, 'products_id=' . $pID['pID'] . '&'. 'reviews_id=' . $result['rID'], 'NONSSL', false);
if ( tep_not_null($result['last_mod']) ){
$lastmod = $result['last_mod'];
} else {
$lastmod = $result['date_added'];
}
$changefreq = 'weekly';
$ratio = ($top > 0) ? ($result['date_added']/$top) : 0;
$priority = $ratio < .1 ? .1 : number_format($ratio, 1, '.', '');

/*
* Initialize the content container array
*/
$container = array('loc' => htmlspecialchars(utf8_encode($location)),
'lastmod' => date ("Y-m-d", strtotime($lastmod)),
'changefreq' => $changefreq,
'priority' => $priority
);


THANKS to who created this and the others!
I downloaded NGS1.2 version, but it did not work on my 2.2 version.

I added following lines instead of application_top/bottom.php

define('SEARCH_ENGINE_FRIENDLY_URLS', 'false');
require('includes/configure.php');
require(DIR_WS_INCLUDES . 'filenames.php');
require(DIR_WS_INCLUDES . 'database_tables.php');
require(DIR_WS_FUNCTIONS . 'database.php');
tep_db_connect() or die('Unable to connect to database server!');
require(DIR_WS_FUNCTIONS . 'general.php');
require(DIR_WS_FUNCTIONS . 'html_output.php');
esta es una version de la1.1 sin manufacturers, pero con los parents de las categorias, aunque estas no tengan productos
I've added the manufacturers XML sitemap, you need to insert the new general website map into google webmasters.

Thanks :D

FULL package!
   Posted on: 09/22/2008     See contribution details

1248. Simple Categories Menu Request Installation with Paid service
Just a Screenshot
Just a Screenshot
This will put a very simple horizontal link menu of your top level categories in your header or any other place you might desire for placement. It is EXTREMELY simple, but then, I enjoy simplicity and functionality.

One step and you are done

Support Forum: http://forums.oscommerce.com/index.php?showtopic=323955
   Posted on: 12/17/2008     See contribution details

1249. Ultra Pics Ajax Attribute Manager Hybrid Request Installation with Paid service
This Package Include the files need for installating Ultra Pics as well as Ajax Attribute Manager.

Please remember to install the Ajax Attribute Manager first!!!!!!!
   Posted on: 12/18/2008     See contribution details
Displaying 1117 to 1125 (of 1445 contributions) Result Pages: [<< Prev]  ... 121  122  123  124  125  126  127  128  129  130 ...  [Next >>]