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 847 to 855 (of 1445 contributions) Result Pages: [<< Prev]  ... 91  92  93  94  95  96  97  98  99  100 ...  [Next >>] 
941. Stats Products Purchased Update Request Installation with Paid service
Slight mod to the admn stats products purchased report.
Adds the part number to the report and condenses it slightly.

Upload the stats_products_purchased.php file to your .../admin/ folder to replace the existing file
   Posted on: 04/01/2009     See contribution details

942. Promote Selected Product Specials Request Installation with Paid service
This is a small mod that makes it possible to push or promote product specials to the top of the Specials listing. This is controlled in the admin/specials.php page, similarly as to setting the special OFF or ON (just a status change).
NOTE:
When the admin sets a specials status to OFF, then the script also demotes the special, if it was promoted. This was made in order to prevent having inactive specials on the top while in admin mode.

Screenshot: http://www.shrani.si/?B/Cv/3rn0zbrF/screenshot.png

Backup everything and follow the included instructions.
   Posted on: 03/30/2009     See contribution details

943. Add Order ID colum Request Installation with Paid service
This last version had a typo in the install file
Corrected now.
Full package, includes file swap for new installs and manual upadte
   Posted on: 03/30/2009     See contribution details

944. Paystation real-time credit card payments v2.2 Request Installation with Paid service
hidden input was being appended to post variables. It is now removed.
Added a time-stamp for MS generation, as moving an account to a different shop may generate 'transaction already in progress' errors. This should remove that possibility.
   Posted on: 12/07/2008     See contribution details

945. Paystation real-time PAGO payments Request Installation with Paid service
hidden input was being appended to post variables. It is now removed.
   Posted on: 03/30/2009     See contribution details

946. UK Counties (Actually Correct!) Request Installation with Paid service
This is a simpler way to install these files, previously there were several different sets, also some that were missing, now they are all in the one file.

Modifications:
some stated UA wales, changed to UK wales.
Added the readme previously shown on the pages below.

Two files inside The Zip.

coming soon version 2.1, Creating an installation file, (no need to open up phpmyadmin)
I found some of the Scottish counties were missing. This sql file adds all 33 counties. Just import this file in MySQL
   Posted on: 11/26/2008     See contribution details

947. Multi Attribute (combination) entry boxes in product info page. Request Installation with Paid service
I think there has been a misunderstanding. The original module is not supposed to server the purpose it currently serves now. ?( update by shotputty ).

the original module was intended for the following case:
Seller has:
Product A
with option: Colour { Pink, Red or Blue }
and option: Size { Large, Medium, Small }

Customer wants to buy:
2 Pink Large
3 Red Medium
1 Blue Small.

The pull downs help the customer to enter the corresponding quantities.

Updates intended:
1. Quantity box in case ther e is no options.

Note: Choosing on the shopping cart item does not bring in the "default" attribute when coming to the product page.

I will update the module soon.

to shotputty:
Please state the specific case where your update stands good. Also, if it is too different, please post in anew contrib. It really helps :).

Cheers
Hari
Many Bug fixes. Updated installation. Now working as supposed. Preconfigured files attached or make the changes as described in installation file.

Bugs fixed:

0) Cleaned up some code, which isn't really a bug ;-)

1) When product would have more than 1 option with attributes it would make no sense to add quantities. (think about this for a minute)

2) Attributes was set at 5 which would be only appropriate when you actually had 5 attributes, now it auto adjusts.

3) Product attribute with 0 quantity was also added to cart! (in my case that is)

4) Would show dropdown on each line with the default attribute on top. What's the use of the dorpdown of you have all options? --> Will now show all unique attributes without the dropdown!


Additional comments:
will now also show a quantity field for products with no options.



Please feel free to contact me for any questions of suggestions. Use at own risk. Please backup before proceeding.
   Posted on: 02/27/2009     See contribution details

948. "Dynamenu" for osCommerce - Dynamic Fly-Out, Drop-Down, Tree Category Menu Request Installation with Paid service
For those using Simple Template System (STS) ver 4+, to replace the STS categories box with Dynamic Menu System in your STS template:

Open /includes/modules/sts_inc/sts_column_left.php

Find:
// Get categories box from db or cache
if ((USE_CACHE == 'true') && empty($SID)) {
echo tep_cache_categories_box();
} else {
include(DIR_WS_BOXES . 'categories.php');
}

Change to:
// Get categories box from db or cache
if ((USE_CACHE == 'true') && empty($SID)) {
echo tep_cache_categories_box();
} else {
include(DIR_WS_BOXES . 'dm_categories.php');
}

Open /path to your/sts_template.html

Place $categorybox into your STS template page wherever you want the new dynamenu box to appear.

Follow dynamenu instructions for style of menu you want to appear.

I recommend copying and pasting the dynamenu css into your catalog stylesheet.css - makes it easier on STS templates to link to.
If you got blank page on checkout you can fix it by delete the white space at the end of the ProductsInCategory.php file.

in the box file find :

$output .= str_repeat(".", $level+$lvl_adjust).'|'.$val.'|'.tep_href_link(FILENAME_DEFAULT, $cPath_new).'|'.$this_title.'|'.$menu_icon_file.'|'.$this_selected.'|'.$this_expanded."n";

and change with

$products_in_category = tep_count_products_in_category($key);
if ($products_in_category >0) {
$output .= str_repeat(".", $level+$lvl_adjust).'|'.$val.'|'.tep_href_link(FILENAME_DEFAULT, $cPath_new).'|'.$this_title.'|'.$menu_icon_file.'|'.$this_selected.'|'.$this_expanded."n";
}
   Posted on: 02/26/2009     See contribution details

949. Automatic Store Feeds v3.0 Request Installation with Paid service
Issue with product and image URL not being correct (especially with a non-standard installation). To fix,

FIND
$imageURL = HTTP_SERVER . DIR_WS_CATALOG . DIR_WS_IMAGES;
$productURL = HTTP_SERVER . DIR_WS_CATALOG .'/product_info.php?products_id=';
(around line 13 in yahoo.php)

REPLACE WITH
$imageURL = HTTP_CATALOG_SERVER . DIR_WS_CATALOG_IMAGES;
$productURL = HTTP_CATALOG_SERVER . DIR_WS_CATALOG .'product_info.php?products_id=';

Updated yahoo.php file attached
   Posted on: 03/28/2009     See contribution details
Displaying 847 to 855 (of 1445 contributions) Result Pages: [<< Prev]  ... 91  92  93  94  95  96  97  98  99  100 ...  [Next >>]