In Magento 2.4.x, How to add date time field in Content -> Design -> Config-> HtmlHead. I tried below code it is showing in UI. but its not saving. <field name="message_valid_from"> <argument name="data" xsi:type="array"> <item name="config" xsi:type="array"> <item name="dataType" xsi:type="string">string</item> <item name="label" xsi:type="string" translate="true">Demo Message Valid From</item> <item name="formElement" xsi:type="string">date</item> […]
Magento
I’m arranging the product sheets of an ecommerce made with OpenMage and JAKESHARP WATERLEE theme. I need to change the background color of the theme, but if I go to JAKESHARP WATERLEE -> Theme setting I find only a dropdown menu with the words Waterlee settings -> enable ->yes and […]
I’m trying to add an extension on a shared server. When I look at the version of Composer at the root level for Magento 2.3.5, it tells me 2.0.8. When I view the free memory, it appears that I have more than 1G. The command I am running is: PHP […]
Is it possible to add custom tab in product page remains in custom module(with out changing template of theme). if it’s not possible help me in extending template of theme to adding custom tab in product page.
in Magento 1.8 daily 10 to 20 customers are automatically adding into our backend, We are not using any public form for customer Any Security patches recommended ?
I am using the below code to show custom data. file: checkout_cart_index.xml <?xml version="1.0"?> <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd"> <body> <referenceBlock name="checkout.cart.totals"> <arguments> <argument name="jsLayout" xsi:type="array"> <item name="components" xsi:type="array"> <item name="block-totals" xsi:type="array"> <item name="children" xsi:type="array"> <item name="basetotal" xsi:type="array"> <item name="component" xsi:type="string">Ishaq_CheckoutBaseTotal/js/view/checkout/cart/totals/basetotal</item> <item name="sortOrder" xsi:type="string">20</item> <item name="config" xsi:type="array"> <item name="template" xsi:type="string">Ishaq_CheckoutBaseTotal/checkout/cart/totals/basetotal</item> </item> </item> […]
I have a magento with multiple store. I created from the backoffice a bundle product with 2 options containing each one 3 selections of items This product appears as out of stock in my store frontend. So, I have been digging to check why the product do not appear as […]
I have removed tax block from all sales page by adding following code. layout file is Magento_Saleslayoutdefault.xml <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd"> <body> <referenceBlock name="tax" remove="true"/> </body> </page> Actual Results Expected Result How can I make subtotal shows including tax but tax line is removed by <referenceBlock name="tax" remove="true"/> ?
Is there a way to retrieve queued messages in Magento 2.4 code wise without the need to depend on what queue type is used (RabbitMq or db queue) for a specific topic? I know that when using the db queue system I can query the queue_message table, but I don’t […]