I am having a feed which is run every night with crons. My instance is magento 2.4.6-p2. I am using this function to get store id: public function execute() { foreach ($this->storeManager->getStores() as $store) { // Only generate feeds when feed notification is active if ($this->coreConfig->isDailyFeedActive($store->getId())) { $this->logger->debug('MyModule: Nightly Feeds […]
Magento
This might feel a lengthy question but actually it is not big. I have just added some functions that I followed to try finding the actual code responsible for loading the product collection on category pages. I am trying to look for the code that is responsible for fetching the […]
I have created custom email template and calling order item in it. In my site I’m adding or editing the specific order Item and I need need to send email for that item only. It was working fine in the Magento 2.4.3. Now I have upgraded to 2.4.6-p1 and it’s […]
I have my custom theme in magento and in that theme in header the logo is uploaded. The logo is already uploaded there with correct path but still magento default logo is displaying after upgrading to 2.4.6.I know it is beacuse of something which is wrong in my custom theme […]
In my magento2.4.6 am facing below error – “Error: Class “Zend_Http_Response” not found in C:xampphtdocswffappcodeAmastyInvisibleCaptchaModelCaptcha.php:100″ – $responseBody = Zend_Http_Response::extractBody($googleResponse); <?php declare(strict_types=1); namespace AmastyInvisibleCaptchaModel; use AmastyBaseModelGetCustomerIp; use AmastyInvisibleCaptchaModelConfigSourceCaptchaVersion; use MagentoCustomerModelGroup; use MagentoCustomerModelSession; use MagentoFrameworkHTTPAdapterCurl; use MagentoFrameworkPhrase; use Zend_Http_Response; class Captcha { /** * Google URL for checking captcha response */ const […]
We have use Magento:2.4.3-p1 version , my issue is new cron generating but “pending” status. After attempting to update product attributes in bulk I have a “stuck” system message of [Task “Update attributes for 1 selected products”: 0 item(s) have been scheduled for update.] This has been in “Pending, in […]
I am getting this error on my homepage after upgrading my Magento version from 2.4.0 to 2.4.6. Error: Cannot instantiate abstract class MagentoFrameworkDataCollectionAbstractResource in /home/websites/hollywoo/dev/public_html/vendor/magento/framework/ObjectManager/Factory/AbstractFactory.php:121 Stack trace: #0 /home/websites/hollywoo/dev/public_html/vendor/magento/framework/ObjectManager/Factory/Compiled.php(108): MagentoFrameworkObjectManagerFactoryAbstractFactory->createObject() #1 /home/websites/hollywoo/dev/public_html/vendor/magento/framework/ObjectManager/Factory/Compiled.php(150): MagentoFrameworkObjectManagerFactoryCompiled->create() #2 /home/websites/hollywoo/dev/public_html/vendor/magento/framework/ObjectManager/Factory/Compiled.php(79): MagentoFrameworkObjectManagerFactoryCompiled->get() #3 /home/websites/hollywoo/dev/public_html/vendor/magento/framework/ObjectManager/ObjectManager.php(56): MagentoFrameworkObjectManagerFactoryCompiled->create() #4 /home/websites/hollywoo/dev/public_html/generated/code/Jes/BannerProductSlider/Model/SliderFactory.php(43): MagentoFrameworkObjectManagerObjectManager->create() #5 /home/websites/hollywoo/dev/public_html/app/code/Jes/BannerProductSlider/Helper/Data.php(193): JesBannerProductSliderModelSliderFactory->create() #6 /home/websites/hollywoo/dev/public_html/app/code/Jes/DynamicPages/Block/Pages/HomePage.php(110): JesBannerProductSliderHelperData->getActiveSliders() #7 /home/websites/hollywoo/dev/public_html/app/code/Jes/DynamicPages/view/frontend/templates/bannerslider.phtml(27): […]
i have problem with magento Version 2.3.4 my problem if i want add products i cant i get this error Although it was working normally before I deleted all the add-ons that I had installed in order to check the matter again, but they also did not work {"0":"Class Webkul\Walletsystem\Model\Config\Source\ProductattrOptions […]
I wanted to fetch all the products from a Magento store using the REST API. Can anyone help me with a curl request? Thanks