

lifeisboost
Members-
Content count
86 -
Joined
-
Last visited
Profile Information
-
Real Name
Peter
-
Has anyone had the issue of not being able to put in the symbol & as in K&N. I have gone through all of the Files for AM but i cannot find the code where it is striping this character out.
-
I have recoded fedex labels to work with the new system if anyone needs help you can PM me.
-
For the OE to work i atucally edited this line $totals = $order->info['subtotal'] || $_SESSION['cart']->show_total(); to this and it also works $totals = $cart->show_total();
-
just throwing this out there, one of my clients has to use list rates for all of their us bound customers. unfortunatly as we all know this breaks international quotes. my fix was to show list rates to US customers and account rates to international with a surchage to make up the difference. let me know if this is any help find this line if(MODULE_SHIPPING_FEDEX_WEB_SERVICES_RATES=='LIST') and replace it with this if ($order->delivery['country']['id'] != STORE_COUNTRY){ $cost = $rateReply->RatedShipmentDetails[0]->ShipmentRateDetail->TotalNetCharge->Amount; $cost = (float)round(preg_replace('/[^0-9.]/', '', $cost), 2); }elseif(MODULE_SHIPPING_FEDEX_WEB_SERVICES_RATES=='LIST')
-
NEW! Complete Order Editing Tool!
lifeisboost replied to jhilgeman's topic in General Add-Ons Support
finally have a fix for my issue if anyone else has the issue just contact myself. -
NEW! Complete Order Editing Tool!
lifeisboost replied to jhilgeman's topic in General Add-Ons Support
just tried all of the latest versions of this contribution and it looks liek none of them work on php 5.3. the javascript works fine and it calls edits_orders_ajax but it looks like it is not introducing it into the DB... -
NEW! Complete Order Editing Tool!
lifeisboost replied to jhilgeman's topic in General Add-Ons Support
has anyone had any trouble with the ot_custom not saving after you enter in a description? we moved out heavily modified store to a new server running 5.3.3-7+squeeze8. what happens is you hit the plus sign, the new cells open, but when you enter a name for it, then a price or discount ajax reloads the totals box as it should but the new custom total is gone. i can edit an exisiting one fine but i cannot add one. there ar eno javascript erros in firebug and no erros showing in any of our logs. this one definatly escapes me... and yes we are entering in a description first ;) -
I am trying to install this and modify it into something i can use. I have done the basic install and installed one module. the problem i am having is on the orders page i get this error. I have replaced the catalog/includes/class file but still no resolve. I do have a module enabled as i can see it in my configuration table. Warning: constant() [function.constant]: Couldn't find constant TRACKING_MODULE_NAME_ in /var/www/web/includes/classes/tracking_module.php on line 227 Warning: constant() [function.constant]: Couldn't find constant ADMIN_LINK_TITLE_ in /var/www/web/includes/classes/tracking_module.php on line 229
-
this contribution works great except for one area. When you are in your shopping cart and you want to update the QTY of each item if you use the plus or minus sign, It updates the prices and the QTYs in the info box and in the shopping cart. The problem is when you click checkout it drops everything to a QTY of 1. the only way the QTY is saving is if you enter a number and then press enter for the page to refresh.
-
Hello everyone, i have an odd issue with my paypal checkout. If a user is on the checkout_confirmation.php page and hits refresh, their shipping option and price are removed and replaced with either a 1 or a 3. all of my other payment modules work correctly, just like i said paypal and you hit refesh it erases your chosen whipping method and price and replaces it with a 1 or 3. I have upgrade my paypal file but it still does this. any help is appreciated.
-
Just tried the newest version posted and still the CC_validation is not being used. you can pass right through without entering any CC information in any CC module.
-
no STS or SEO, still having the problem of cc_validation working
-
did some more testing, the CC validation works fine on the stock OSC checkout just not on the single page checkout.
-
IS anyone having an issue where it is not using the CC validation? I am testing with cc.php and you can submit orders with no CC number and it goes through fine. I tested this on the live demo site at ITweb but theirs works fine.
-
What type of issues are you having? I had to mod our fedex module extensively for it to work with ground and surcharges.