magento Questions
6
Solved
When I upgraded Magento 2.4.3 to 2.4.4, I got a php8.1 deprecated functionality error.
PHP Fatal error: During inheritance of Countable: Uncaught Exception: Deprecated Functionality: Return type of...
6
Solved
How can I deny access to http://sub.mydomain.com/, but allow for (completely) http://sub.mydomain.com/test (or http://sub.mydomain.com/test/)
There is a magento back-end behind http://sub.mydomain...
8
Solved
I am using Magento eCommerce and I have modified my header.phtml via the Blank template. Code, this is my code but it shows blank.
<?php $cartQty = $this->getSummaryCount() ?>
<?php ...
5
Solved
is it possible to change type of a attribute after it has been created.
I want to change type of certain attribute to Multi select list. Type of these attribute is currently 'Dropdown'.
Actually W...
Zwick asked 21/10, 2011 at 12:42
4
Solved
Is there a reason why Magento has a _construct and a __construct method? Why does the additional _construct exist? Could anything achieved by having the extra _construct method not be achieved by j...
Denomination asked 2/1, 2012 at 23:22
6
Solved
I am new to magento 2 and I am creating extension for it.
But I am unable to see any js and css changes.
When i check on my source code my js file custom.js and css file custom.css is loaded proper...
Angel asked 1/2, 2016 at 13:7
3
Solved
To get store config data, I would use this code:
$data = Mage::getStoreConfig('my/path/whatever');
Now, how could I save to that node? I tried Alans suggestions from Override Magento Config, bu...
Insalivate asked 21/1, 2015 at 9:10
9
Solved
I'm configuring FEDEX shipping in Magento website. I got test account number, password, API key and meter number by login in test FEDEX account. I configured myself in Magento. Looks like everythin...
1
Solved
I'm trying to clone out the Magento 2 repo from github. I'm checking out the code with git from within the docker container since I'm using bin/cli .I've added an SSH key into my system also in the...
Killer asked 25/5, 2022 at 10:42
3
Solved
I'm having difficulties getting nginx to stop execution of PHP in an uploads directory on a magento install. I've tried many combinations of directives that should've sent a 503 or similar when *.p...
2
I'm running on magento 1.9.2.2 and when using Internet Explorer and Edge browsers I can't add anything to my cart. I click the add to cart button, get redirected to the cart page but then the "Your...
6
I want to sort a product collection that is already loaded by
$_productCollection = $this->getLoadedProductCollection();
The default sort in admin Magento is Style attribute
I want to sort ...
8
Solved
I have installed latest version of Megento 2, everything is working fine frontend, backend and functionality.
I have one issue with bin/magento setup:upgrade command, when I run this command in t...
Shepperd asked 26/11, 2015 at 10:12
2
I am importing some customers with :
$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$customerFactory = $objectManager->create('\Magento\Customer\Model\CustomerFactory'...
4
Ok, magento is new to me, and in fact ecommerce site development itself is new.
Magento seems to be extremely difficult to get to grips with - I have spent 3 days now going round I'm circle...
3
Please follow the code bellow, which is taken from my Magento Commerce theme:
extract from layout/page.xml
<block type="page/html_header" name="header" as="header">
<block type="page/te...
7
Solved
I have the following code:
$_productCollection = $this->getLoadedProductCollection();
foreach ($_productCollection as $_product)
{
if ($_product->_data['type_id'] == 'configurable')
{
.....
3
Solved
I am trying to set up tiered pricing for particular customer groups.
I have set up the group, assigned a customer to it and created a tier price in the product.
When I login using the account I c...
Graecize asked 20/1, 2012 at 15:53
7
Solved
I didn't use Magento 2.0.2.0 CE for about 1 month. After that I logged in to admin after, opened my account/Account information page, the title “It's time to change your password.” was shown. When ...
Otherdirected asked 3/8, 2016 at 12:11
7
Solved
How do I disable a particular notification email, for example the welcome email when a user creates an account?
Pleasant asked 4/7, 2011 at 12:10
6
Solved
I am trying to figure out how the linkage between attribute and attribute options, and product and attributes are made in Magento. Is there any reference to how this is working? or anyone give me a...
Hanuman asked 27/2, 2012 at 10:37
3
I have this code from Mukesh Chapagain: link here
$_product = Mage::getModel('catalog/product')->load(PRODUCT_ID);
$manufacturerName = $_product->getAttributeText('manufacturer');
$manufactu...
Flavorsome asked 25/10, 2011 at 13:43
5
I'm struggling with a Magento multi store install. The old setup was one Magento install with two sites / stores all pointing to the same folder. Now the client wants 2 independent websites so chan...
Polly asked 9/7, 2012 at 22:46
3
I try to create an order in the backend in Magento (1.5.1.0).
Here is some code:
// Get the product id stored in the optionValue of the widget
$productId = $order['customIdNumber'];
// Load t...
8
I am using Dropzonejs to add image upload functionality in a Form, as I have various other fields in form so I have set autoProcessQueue to false and Processing it on click on Submit button of Form...
Phalarope asked 27/6, 2014 at 6:54
© 2022 - 2025 — McMap. All rights reserved.