How to Get Dob Value by the customer id Magento 2?

You can retrieve the date of birth (dob) value by the customer id or email in Magento 2. Birthdate value needs to disable by default so you can’t able to see on the register page.

You can enable it from the Configuration setting to display the Dob field in the Customer Registration page.

Dob returns the date value as Y-m-d(1990-10-10) format. Continue reading “How to Get Dob Value by the customer id Magento 2?”

How to Get Gender Value by the Customer id Magento 2?

You can retrieve the customer Gender value in Magento 2 by email or customer id. Customer Gender is visible in the frontend only if the storefront allows it to display in front otherwise it will be set from the Customer Admin panel with the customer edit section.

If you have set customer gender for the customer data and want to fetch the selected value of the gender you can do it using the customer Metadata interface. Continue reading “How to Get Gender Value by the Customer id Magento 2?”

How to write text file and create directory in Magento 2 standard way?

You can write the content dynamically in text(.txt) file using Programmatic way with Magento 2 Standard approach.

Sometimes you need to create a directory and write a text file in the specific location of the system, You can add the content with interface Magento\Framework\Filesystem\Directory\WriteInterface. Continue reading “How to write text file and create directory in Magento 2 standard way?”