Magento 2: How to add an input text to customize a product

Magento 2: How to add an input text to customize a product

When you have products that need to be customized by a customer, you can easily create an input text to customize a product in product details using Magento out-of-the-box features.

In order to accomplish it you have to follow the next steps:

Go to Magento Backend and Edit a Product

Inside product options there is a tab called “Customizable Options”, click on “Add Option“.

Fill Out the Options

A new section will show up where you will be able to customize the custom option.

Add a title for the field and set Option Type as “Text > Field”.

Save and check

Click on “Save” product and check your product. Now you’ll see the new input for customize your product

This option also allows you to add an extra charge in case customers customize the product

If you have any question about how to setup customizable options we can help you with our Magento Consulting and Magento Development Services.

 

Magento 2: Sharing Same Admin Account

Magento 2: Sharing Admin Account

Sometimes it’s necessary for two or more users to share the same admin account and use it at the same time. As you know, Magento 2 will sign out the previous session to log in the new one. Sharing the same admin account is possible by changing the Magento configuration. To accomplish it you have to go to:

Stores -> Configuration -> Advanced -> Admin -> Security

 

You have to setup the option Admin Account Sharing to Yes and then click on “Save Config” button at the top right. That’s it, now you can share the account.

There are a plenty list of options to play with in order to customize your Magento site. We can help you in a wide range of configuration aspects. You can find more information in our Magento Consulting and Magento Development Services.

 

Magento 2: Customer Commands for Sysadmins and Developers

Magento 2: Customer Commands for Sysadmins and Developers

Magento 2 commands are a powerful tool and a fast way to manage our projects on our daily running. This is why we decided to create this module, extending the out-of-the-box Magento commands, providing to the user with helpful commands to manage customer accounts. This module is mainly aimed for sysadmins and devs who want to manage customer accounts by command line.

We use this extension on daily basis in order to speed up different tests and tasks we need to perform. It also works with custom attributes.

If you need help installing or customizing this extension or others we can help you with our Magento Consulting and Magento Development Services.

Installation

You need to install it using composer. Go to your web root directory and type:

<br />
composer require &quot;rapicart/customer-commands&quot;:&quot;@dev&quot;<br />

Then you need to run the next commands in order to enable the module:

<br />
php bin/magento module:enable Rapicart_CustomerCommands<br />
php bin/magento setup:upgrade<br />

Available commands

The next commands will allow you to manage customer accounts, addresses and customer groups.

For managing customers

<br />
php bin/magento customer:create #(Create or update a customer account)<br />
php bin/magento customer:delete #(Delete a customer account)<br />
php bin/magento customer:info #(Shows customer account details)<br />
php bin/magento customer:password:update #(Update password for a given customer)<br />

For managing customer addresses

<br />
php bin/magento customer:address:create #(Not implemented yet)<br />
php bin/magento customer:address:delete #(Delete a customer address)<br />
php bin/magento customer:address:list #(Displays the list of customer addresses)<br />

For managing customer groups

<br />
php bin/magento customer:group:create #(Create a customer group)<br />
php bin/magento customer:group:delete #(Delete a customer group)<br />
php bin/magento customer:group:list #(Displays the list of customer groups)