i’m installed module and i get this error if i want command setup:upgrade and compile first problem with setup:upgrade i get this error Column definition "customer_group_id" and reference column definition "customer_group_id" are different in tables "mgz_checkoutsuccesspage_rule_customer_group" and "customer_group" and number 2 error if i make this command setup:di:compile Fatal error: […]
Magento
Does anyone know if it is possible to change the order of the images already imported through a CSV template? Example this is the loaded order I want to alternate it by this order I appreciate the help for this issue
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 […]
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 […]