E-commerce Platforms
Message is added to queue, wait to xxxx
sometimes when you do something on Magento you can this message "Message is added to queue, wait to xx"
Example: "Message is added to queue, wait to get your coupons soon"
in order to start this manually, you can use the below command to get the list of queue
php bin/magento queue:consumers:list
Programmatically Assign Attribute to All Attribute Sets in Magento 2
I will put here the way to add an attribute group then assign an attribute into all attribute set with this group, please note I am using the dirty way to add it so you will need to follow the Dependency injection in your code to have the same result
Error after upgrade Magento into version 2.4.4 with PHP 8.1
After upgrading Magento to version 2.4.4 and PHP 8.1, you might have this error
Type Error occurred when creating object: Magento\Framework\Communication\Config\Data, Magento\Framework\Reflection\TypeProcessor::resolveFullyQualifiedClassName(): Argument #2 ($typeName) must be of type string, null given, called in /{magento_root}/vendor/magento/framework/Reflection/TypeProcessor.php on line 550
Get on Sales Product between dates Magento2
Referene Class is : {magento root}\vendor\magento\module-catalog-widget\Block\Product\ProductsList.php
Magento 2 – How to identify current page in phtml file?
Magento 2 – How to identify current page in phtml file?
$currentFullAction = $block->getRequest()->getFullActionName();
$catpages= array('catalog_category_view','catalog_product_view');
if(in_array($currentFullAction, $catpages)){
//Catalog page
}
Install Magento2.4.x using command line
Install Magento2.4.x using command line
You must use the command line to install Magento.
This example assumes that the Magento install directory is named magento2ee, the db-host is on the same machine (localhost), and that the db-name, db-user, and db-password are all magento:
Edit Magento Local Cache Storage Offline (Magento2)
Edit Magento Local Cache Storage Offline (Magento2)
Sometimes we might need to change something in the Local storage of Magento , the local storage is saved in this key ("mage-cache-storage")
I will put now an example to edit the selected shipping address in the checkout shipping section
Common WordPress Installation Steps
Common WordPress Installation Steps
-
Install WordPress
-
Install the Theme => Create Child theme then activate it
-
Protect the website by Basic Authentication while the website under construction
-
do all your modification
-
you can now change the theme name into any name 'xxx' then modify the child them to put 'xxx' as parent theme
-
Install some important plugins
Open WooCommerce Rest API by the browser
It is very nice to be able to see how we can get the data by the API, in WooCommerce there is a possibility to do that
first we need
- consumer_key
- consumer_secret
once you get those values you can use this link to get the list of products
https://{www.example.com}/wc-api/v3/products/?consumer_key={consumer_key}&consumer_secret={&consumer_secret}
or you can use the new API
Magento 2 search results relevance with elasticsearch?
Magento 2.3 still use "OR" logic for mysql and elasticsearch. Plus "should" conditions (query to ES) are wrong. That's why relevance almost same. But ES significantly improve performance of search and catalog (layered navigation).
you have to set AND operator in your elastic search json queries, Override the module-elasticsearch/SearchAdapter/Query/Builder/Match.php. file in your custom module and then The code you have to edit in the build function in line no 75