How to pass Custom template variables to footer template in magento 2
I want pass custom template variables to footer template. In which file i need make changes to pass my customer template variables to footer template. Thanks.
Auto Added by WPeMatico
I want pass custom template variables to footer template. In which file i need make changes to pass my customer template variables to footer template. Thanks.
I want to add unsubscribe link in footer of all my email templates such as order confirmation, order delivered, order cancelled. I tried all the solutions from the internet. but nothing works fine. How can i add unsubscription link to… Read More »How to add unsubscribe link in all the emails in magneto 2
I’m trying to get some of the values from the collection, below is my code. <?php public function RentalPartnerRevenue() { $filter = $this->request->getParam(‘filter’); $operator_id = $this->request->getParam(‘operator_id’); try{ $completecollection1 = $this->_orderCollectionFactory->create() ->addAttributeToSelect(‘*’); if(isset($filter) && $filter == ‘totalrevenue’){ //$completecollection1->addAttributeToSelect(‘grand_total’)->getColumnValues(‘grand_total’); $completecollection1->getSelect()->joinLeft( ‘rider_detail as… Read More »how to get SUM of value from the collection?
Before the weekend we notice an issue when we tried to remove a category from one of our websites. I did a reindex and the category is still there. tried to clear the cache also from my browser and tried… Read More »Magento 2.4.3 – Category and product issue
I am running the following command php -d memory_limit=-1 bin/magento indexer:reindex foo When running it on my table, my terminal goes haywire showing the following: Memory used: 706M Memory used: 706M Memory used: 706M Memory used: 706M Memory used: 706M… Read More »How do I check the progress of a reindex with status ‘processing’?
Im customizing the checkout of Magento and having some issue in html templates. I copy the cart-items.html from the magento-checkout module in my theme but, when i change the template structure the js stop running and no one error in… Read More »Customize Checkout Html Templates
I am fairly new to Magento. I have a module called WebForms. I’d like to use them as a type Catalog Customizable Option instead: My question is, is it possible to connect these modules in a simple way? Maybe as… Read More »Adding other module as a customizable option in Catalog . (Programatically or not)
I have this demo Magento 2 store (ver. 2.4.4) built on a Debian server and for some reason I’m not receiving emails after I make an order. In Stores > Configuration > Sales > Sales Emails I have this: My… Read More »Magento 2 – Not Receiving Email After Order
When I run “composer install or “composer update” command from my magento 2.4.5 root folder I am getting this error. – Installing laminas/laminas-dependency-plugin (2.4.0): Extracting archive PHP Fatal error: Uncaught Error: Class “MagentoFrameworkComponentComponentRegistrar” not found in /public_html/setup/src/Magento/Setup/registration.php:9 Stack trace: #0… Read More »Class “MagentoFrameworkComponentComponentRegistrar” not found in setup/src/Magento/Setup/registration.php:9
I have my image sizes set in my app/design/frontend/My_Design/My_Theme/etc/view.xml but for some reason, the values for mini_cart_product_thumbnail are not being used in the minicart. <view xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xsi:noNamespaceSchemaLocation=”urn:magento:framework:Config/etc/view.xsd”> <media> <images module=”Magento_Catalog”> … <image id=”mini_cart_product_thumbnail” type=”thumbnail”> <width>76</width> <height>76</height> </image> … </images> </media>… Read More »mini_cart_product_thumbnail not sizing to values set in etc/view.xml