Skip to content

magento man

newsletter new subscriber

I want to use a newsletter subcriber that a customer can add his e-mail to the newsletter_subscriber table. I use the following code: <form class=”form subscribe” method=”post” action=”/newsletter/subscriber/new/” > <div class=”form_search”> <div class=”container”> <div class=”row”> <div class=”col-md-4 col-sm-12 col-xs-12 wp-form”>… Read More »newsletter new subscriber

Contabo 1 Year Review

So i signedup a few clients who had outgrown shared hosting on contabo and its been about an year now and while I had everything good to say… | Read the rest of https://www.webhostingtalk.com/showthread.php?t=1890577&goto=newpost

encountered an issue where the modifications made to the style-m.css and style-l.css files are not being reflected on the website

After the installation of the Martfury Magento theme on my server, we attempted to make changes to these two files but were unable to locate them within the theme directory. I found these files in, /pub/static/frontend/MageBig/martfury_layout01/en_US/css/styles-m.css /pub/static/frontend/MageBig/martfury_layout01/en_US/css/styles-l.css Unfortunately, the modifications… Read More »encountered an issue where the modifications made to the style-m.css and style-l.css files are not being reflected on the website

Magento 2: Quote is null in collect() totals function immediately after a successful order has been placed?

So I am overriding collect() using etc/sales.xml <?xml version=”1.0″?> <config xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xsi:noNamespaceSchemaLocation=”urn:magento:module:Magento_Sales:etc/sales.xsd”> <section name=”quote”> <group name=”totals”> <item name=”somediscount” instance=”VendorModuleModelTotalQuoteTotalsWithBonusProducts” sort_order=”480″/> </group> </section> </config> Having placed an order, from the success page, I immediately go to a category page and add… Read More »Magento 2: Quote is null in collect() totals function immediately after a successful order has been placed?

Hot to create plugin for savePaymentInformationAndPlaceOrder method

This method is calling at checkout step but with plugin using after method it’s not calling, core method is calling. etc/di.xml <type name=”MagentoCheckoutModelPaymentInformationManagement”> <plugin name=”k365_payemnt_management_plugin” type=”K365CheckoutPluginModelPaymentInfoManagement” /> </type> PaymentInfoManagement.php <?php namespace K365CheckoutPluginModel; use MagentoCheckoutModelPaymentInformationManagement; class PaymentInfoManagement { public function afterSavePaymentInformationAndPlaceOrder(… Read More »Hot to create plugin for savePaymentInformationAndPlaceOrder method