This is an image from a product page. Notice that there’s a semi-transparent overlay at each side of the image, each containing the left and right arrows. The overlay should be eliminated, but the arrows maintained. Can that be done? Please note: while the cursor is over the image is […]
Yearly Archives: 2022
When I create a simple product with a single image it takes 17 seconds to save, I have changed the indexing to schedule and removed all extensions and themes. On debugging further I can see that the delay is caused by the media(media/catalog/product) I have 3000 products where my product […]
I am looking to implement the checkout using the API as documented here: https://devdocs.magento.com/guides/v2.4/rest/tutorials/orders/order-intro.html I can do the whole checkout using the API if I use a simple payment method such as “Check / Money order”. However, if I use an advanced third-party payment integration that has its own payment […]
I want to make a .iso file from my modified Feren OS so that I can share this with my Friend and put it on my Laptop. Is there a way to do it?
I have Markdown content that looks like this (A) some text (A) some more text (A) and so on I’m using pandoc to render this to PDF (pandoc -o test.pdf test.md). This produces content that turns the (A)‘s into an ordered list, with labels (A), (B), (C). I just want […]
I’m trying to connect 3 subnets on 3 different NIC’s together. In the schematic below I tried to show the connection diagram. I’m going to connect an android phone via USB to a RPi4 and tether it’s 4G/5G connection over this connection. On the RPi4 is running a DHCP server […]
I am trying to set up pfSense as my primary Internet router, replacing the provider router. Basic Internet connectivity works as it should: configure the external interface as a DHCP client, configure a DHCP server for the internal clients, configure NAT – all fine. However, I would also like to […]
When i try get temp order after buy product: protected function getTempOrder($customer) { $address = []; if(!empty($customer->getAddresses()) && $existingAddress = $customer->getAddresses()[0]) { $address['street'] = implode(', ', $existingAddress->getStreet()); $address['city'] = $existingAddress->getCity(); $address['country_id'] = $existingAddress->getCountryId(); $address['region'] = $existingAddress->getRegion(); $address['region_id'] = 1; $address['postcode'] = $existingAddress->getPostcode(); $address['telephone'] = $existingAddress->getTelephone(); $address['fax'] = $existingAddress->getFax(); } else […]