i do all this command bin/magento setup:upgrade bin/magento setup:static-content:deploy -f bin/magento setup:di:compile bin/magento indexer:reindex bin/magento catalog:images:resize bin/magento cache:flush bin/magento cache:clean but images still not showing by the way the image on Featured Products block it is showing but on category page not showing here is category page here is Featured […]
Magento
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"> <div class="text_form">VERPASSEN SIE KEINE AKTION!</div> </div> <div class="col-md-8 col-sm-12 col-xs-12 […]
We developed a custom shipping module that displays shipping methods and the rates in Firecheckout page. The issue is the Shipping Method block in the firecheckout page doesn’t refresh if one changes the country and Province. I decided to add an event listener to Province dropdown to reload the page […]
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 made to these files have not been successfully reflected on […]
I am struggling in figuring out how to filter a drop down address field at checkout based on the selection of another one. We have created an address table containing region, city and post code. We want the customer to choose only the ones available in our table. We got […]
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( PaymentInformationManagement $subject, $result, $cartId, MagentoQuoteApiDataPaymentInterface $paymentMethod, MagentoQuoteApiDataAddressInterface $billingAddress = null […]
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 a product to the cart, effectively starting a new order/cart. […]