Solution: for all category pages /vendor/magento/module-catalog/view/frontend/layout/catalog_category_view.xml. add line close to bottom of fime Solution: for individual pages go to admin->content- > pages ->design section and paste in the xml <referenceBlock name=”page.main.title” remove=”true” />
Magento2 Server reached max_children setting
WARNING: [pool staging_4pens_com] server reached max_children setting (5), consider raising it Reaching this limit would be caused by long-running PHP processes, causing additional PHP processes from additional site traffic to begin to stack and queue which can lead to increased site load time, and eventually result in timeouts. Solution: increase…
Magento2 Created at Date sort column/ filter on product admin grid
Solution: We can add the below code on this file :vendor/magento/module-catalog/view/adminhtml/ui_component/product_listing.xml
Magento2 Web Setup Wizard stuck after failed rollback
Solution: Try running the following 2 commands from the magento root directory as the magento user: mv var /.update_error.flagvar/.tmp_update_error.flagvar/.update_queue.jsonvar/.tmp_update_queue.jsonThis will remove the flag that causes the Web Setup Wizard to stay stuck in this state. or manually rename these files, .update_queue.json, .tmp_update_queue.json
magento2 Recaptcha problem
reCaptcha V3 “You cannot proceed with …. your reCaptcha reputation is too low” {“0”:”Warning: file_get_contents(): https:\/\/ wrapper is disabled in the server configuration by allow_url_fopen=0 in \/home\ Solution: Edit the php.ini file and enable using below code allow_url_fopen = 1 //0 for Off and 1 for On Flagallow_url_include = 1 //0 for Off…
search improvement in magento2
AND or OR? Magento’s Search Types and Search Operators, In Magento 1.9x there is a way choose alternative search method for the on-site search, how would achieve an ‘AND’ operator for searches in Magento 2? Here is the solution, (as always recommended backup you system and db prior to making any file…