magento-1.8

Magento cart not updating quantity in arabic store view

僤鯓⒐⒋嵵緔 提交于 2019-12-05 01:08:21
问题 I have the following issue with a Magento 1.8.1 installation. I have two store views, English, which is default, and Arabic. In the English store view if I add a product to the shopping cart I am able to modify the quantity by inputing the new quantity in the qty box and clicking Update Shopping Cart, which changes the quantity and the totals. However, when I switch over to the Arabic store view, I can't update the quantity of any products. I input the desired quantity and press update, but

Magento 1.7+: How to use the page layout handle

青春壹個敷衍的年華 提交于 2019-12-04 16:50:10
After trying to debug for hours I'm out of ideas and hope for some clarification (I guess I missunderstood a concept at some point). The backstory: Some base categories need an "overview page" which should be generated automatically from child categories and products. So my approach was to add a sub category to every base category and create a custom page layout which is being used from all these sub categories. For my client this would be very easy to manage in the Magento backend since he would only need to change the value in one drop down. So I created a simple module defining the new page

Magento cart not updating quantity in arabic store view

大城市里の小女人 提交于 2019-12-03 16:53:44
I have the following issue with a Magento 1.8.1 installation. I have two store views, English, which is default, and Arabic. In the English store view if I add a product to the shopping cart I am able to modify the quantity by inputing the new quantity in the qty box and clicking Update Shopping Cart, which changes the quantity and the totals. However, when I switch over to the Arabic store view, I can't update the quantity of any products. I input the desired quantity and press update, but the page reloads with only 1 piece of the product, and the totals are unchanged. I've tested and I've

Magento - Online refund with PayPal

前提是你 提交于 2019-12-02 10:49:56
问题 Currently we have a Magento ver. 1.8.1.0 with installed PayPal Website Payments Standard option enabled. However when I want to do an online refund it doesn't show an 'Refund' button but only 'Offline refund'. Is it actually possible to create an online refund with PayPal Standard? 回答1: Impossible with Paypal standard, you must overload the paypal standard model to implement the refund method, or you can install a module. 回答2: As luigifab said, that functionality isn't part of the Paypal

Fatal error: Cannot use assign-op operators with overloaded objects nor string offsets [duplicate]

本秂侑毒 提交于 2019-12-01 21:33:56
问题 This question already has answers here : php - add string at offset? (2 answers) Closed 3 days ago . I am getting following error Fatal error: Cannot use assign-op operators with overloaded objects nor string offsets in app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Price.php on line 126 On my server when try to filter product in product grid. I am not changed any core files at all, but it showing the core file line 126. I googled for this issue, no proper result. Is there

Fatal error: Cannot use assign-op operators with overloaded objects nor string offsets

心不动则不痛 提交于 2019-12-01 19:28:36
I am getting following error Fatal error: Cannot use assign-op operators with overloaded objects nor string offsets in app/code/core/Mage/Adminhtml/Block/Widget/Grid/Column/Filter/Price.php on line 126 On my server when try to filter product in product grid. I am not changed any core files at all, but it showing the core file line 126. I googled for this issue, no proper result. Is there anybody who got this problem and solved it.? I am not sure but is this a PHP Version problem? Because same application working fine on localhost, In my local machine I have PHP 5.5.18 and in server its 5.3.

conflicting two magento extension

瘦欲@ 提交于 2019-12-01 12:54:23
I have two same extension but both are using for a different-different purpose. Extension A Config.xml <config> <modules> <Mageworks_Fee> <version>0.1.5</version> </Mageworks_Fee> </modules> <global> <sales> <quote> <totals> <fee> <class>fee/sales_quote_address_total_fee</class> <renderer>fee/checkout_totals_fee</renderer> <admin_renderer>fee/adminhtml_sales_order_create_totals_fee</admin_renderer> </fee> </totals> </quote> <order_invoice> <totals> <fee> <class>fee/sales_order_total_invoice_fee</class> </fee> </totals> </order_invoice> <order_creditmemo> <totals> <fee> <class>fee/sales_order

Magento adding attribut using install script

泪湿孤枕 提交于 2019-12-01 11:25:37
i followed some tutorials an done this code this is install.0.1.0.php : $installer = $this; $installer->startSetup(); $allowCP = array( 'group' => 'Prices', 'type' => 'text', 'attribute_set' => 'Default', 'backend' => '', 'frontend' => '', 'label' => 'Allow Custom Price', 'input' => 'select', 'option' => array( 'value' => array( 1 => 'Yes', 0 => 'No', )), 'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_GLOBAL, 'visible' => true, 'required' => false, 'user_defined' => true, 'default' => '1', 'searchable' => false, 'filterable' => true, 'comparable' => false, 'visible_on_front' =>

Magento adding attribut using install script

时光总嘲笑我的痴心妄想 提交于 2019-12-01 08:07:50
问题 i followed some tutorials an done this code this is install.0.1.0.php : $installer = $this; $installer->startSetup(); $allowCP = array( 'group' => 'Prices', 'type' => 'text', 'attribute_set' => 'Default', 'backend' => '', 'frontend' => '', 'label' => 'Allow Custom Price', 'input' => 'select', 'option' => array( 'value' => array( 1 => 'Yes', 0 => 'No', )), 'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_GLOBAL, 'visible' => true, 'required' => false, 'user_defined' => true,

SMS Integration with Magento API

筅森魡賤 提交于 2019-11-29 17:56:39
I am using Magento 1.8.1 and I want to integrate SMS with our store. I have an API URL of SMS but don't know how and where to put that URL in Magento. They provide me this code: <?php class sendsms { private $api_url; private $time; private $unicode; private $working_key; private $start; private $sender_id; public $api; public $wk; public $sid; public $to; /**function to set the working key * * @param string_type $wk:helps to change the working_key */ function setWorkingKey($wk) { $this->working_key=$wk; } /**function to set sender id * * @param string_type $sid:helps to change sender_id */