Uncheck/Disable checked "Same as Billing Address" in magento 1.5 - magento

Basically, I've been trying to remove the checked box when I go to the following.
Sales > Order > View a completed order > Click Re-Order and then I see the SHIPPING ADDRESS has a checkbox which is already checked SAME AS BILLING ADDRESS. I want to uncheck the box and disable this function.
Please let me know how I can do this is the simplest way possible.
Magento Version 1.5.0.1

I found this and it worked perfect.
http://www.12live.de/de/blog/magento/magento-create-order-in-backend-set-default-value-of-delivery-address-checkbox-same-as-billing-to-unchecked/
If you create an order in the backend by default the delivery method checkbox "Same as billing" is checked.
If the customer has different billing and shipping address this is problematic. In the dop down the shipping address is shown. But due to the checkbox the shown shipping address is ignored and the billing address wil be used for delivery. If you want the checkbox to be unchecked by default the following modification is needed. Recommended is to copy the file from the core to the local code pool and modifiy it there. The file in question is core/Mage/Sales/Model/Quote/adress.php. You need to change line 124 to:
$this->setSameAsBilling(0);

Related

Change wording “Login to add this product on shopping list.” when viewing item on Magento sites

I am wanting to change "Login to view your price" to “Login to add this product on shopping list.” that is currently displayed.
Screenshot where the text is on page
This message is not part of default Magento.
Probably you've installed a third party module or made some customisations to prevent guest customers from adding products to the cart.
First step you can take is to find the message in your code base. You can search the string in your IDE (e.g. in PhpStorm with double pressing Shift).
Or from command line from project root: grep -r 'Login to add this product on shopping list' *
After this you can determine if you can change the string directly or need an override in a custom module.

Magento- Country Specific Payment Option is not showing on One Page Checkout

I have COD set for a specific country and it doesn't shows up in OPC for the first time. It only appears after a full reload of the checkout page or if the customer is logged in.
Once the billing information is filled up the Ajax is called but the payment option fails to show up.
**I guess its a theme problem. So, what to do now? Is there any fix?

Admin Panel Order Detail page Does not show customer Address

Everything was working fine, but now I can not see the customer address in order detail page in admin panel.
This is a bit of a broad question. First check you haven't installed anything recently. If you have, disable all your extensions and check again. The only reason why a shipping address wouldn't normally show is in case the order is virtual.

Magento Checkout: Item out of stock charges customer but no order / order confirmation

I am using Magento 1.6 with the out-of-the-box one page checkout.
Upon the final submit, after the customer has reviewed their order, there seems to be a glitch: If an item has become out of stock, the customer is notified and the order seems not to be going through (no order is created and no confirmation page). However, authorize.net does get the complete transaction request and charges the customer. It seems to only happen if an item has become out of stock. (Customer could be lingering to hit the submit button for quite a while.)
What can I do? Add a java script function to check upon stock on clicking submit?
Is this a known bug?
Thanks!
Is your system set to allow Backorders?
System > Config > Catalog > Inventory > Backorders "No Backorders".
If that is set to disallow backorders I wonder why the add-to-cart button even displays.
If you are using a custom template I might start there in troubleshooting. Switch back to a default template and see if this issue persists.

Magento and onepage checkout

I am using Magento and I'm trying to fix a small issue I have with the OnePageCheckout.
I have a single Billing Address and a single Shipping Address, which are both fine.
When selecting a New Address under Shipping Information, I'd expect the form to be reset, instead it uses the default Shipping Address
It just seems odd that you add a New Address and it is pre-populated wit an adress already.
if this is something Magento does out of the box and if so, is there a file(s) I'd need to change?
Many thanks
I had to hack a js file and add Field.clear('billing:firstname') etc etc so that these fields would be cleared whenever resetSelectedAddress was called

Resources