Using jQuery and domReady in a static block or CMS page (Magento 2)

Using jQuery in a Magento 2 static block or CMS page can be tricky, a special syntax is required. Use the following code to add jQuery when all the content was loaded:

Of course, you can skip listening to…

Pager missing after updating to Magento 2.4.3?

Sometimes after updating to Magento 2.4.3 the pager on the category page goes missing. This happens when you are overwriting templates/product/list.phtml in your theme. Just open that file and replace

with

This should solve the problem, your pager…

Show address data (like company, name) on registration form (Magento 2)

By default, the Magento 2 registration form does not show address data such as the company, name or street. To change that, simply create customer_account_create.xml in the folder app/design/Your Vendor/Your Theme/Magento_Customer/layout and add the following code:

Now just clear…