How to save contact us form data in magento2
I am new to Magento 2. Can any one tell me how to save contact us form data into the database using events and observers, and display them in admin grid under the customer section in Magento 2?
I am new to Magento 2. Can any one tell me how to save contact us form data into the database using events and observers, and display them in admin grid under the customer section in Magento 2?
i have uploaded the files of the new theme bought from https://themeforest.net/user/codazon . But don't know where to move each individual files to the correct directories in order to add this new theme. Below is the files inside the new…
In catalog_product_view.xml in the parent theme there is this, just copied up to one line past the line Im trying to change: <?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> <referenceContainer name="content"> <block class="InfortisBaseBlockProductView" name="product-view-wrapper" template="product/view.phtml" before="-"> <container name="container_product_image_1" label="Product View, Image…
I'm Using Magento EE 2.2.2. I am trying to change the head title of wishlist "My Wish List" to "My Favourites". I am trying in XML wishlist_index_index.xml and added the below lines. <?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"> <head> <title>My Favourites</title>…
I am trying to copy the default home page from the demo shop with Luma theme. Using a demo store where the homepage looks like this: I have then copied the image over and on my clean installation of Magento…
I am using magento2. I have form with few "ui_components" fields, lets say: field1, field2 ,field3 and Save button How can I save values that was enter to all fields to core_config_data? regarding core_config_data I know that I have to…
I'm working on an theme based on blank theme (Magento 2.2.5) on developer mode as well as production mode the theme less files are not compiling using: rm -R pub/static/* php bin/magento setup:upgrade php bin/magento setup:static-content:deploy Images are loaded ok,…
Actually I know how to install extension which are are available in the stores. But my problem is how to install extension in Magento 2 which is installed locally and I have third party extension downloaded locally.
Grid xml column: <column name='actions' class='MyTestUiComponentListingColumnsFeedsAdvancedActions'> <argument name='data' xsi:type='array'> <item name='config' xsi:type='array'> <item name='component' xsi:type='string'>My_Test/js/grid/columns/actions</item> <item name='dataType' xsi:type='string'>text</item> <item name='label' xsi:type='string' translate='true'>Actions</item> <item name='sortOrder' xsi:type='number'>90</item> </item> </argument> </column> Actions.js define( [ 'jquery', 'underscore', 'mageUtils', 'uiRegistry', 'Magento_Ui/js/grid/columns/actions', 'Magento_Ui/js/modal/confirm' ], function ($,…
I'm tryng to create a custom category attribute using this guide but it doesn't work for me, this is the code that I'm using for the InstallData.php: use MagentoFrameworkSetupModuleContextInterface; use MagentoFrameworkSetupModuleDataSetupInterface; use MagentoFrameworkSetupInstallDataInterface; use MagentoEavSetupEavSetup; use MagentoEavSetupEavSetupFactory; class InstallData implements…