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 1198 to 1206 (of 1445 contributions) Result Pages: [<< Prev]  ... 131  132  133  134  135  136  137  138  139  140 ...  [Next >>] 
1331. Quick Research Infobox with Page Result Request Installation with Paid service
Translated into the Italian box quick research for version 1.01 for the package refer to the previous file.
   Posted on: 11/29/2008     See contribution details

1332. CSS Infoboxes Request Installation with Paid service
This contribution replaces the osC column boxes with ones that use <div> tags and CSS. It eliminates the need for the box class (for these boxes only so don't delete it). Now your column boxes can have their own individual look.

An ABCommerce.org contribution, enjoy.
   Posted on: 11/29/2008     See contribution details

1333. SiteSearch Plus Request Installation with Paid service
- Removed unnecessay </a> in includes/modules/product_listing.php
- Changed search in files to only search the current language
- Added search inside sub-directories option to includes/boxes/search.php
- Added search in articles (articles manager contribution)
- Added search in pages (page editor contribution)

This is a complete version.

The support thread is at
http://forums.oscommerce.com/index.php?showtopic=320350
- Added code on the email form to check for valid input
- Added an option in the search box to allow setting of the dropdown width

This is a complete version.

The support thread is at
http://forums.oscommerce.com/index.php?showtopic=320350
This contribution allows searching of the entire site. It adds the following features:

- Search in product descriptions
- Search in product attributes
- Search in language files
- If a search is performed on a word and no product matches are found, a form appears
allowing the customer to email the shop owner asking for information about the product.
- A modified version of the Advanced Search Box is included. The price boxes and category selector can be enabled/disabled via settings in the includes/boxes/search.php file.

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

1334. Show All Products in Category & Subcategories V1.0 Request Installation with Paid service
Besides my addition from yesterday I also added the function that the manufacturers information page did not contain all the sub category images before listing the products of a chosen manufacturer.

This change still contains the changes from yesterday that not only the products in the sub categories are listed but also the actual sub category names and images.

The screenshots are still the old ones since I work with a heavily modified shop.

Included is the full package
I love this contribution however I wanted to show both the sub category names and images together with the products within those categories. I have used an old contribution from 2003 to fix the problem.

Al credit goes to the author of http://addons.oscommerce.com/info/1014

Added is the full package with updated readme. The screenshot is still the old one
   Posted on: 11/24/2008     See contribution details

1335. First Item $X, Additional Items $Y Shipping Request Installation with Paid service
When a country was selected that was not included in the administration settings a quote was given regardless of this fact. I changed it slightly so that now the error appears saying that there is no possibility of shipping to that country. Also added a Dutch translation.

Added is full package including Dutch translation
   Posted on: 11/27/2008     See contribution details

1336. Reference Attributes Request Installation with Paid service
Suite à des confusions de les fichiers d'installation des précédents packs.

Voici la version d'origine qui permet d'avoir les références des attributs dans :

La base de données (products_attributes)
Le panier
La commande
La facture
L'historique de commandes
L'email de commande

Vous pouvez modifier le séparateur de référence par votre panneau d'administration.

Ex : Modèle du produit, séparateur, référence

Soit : MG200MMS-16MB

La contribution est complète
Last version with french installation
   Posted on: 10/20/2008     See contribution details

1337. Search Enhancements Request Installation with Paid service
Search Unenhancements

There are times when tracking search keywords is undesireable.

Rather than replacing the file:
'/catalog/advanced_search_result.php'

Rename it to:
'/catalog/advanced_search_result_notally.php' and reference it instead.

This is great if you want to embed into a product description a pre-composed search link for other products in a series, or email a pre-composed search link in an email to a client , and don't want the pre-composed search to count in the totals.

Example:
<a href="http://your.website.here/catalog/advanced_search_result.php?keywords=search_term+another_search_term&x=0&y=0" title="Search for other items in the same series">Check out other models in the same series.</a>

Since I employ a standard for naming products, I can search for specific unique phrases, such as "Tele Vue Ethos" without worry of other un-related products appearing in the listing. To do this, simply separate search words with a plus sign, as in my example.

Perhaps some day I'll generate an add-on to make creating these pre-composed search links easier to author. There is probably a contribution that presents related or similar products to visitors, but this was quick-and-dirty.

Thanks to everyone involved in Search Enhancements. I think it's one of the best add-ons, and should be incorporated into the next version.
modified this section in the admin/stats_keywords.php file to have addslashes around the search_text.
also deleting search_text one by one in the while loop
if ($_GET['update'] == BUTTON_UPDATE_WORD_LIST) {
$sql_q = tep_db_query("SELECT DISTINCT search_text, COUNT(*) AS ct FROM search_queries GROUP BY search_text");

while ($sql_q_result = tep_db_fetch_array($sql_q)) {
$update_q = tep_db_query("select search_text, search_count from search_queries_sorted where search_text = '" . addslashes($sql_q_result['search_text']) . "'");
$update_q_result = tep_db_fetch_array($update_q);
$count = $sql_q_result['ct'] + $update_q_result['search_count'];

if ($update_q_result['search_count'] != '') {
tep_db_query("update search_queries_sorted set search_count = '" . $count . "' where search_text = '" . addslashes($sql_q_result['search_text']) . "'");
} else {
tep_db_query("insert into search_queries_sorted (search_text, search_count) values ('" .
addslashes($sql_q_result['search_text']) . "'," . $count . ")");
} // search_count

tep_db_query("delete from search_queries where search_text = '" . addslashes($sql_q_result['search_text']) ."'");
} // while
} // updatedb

full package atta
   Posted on: 11/15/2008     See contribution details

1338. Left and Right Column Control Request Installation with Paid service
Added the settings in the admin
Removed the settings from application_top.php
Added an install file to automaticly install the configuration keys
Added control hide the coulumns from the default section of index
Added the full fileset for both the RC and Non RCversions

This is a full package
   Posted on: 11/27/2008     See contribution details

1339. Package Tracking Plus Request Installation with Paid service
FULL PACKAGE with UPDATE INSTRUCTIONS

Changes since v2.1
------------------
* Changed the instructions mistake button_track.php to button_track.gif
* Added the no tracking numbers available to the account_history_info.php page (thanks Irin)

Scott
   Posted on: 11/24/2008     See contribution details
Displaying 1198 to 1206 (of 1445 contributions) Result Pages: [<< Prev]  ... 131  132  133  134  135  136  137  138  139  140 ...  [Next >>]