I’m trying to show the logo in /sales/order/print page from the frontend orders account dashboard like this: sales_order_print.xml <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd"> <update handle="sales_order_print_renderers" /> <update handle="sales_order_item_price"/> <update handle="print" /> <body> <referenceContainer name="content"> <block class="MagentoFrameworkViewElementTemplate" name="invoice.logo" template="Magento_Theme::invoice-logo.phtml" before="-" /> </referenceContainer> <move element="page.main.title" destination="content" after="invoice.logo"/> </body> </page> In the above code, I’m […]
Magento
How can I remove base currency conversion from the table rate shipping method? The shipping price needs to be set without converting base currency from a CSV file. As the base currency, I have set Kuwaiti dinar, and Saudi Riyal as the default display currency. In the current situation, the […]
I am new to Magento development and finding the process a little overwhelming. I am a Javascript developer without any PHP experience. To help me get started I decided to Vue Storefront’s SDKs (using NextJS). So far it’s working great. I would like to extend my store by creating an […]
I have been trying to add the multi-select option in the inline grid edit of the customer grid for a customer attribute. However, I could find samples for adding multi-select options for inline editing in Magento vendor files. I have tried to add that by referring to this link from […]
I’m facing an issue while using the Magento Commerce API. I’m trying to make a GET request to the /V1/orders endpoint with a filter on the created_at field to retrieve orders created after a specific date and time. However, even though I receive totalPage = 3 in the response, the […]
I want to render a block(phtml file) that contains a logo in <a> tag before the page-title-wrapper div. I wanted to do this in /sales/order/print/ page. What I tried in my sales_order_print.xml file: <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd"> <update handle="sales_order_print_renderers" /> <update handle="sales_order_item_price"/> <update handle="print" /> <body> <referenceContainer name="page.main.title"> <block class="MagentoFrameworkViewElementTemplate" name="custom.order.print.logo" […]
I have magento2 with different admins. I don’t want my admins to edit any customer details. They should only view. My different admin can place an order by clicking on “Login as Customer” Button. So they can only add “new shipping/billing” address. but they should not be able to update […]
In Headless magento project, there is condition written by previous developers in javascript if there is a value assigned for attribute : is_outlet_available , than some text should display, otherwise text should not display in product view page products( filter: { is_outlet_available: { in: [$key] }, sku: { in: [$sku] […]
I have done some custom price calculation on product page using jQuery and I want to add the calculated price to the product during addtocart event. Any help would be appreciated.