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 1045 to 1053 (of 1445 contributions) Result Pages: [<< Prev]  ... 111  112  113  114  115  116  117  118  119  120 ...  [Next >>] 
1161. StartComSSL Info Box Request Installation with Paid service
here is a other Update For SSL only thing changed was this:

from:<?php
/*
SSL Box

osCommerce
http://www.oscommerce.com/

Copyright (c) 2000,2001 osCommerce

Released under the GNU General Public License
*/
?>
<!-- begin SSL BOX //-->
<tr>
<td>
<?php
$info_box_contents = array();
$info_box_contents[] = array('align' => 'left', 'text' => BOX_HEADING_SSL );
new infoBoxHeading($info_box_contents, false, false);

$info_box_contents = array();
$info_box_contents[] = array('align' => 'center', 'text' => '<a href="http://www.startssl.com/"><img src="http://www.startssl.com/img/secured.gif" border="0" alt="Free SSL Secured By StartCom" title="Free SSL Secured By StartCom"></a>');
new infoBox($info_box_contents);
?>
</td></tr>
<!-- SSL BOX //-->




to: <?php
/*
SSL Box

osCommerce
http://www.oscommerce.com/

Copyright (c) 2000,2001 osCommerce

Released under the GNU General Public License
*/
?>
<!-- begin SSL BOX //-->
<tr>
<td>
<?php
$info_box_contents = array();
$info_box_contents[] = array('align' => 'left', 'text' => BOX_HEADING_SSL );
new infoBoxHeading($info_box_contents, false, false);

$info_box_contents = array();
$info_box_contents[] = array('align' => 'center', 'text' => '<script type="text/javascript" src="https://www.startssl.com/validation.js"></script>');
new infoBox($info_box_contents);
?>
</td></tr>
<!-- SSL BOX //-->
   Posted on: 01/15/2009     See contribution details

1162. Debugging FILE v.099 Request Installation with Paid service
English________

To discuss those parts of the code in the "echo" do not print to screen.
Keeps us in a debug file.
He spent 2 parameters to the function, a path and a string.


Español________

Para analizar aquellas partes de código en la que los "echo" no se imprimen por pantalla.
Nos guarda el debug en un fichero.
Le pasamos 2 parámetros a la función, el path y un string.

FULL PACKAGE
   Posted on: 01/15/2009     See contribution details

1163. Categories : display only top categories v1.0 Request Installation with Paid service
A small modification to this nice and neat contribution - I wanted to have a sum of all the products in the top category and its subcategories displayed after the top category name.

With the following corrections:
-correct count even if product is in multiple categories
-no longer counts disabled products

So if you don't want a product count behind the category name then use Christian's contribution below.

Installation:
1) Unzip in catalog/includes/boxes.
2) Edit catalog/includes/column_left.php and change 'categories.php' to 'top_categories.php'
elementary error in my below package. This is the correct one.
   Posted on: 12/18/2008     See contribution details

1164. Connect to EasyFatt Request Installation with Paid service
Il mio primo contributo alla comunità dell'osCommerce, con questo pacchetto potrai esportare Articoli, Clienti e Ordini per far interagire il software gestionale EasyFatt 2006 Professional della Danea con il tuo OsCommerce.

Per maggiori informazioni sul gestionale vedi qui:
http://www.danea.it/software/easyfatt/index.asp

   Posted on: 01/14/2009     See contribution details

1165. Quick price update from the product listing page v1.0 Request Installation with Paid service
This addon inserts an input box in the admin's products listing page in which you can enter a new price for the product. Therefore, you don't need to edit the product to enter a new price.
   Posted on: 01/14/2009     See contribution details

1166. Categories Description Request Installation with Paid service
In last instructions I needed to made a little change:
========================================

In catalog/index.php:

-Search:

} elseif ($category_depth == 'products' || isset($HTTP_GET_VARS['manufacturers_id'])) {



LAST INSTRUCTIONS:

And add below:


$category_query = tep_db_query("select cd.categories_name, select cd.categories_description from " . TABLE_CATEGORIES . " c, " . TABLE_CATEGORIES_DESCRIPTION . " cd where c.categories_id = '" . (int)$current_category_id . "' and cd.categories_id = '" . (int)$current_category_id . "' and cd.language_id = '" . (int)$languages_id . "'");
$category = tep_db_fetch_array($category_query);


NEW INSTRUCTIONS:

And add below:

$category_query = tep_db_query("select cd.categories_name, cd.categories_description, c.categories_image from " . TABLE_CATEGORIES . " c, " . TABLE_CATEGORIES_DESCRIPTION . " cd where c.categories_id = '" . (int)$current_category_id . "' and cd.categories_id = '" . (int)$current_category_id . "' and cd.language_id = '" . (int)$languages_id . "'");
$category = tep_db_fetch_array($category_query);

========================================
Thanks, it is a very nice contribution
IT IS NOT COMPLETE PACKAGE
17 Noviembre 2008
Cambios por 'Hoheria'. Eso es un contribución excelente por trikinuke aunque he hecho algunas cambios al código par evitar la necesidad a poner código HTML en la ventana de descripciones - ahora utilisamos la informacion puesto en el stylesheet. También hemos elimanado la necesidad para insertar el nombre de la categoria con el texto - ya tenemos esta información en el base de datos y podemos aprovecharlo. Ahora tenemos una sistema mas fácil para ellos que no saben nada de HTML. Comparar el archivo con ellos puestos antes para ver las diferencias. ¡Por favor, desculpiés los errores en la idioma hecho por un pobre britanicó!

17 November 2008
Changes by 'Hoheria'. This is a great contribution by trikinuke but I've made some small code changes to remove the need for html code to appear in the description window by formatting it from the stylesheet and also avoid need for re-entering the category name along with the inserted text - by using the information already stored in the database. This makes it easier for store maintenance for people without html knowledge. Compare with previous posting to see changes.
A small error. Fixed.

This error was found thanks to Tamara from Netherlands, a code line was missing, only in instructions_english.txt and instrucciones_español.txt. Files to upload for fresh installations are ok. See attachment file.


Pequeño error. Arreglado.

Este error fue encontrado gracias Tamara desde Holanda, faltaba una linea del codigo, solamente en instructions_english.txt y instrucciones_español.txt. Los archivos para subir para instalaciones nuevas estan bien. Vea archivo adjunto.
   Posted on: 10/12/2008     See contribution details

1167. Easy Meta Tags for SEO 1.0 Request Installation with Paid service
This contribution shapes up the META DESCRIPTION and TITLE tags of the product info pages to make them more search engine friendly. As TITLE, it takes the product name as it is. As META DESCRIPTION, it takes the first 150 characters of the product description, but truncating this to end with a complete sentence (or on a white space, in case the first sentence is longer than 150 characters).

No database expansion is needed. It requires only one new file to install, and minor additions in two existing ones. Plus, it encourages you to come up with good product names and descriptions ;-)

(Version 1.0.1 is no update of the package - just of this text).
This contribution shapes up the META DESCRIPTION and TITLE tags of the product info pages to make them more search engine friendly. As TITLE, it takes the product name as it is. As META DESCRIPTION, it takes the first 150 characters of the product description, but truncating this to end with a complete sentence (or on a white space, in case the first sentence is longer than 150 characters).

No database expansion is needed. It requires only one new file to install, and minor additions in two existing ones. Plus, it encourages you to come up with good product names and descriptions ;-)

The contrib can be seen in action on www.botaniccity.com (although only the swedish language version is maintained).
   Posted on: 11/11/2008     See contribution details

1168. Quantity box with plus and minus buttons Request Installation with Paid service
you can use the attached ~~"product_info.php"~~ and replace it with yours (if you don't have changed it befor).
the product_info.php is based on the actual shopversion ~~"oscommerce-2.2rc2a"~~

if you have already a changed version of the product_info.php please follow the instruction.
2 files must be edited:
1.) product_info.php
2.) application_top.php


***
this version works correctly
based on orig.files of osc
***
don't use the files befor.
***
screenshot included
***
some bugfixes of displays and compatibility (currency)

i hope, now it's function correctly

*** with screenshot ***

*** FULL PACKAGE ***
(don't use the other bevor)
This is the same package as the 'dynamic price updater' I uploaded earlier but this title seems more fitting. This will also update the price 'live' on the product info page as the user increases or deceases the total quantity.

Again all credit for the work goes to community member BigZelf...
   Posted on: 11/15/2008     See contribution details

1169. New Products Glide Request Installation with Paid service
new version with lightbox effect and more.
   Posted on: 01/13/2009     See contribution details
Displaying 1045 to 1053 (of 1445 contributions) Result Pages: [<< Prev]  ... 111  112  113  114  115  116  117  118  119  120 ...  [Next >>]