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 1414 to 1422 (of 1445 contributions) Result Pages: [<< Prev]  ... 151  152  153  154  155  156  157  158  159  160 ...  [Next >>] 
1571. Multiple Individual Product Shipping Prices Request Installation with Paid service
I wouldn't usually post here but there was no link to the support topic in the forums...
I am using this contrib and it worked perfectly until i purchased several items at once and it displayed shipping prices for only one item... surely there must be a way to change this slightly so shipping option 1 is now (shipping price of product 1 + shipping price of product 2) and so on...?
   Posted on: 09/15/2008     See contribution details

1572. Customer Create Account (CCA) Email Confirmation Mod (inc manual order maker instructions) Request Installation with Paid service
Easy little mod for notifying a specific email address of when a new customer account is created, this can be turned on and off via the admin panel. Also included instructions for those using manual order maker.

I also added the choice to have a seperate email address for the manual orders, as maybe you want to track them with a different email.
   Posted on: 09/15/2008     See contribution details

1573. Attribute Qty Product Info Request Installation with Paid service
Changed code in the files to match that in the install instruvtions.

This is a full package.

The support thread is at:
http://forums.oscommerce.com/index.php?showtopic=233591
   Posted on: 09/15/2008     See contribution details

1574. Thumbnail Category Browse Request Installation with Paid service
Tooltip is a rollover zoom image box, without popup html page.

Very easy to install.

Exemple: www.expodreams.com/gallery/product_info.php?products_id=395

Enjoy!

Included is the full package with the revised thumb_bar.php.
   Posted on: 09/15/2008     See contribution details

1575. Google Adsense Adv in product info page Request Installation with Paid service
I modified sweetyjenny's javascript to change banner colour and size.
   Posted on: 09/11/2008     See contribution details

1576. Google AdSense Referrals in footer ver. 1.0 Request Installation with Paid service
This contribution will intergrate Google Adsense Referrals into your footer. Hopefully this will help you to increase the Google Adsense Referrals ads exposure. Installation only one minute.
   Posted on: 09/11/2008     See contribution details

1577. Product Attributes Clone tool Request Installation with Paid service
bug.

The following error occurs:

1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '')' at line 1

INSERT INTO products_attributes ( products_id, options_id, options_values_id, options_values_price, price_prefixt) VALUES (184, 10, 29, 0.0000, ')

[TEP STOP]



to solve change:

price_prefixt to price_prefix
and
.")"); to ."')");
I was frustrated that it seems no tool existed to clone all attributes from one product to multiple others, so I came up with the attached solution

FIND at line 27:
************
case 'clone_attributes':
$clone_product_id_from = $HTTP_POST_VARS['clone_products_id_from'];
$clone_product_id_to = $HTTP_POST_VARS['clone_products_id_to'];
tep_db_query("delete from ".TABLE_PRODUCTS_ATTRIBUTES." WHERE products_id='".$clone_product_id_to."'");
$attributes = tep_db_query("select products_id, options_id, options_values_id, options_values_price, price_prefix from " . TABLE_PRODUCTS_ATTRIBUTES ." where products_id='".$clone_product_id_from."'");

while($attributes_values = tep_db_fetch_array($attributes)) {

tep_db_query("INSERT INTO " . TABLE_PRODUCTS_ATTRIBUTES . " ( products_id, options_id, options_values_id, options_values_price, price_prefix ) VALUES (".$clone_product_id_to.", ".$attributes_values['options_id'].", ".$attributes_values['options_values_id'].", ".$attributes_values['options_values_price'].", '".$attributes_values['price_prefix']."')");

}
break;
************


REPLACE WITH:
************
// BOF Multiple Product Attributes Clone
case 'clone_attributes':
$multi_clone_products_id_to=$HTTP_POST_VARS['clone_products_id_to'];
for ($i=0;$i<sizeof($multi_clone_products_id_to);$i++) {
$clone_product_id_from = $HTTP_POST_VARS['clone_products_id_from'];
$clone_product_id_to = $multi_clone_products_id_to[$i];
tep_db_query("delete from ".TABLE_PRODUCTS_ATTRIBUTES." WHERE products_id='".$clone_product_id_to."'");
$attributes = tep_db_query("select products_id, options_id, options_values_id, options_values_price, price_prefix from " . TABLE_PRODUCTS_ATTRIBUTES ." where products_id='".$clone_product_id_from."'");
while($attributes_values = tep_db_fetch_array($attributes)) {
tep_db_query("INSERT INTO " . TABLE_PRODUCTS_ATTRIBUTES . " ( products_id, options_id, options_values_id, options_values_price, price_prefixt) VALUES (".$clone_product_id_to.", ".$attributes_values['options_id'].", ".$attributes_values['options_values_id'].", ".$attributes_values['options_values_price'].", '".$attributes_values['price_prefix'].")");
}
}
break;
// EOF Multiple Product Attributes Clone
************




FIND at line 781:
************
<select name="clone_products_id_to">
************



REPLACE WITH:
************
<select name="clone_products_id_to[]" multiple size="20">
************


Hope that helps someone...
   Posted on: 09/10/2008     See contribution details

1578. Show All Categories Request Installation with Paid service
- Option: hover effect
- option: showmore in defined catlevel after 'n' categories in the defined catlevel.
e.g.: cat a
subcat a1
subcat a2
subcat a3
subcat a4
...

will be cat a
subcat a1
subcat a2
more ...

Easy to install but ... Installation on your own risk!
   Posted on: 09/13/2008     See contribution details

1579. Club osCommerce Specials on Front Page Request Installation with Paid service
This mod enables a new contentBox in your index.php page which is very much like the "new products for month" box. Except it only shows special offers.
This mod enables a new contentBox in your index.php page which is very much like the "new products for month" box. Except it only shows special offers.

More reading at:
http://www.clubosc.com/new-products-mashup.html
   Posted on: 09/10/2008     See contribution details
Displaying 1414 to 1422 (of 1445 contributions) Result Pages: [<< Prev]  ... 151  152  153  154  155  156  157  158  159  160 ...  [Next >>]