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 262 to 270 (of 1445 contributions) Result Pages: [<< Prev]  ... 21  22  23  24  25  26  27  28  29  30 ...  [Next >>] 
291. Better SEO Images V1.0 Request Installation with Paid service
Change log: V1.1 Slightly modified the SEO image renaming code so it's more SEO friendly. This will be the last version!

FULL PACKAGE
   Posted on: 09/10/2009     See contribution details

292. osC mySQL Request Installation with Paid service
Traduction française

Full package

Screenshots visibles à ; http://www.oscommerce-screenshots.com/osc-mysql-p-452.html
   Posted on: 09/09/2009     See contribution details

293. Edit any customer address in administration Request Installation with Paid service
Modification :

Du 11 Jul 2009
Du 7 Sep 2009

Ajout :

de la langue française

Full package

Screenshot visible à : http://www.oscommerce-screenshots.com/edit-customer-address-administration-p-448.html
This is not a complete file.

Bug in v1.2, in case 'confirmaddressdelete':

CHANGE LINE
$check_default_query = tep_db_query("select customers_default_address_id as defid from " . TABLE_CUSTOMERS . " where c.customers_id = '" . (int)$HTTP_GET_VARS['cID'] . "'");
TO
$check_default_query = tep_db_query("select customers_default_address_id as defid from " . TABLE_CUSTOMERS . " where customers_id = '" . (int)$HTTP_GET_VARS['cID'] . "'");
this is not a complete file.

to change customer default address from the admin side

in admin/customers.php

ADD


if(isset($HTTP_POST_VARS['setdefault'])) $sql_data_array['customers_default_address_id'] = $default_address_id;

ABOVE THE LINE

if (ACCOUNT_GENDER == 'true') $sql_data_array['customers_gender'] = $customers_gender;




AND ADD

<tr>

<td class="main" align="right"><input type="checkbox" name="setdefault" value="set"></td>

<td class="main">Set as a default address</td>

</tr>


BELOW THE LINE

<tr>

<td class="main"><?php echo ENTRY_COUNTRY; ?></td>

<td class="main"><?php

if ($error == true) {

if ($entry_country_error == true) {

echo tep_draw_pull_down_menu('entry_country_id', tep_get_countries(), $cInfo->entry_country_id) . '&nbsp;' . ENTRY_COUNTRY_ERROR;

} else {

echo tep_get_country_name($cInfo->entry_country_id) . tep_draw_hidden_field('entry_country_id');

}

} else {

echo tep_draw_pull_down_menu('entry_country_id', tep_get_countries(), $cInfo->entry_country_id);

}

?></td>

</tr>
Purpose:
This contribution allows you to edit in adminstration ANY address for a customer instead of just their default address.

v1.2: Some instructions and Fixes added
Files for vanilla installation or file comparing added.
Spanish translation added.

Full Package
Someone discovered that my original contribution broke if an invalid entry (such as not enough characters in a name) was made during address entry and the update process reloaded the information for the address with the invalid fields editable. The revised instructions attached here fix the problem.

For those that have already installed this contribution the fix is quite simple as detailed below.

1) Immediately before the code you added in step 2d add the following line:

<?php if ($action != 'update') { /*only display if no update entry error*/ ?>

2) Immediately after the code you added in step 2d add the following line:

<?php } ?>

3) Replace EVERY instance of address_firstname with entry_firstname. This is true whether it occurs as part of a variable name or inside quotes. There should be a total of 13 replacements made.

4) Replace EVERY instance of address_lastname with entry_lastname. Again this is true whether it occurs as part of a variable name or inside quotes and once again there should be a total of 13 replacements made.

Steps 3 and 4 of the correction allow the variable reload to work properly.
I thought it strange that osCommerce allows the site adminstrator to edit the default address for any customer but does not allow them to edit any other address that customers may have in their address book. This contribution allows you to edit any address for any customer. You may also delete any address EXCEPT the default customer address so if, like us, you have customers that enter duplicate addresses in their address book you can delete the extra addresses.
   Posted on: 10/22/2008     See contribution details

294. Keyword Search Report Request Installation with Paid service
Modification :

Suppression des liens en dur pour les mettre dans les fichiers langues.

Screenshot visible à : http://www.oscommerce-screenshots.com/keyword-search-report-p-447.html
   Posted on: 09/08/2009     See contribution details

295. Prefix for Database Tables Request Installation with Paid service
This is an update to Database Table Prefix 1.0. This fixes the issue with database backups where a backup of all tables within the database would get backed up rather than just the osCommerce tables.

I believe if you have not defined a prefix, "preg_match" should match all tables, but I haven't bothered to test this out.

This is NOT the Full Package
   Posted on: 09/09/2009     See contribution details

296. youoscommercetube Request Installation with Paid service
Problem with error on IE? When using other contribution like lightbox Use this code instead on product_info.php

<?php

$small_youtube = $product_info['products_youtube'];


if ($small_youtube == NULL) {
echo '';

} else {

$info_box_contents = array();
$info_box_contents[] = array('align' => 'center', 'text' => '


<object type="application/x-shockwave-flash" width="425" height="344" data="http://www.youtube.com/v/'.$small_youtube.'&hl=en&fs=1&rel=0&color1=0x3a3a3a&color2=
0x999999" id="VideoPlayback">
<param name="movie" value="http://www.youtube.com/v/'.$small_youtube.'&hl=en&fs=1&rel=0&color1=0x3a3a3a&color2=
0x999999">
<param name="allowScriptAcess" value="sameDomain">
<param name="quality" value="best">
<param name="bgcolor" value="#FFFFFF">
<param name="scale" value="noScale">
<param name="salign" value="TL">

<param name="FlashVars" value="playerMode=embedded" />
<param name="wmode" value="transparent" />
</object>





');
new infoBox($info_box_contents);
} ?>



No file attached.
With this Mod you can add videos from youtube for your productos info.

Youtube Video on product_info for OSC

///////////////////////////////////////////////////////////////////

osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com
Copyright (c) 2007 osCommerce
Released under the GNU General Public License

///////////////////////////////////////////////////////////////////

YouoscommerceTube

Eduardo Cespedes Carrera
lalocespedes@gmail.com
http://suenachido.com

\\\\\\\\\\\\\\\\

Installation:

Remember backup your info before to install.

This is a full apckage intended for a Virgin install.

1. Upload all content of youtubeinfo.rar via ftp at your osc installation.

2. Run the sql file

3. Done. I hope you have a fun.


//////////////////////////////////////////////////////////////////////

How to use:

Go to osc control panel-catalog-and edit anyone product.

2. At last of the edit product page you can see a field of the form called ID_Video_Youtube.

Rigth there you have to put the Youtube video ID. What is this?

This is after the symbol equal (=) and before the symbol &.

Example this is the URL Video Youtube http://www.youtube.com/watch?v=msy39-tL0t8&feature=related

So the ID VIdeo youtube should be msy39-tL0t8.

3. Save the changes and job done.

//////////////////////////////////////////////////////////////////////

Thks for use YouoscommerceTube.
With this Mod you can add videos from youtube for your productos info.

Youtube Video on product_info for OSC

///////////////////////////////////////////////////////////////////

osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com
Copyright (c) 2007 osCommerce
Released under the GNU General Public License

///////////////////////////////////////////////////////////////////

YouoscommerceTube

Eduardo Cespedes Carrera
lalocespedes@gmail.com
http://suenachido.com

\\\\\\\\\\\\\\\\

Installation:

Remember backup your info before to install.

This is a full apckage intended for a Virgin install.

1. Upload all content of youtubeinfo.rar via ftp at your osc installation.

2. Run the sql file

3. Done. I hope you have a fun.


//////////////////////////////////////////////////////////////////////

How to use:

Go to osc control panel-catalog-and edit anyone product.

2. At last of the edit product page you can see a field of the form called ID_Video_Youtube.

Rigth there you have to put the Youtube video ID. What is this?

This is after the symbol equal (=) and before the symbol &.

Example this is the URL Video Youtube http://www.youtube.com/watch?v=msy39-tL0t8&feature=related

So the ID VIdeo youtube should be msy39-tL0t8.

3. Save the changes and job done.

//////////////////////////////////////////////////////////////////////


Remember be chido(cool) and support this Mod making a donation go to suenachido.com

Remember you can see videos help in www.suenachido.com

Thks for use YouoscommerceTube.
   Posted on: 11/18/2008     See contribution details

297. Customers extra fields Request Installation with Paid service
It needed a small change to the instructions. Change is to be done for create_account.php. It needs to say $customer_id instead of $customers_id in the sql data array..

Full package with the changed instructions in HTML
Full Package updated for 2.2 RC2a. Simply copy these files over a fresh install of OSC or use a file compare program (WinMerge, KDiff3, etc) to update your existing installation.

Removed the annoying <BR><BR> in the language files that caused errors.

Updated install_first.html to include //BOF, //EOF comments.
   Posted on: 06/16/2009     See contribution details

298. Oscommerce Payment-Module von Novalnet AG Request Installation with Paid service
Lastschrift DE
Lastschrift AT
Kreditkarte
Rechnung
Vorauskasse
Telefonpayment

Erweiterung für verschiedene Währungen
   Posted on: 09/08/2009     See contribution details

299. CSS Editor Request Installation with Paid service
Multilanguages

Added french

Full package

Screenshots visibles at : http://www.oscommerce-screenshots.com/css-editor-p-446.html
   Posted on: 09/08/2009     See contribution details
Displaying 262 to 270 (of 1445 contributions) Result Pages: [<< Prev]  ... 21  22  23  24  25  26  27  28  29  30 ...  [Next >>]