I want to change the background-color from the input field, that works. Also for the .search-autocomplete. But if I go onmousover or click at mobile it will be shown with white background and I can’t find this parameter. Could you help? What I did. –> _extended.less input[type="text"], textarea { background-color […]
Magento
I have created custom column in sales_order_grid table if I save data in that column not saved but it was saved in sales_order table
I have faced an issue below code i have removed the below code then working filter fine but the page reload. protected function _construct() { parent::_construct(); $this->setId(‘bliss_grid_products’); $this->setDefaultSort(‘entity_id’); $this->setDefaultDir(‘ASC’); $this->setUseAjax(true); if ($this->getRequest()->getParam(‘entity_id’)) { $this->setDefaultFilter([‘in_products’ => 1]); } else { $this->setDefaultFilter([‘in_products’ => 0]); } $this->setSaveParametersInSession(true); }
I need help with this code I’m writing for GNRE in Espirito Santo, using the SOAP standard (version 1.2), I’m programming in PHP (version 7.2.24), and it’s giving this error: SOAP Error: SOAP-ERROR: Parsing WSDL : Couldn’t load from ‘http://schemas.xmlsoap.org/wsdl/’ : failed to load external entity “http://schemas.xmlsoap.org/wsdl/” follows the code: […]
Magento 2.4.7-p3 My store deletes the cache (Varnish or any other 3rd party cache) multiple times a day by itself, it has to be rebuild afterwards. Any idea where and how to start looking for that type of problem? Since I do not know when it happens, I can not […]
I’m new to Magento and Varnish. I have an Ubuntu24 on Vbox. Magento 2.4.7-p3 with sample data is up and running. Varnish is activated in Magento Backend. I’m using the standard magento optimized vcl from varnish. I have set the standard vhost port to 8080 The shop is running on […]
I have created setup patch data using the attribute please check the below code and block using add custom tab moduleDataSetup = $moduleDataSetup; $this->customerSetupFactory = $customerSetupFactory; $this->eavConfig = $eavConfig; } public function apply() { $this->moduleDataSetup->getConnection()->startSetup(); $customerSetup = $this->customerSetupFactory->create([‘setup’ => $this->moduleDataSetup]); // Add global_customer_price attribute $customerSetup->addAttribute(Customer::ENTITY, ‘global_customer_price’, [ ‘type’ => ‘varchar’, […]
I’m facing a critical issue with order creation in my Magento2.4.6 store. Sometimes, when customers place new orders using credit limit payment method, instead of creating a new order, the products are getting merged into their old completed orders. For example: Customer has an old order containing products A, B, […]