

Jules190
Members-
Content count
217 -
Joined
-
Last visited
Profile Information
-
Real Name
Matt
-
Location
England
- Website
-
The best way to go about that would be to edit a current payment module. -Matt
-
What do you want to create? -Matt
-
np I thought it would be able to help some people. -Matt
-
Is it the breadcrumb trail that you want to add the image to? -Matt
-
Can contribution developed for 2.2-CVS be used under 2.2-MS
Jules190 replied to Selwyn's topic in General Add-Ons Support
Alot of the contributions you will be able to use under MS2. It just means that the user who created the contribution was using a CVS version. -Matt -
No, I dont use it either, the only reason I created was for this one person and I thought I might aswell contribute just incase others where looking for it. -Matt
-
Some in another post requested it so I did it for them and I thought I might aswell contribute it, as others may also want to use it. -Matt
-
Hi I have just contributed my first package, its only very simple, it just disables the ability to right click on your website. The link is here: http://www.oscommerce.com/community/contributions,1395 -Matt
-
I found the code on line 66 of default.php require(DIR_WS_LANGUAGES . $language . '/' . FILENAME_DEFAULT); -Matt
-
What is the code it tells you to put after it? -Matt
-
In the rewritten version can you select which products you need to be required in the admin? -Matt
-
Ye, thats right actually, you just have to turn it on in your paypal profile, but you dont have to set the callback url -Matt
-
SORRY POSTED IN WRONG POST
-
If you just want all of the boxes in the left column, open up column left, delete it all and replace it with this: <?php /* $Id: column_left.php,v 1.14 2003/02/10 22:30:50 hpdl Exp $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 2003 osCommerce Released under the GNU General Public License */ if ( (USE_CACHE == 'true') && !defined('SID')) { echo tep_cache_categories_box(); } else { include(DIR_WS_BOXES . 'categories.php'); } if ( (USE_CACHE == 'true') && !defined('SID')) { echo tep_cache_manufacturers_box(); } else { include(DIR_WS_BOXES . 'manufacturers.php'); } require(DIR_WS_BOXES . 'whats_new.php'); require(DIR_WS_BOXES . 'search.php'); require(DIR_WS_BOXES . 'information.php'); require(DIR_WS_BOXES . 'shopping_cart.php'); if (isset($HTTP_GET_VARS['products_id'])) include(DIR_WS_BOXES . 'manufacturer_info.php'); if (tep_session_is_registered('customer_id')) include(DIR_WS_BOXES . 'order_history.php'); if (isset($HTTP_GET_VARS['products_id'])) { if (tep_session_is_registered('customer_id')) { $check_query = tep_db_query("select count(*) as count from " . TABLE_CUSTOMERS_INFO . " where customers_info_id = '" . $customer_id . "' and global_product_notifications = '1'"); $check = tep_db_fetch_array($check_query); if ($check['count'] > 0) { include(DIR_WS_BOXES . 'best_sellers.php'); } else { include(DIR_WS_BOXES . 'product_notifications.php'); } } else { include(DIR_WS_BOXES . 'product_notifications.php'); } } else { include(DIR_WS_BOXES . 'best_sellers.php'); } if (isset($HTTP_GET_VARS['products_id'])) { if (basename($PHP_SELF) != FILENAME_TELL_A_FRIEND) include(DIR_WS_BOXES . 'tell_a_friend.php'); } else { include(DIR_WS_BOXES . 'specials.php'); } require(DIR_WS_BOXES . 'reviews.php'); if (substr(basename($PHP_SELF), 0, 8) != 'checkout') { include(DIR_WS_BOXES . 'languages.php'); include(DIR_WS_BOXES . 'currencies.php'); } ?> Then open up column right and delete EVERYTHING! -Matt
-
I presume you must have multiple paypals accounts. You could contact paypal and see whether it is possible to send the callback url along with the total for example. -Matt