źródło
źródło
Jeśli chcesz dodać nowe pole, na koncie klienta musisz zastąpić plik register.phtml w niestandardowym motywie.
Utwórz niestandardowy motyw, a następnie utwórz register.phtml w następującej ścieżce
app / design / frontend / vendor / theme / Magento_Customer / templates / form / register.phtml
Następnie skopiuj kody z modułu klient / widok / interfejs / szablony / formularz / register.phtml i wklej do utworzonego pliku.
Następnie dodaj własne pole :
<div class="field required">
<label for="custom_field" class="label"><span><?= __('CustomField') ?></span></label>
<div class="control">
<input type="text" name="custom_field" id="custom_field" value="<?= $block->escapeHtml($block->getFormData()->getCustomField()) ?>" title="<?= __('CustomField') ?>" class="input-text" data-validate="{required:true, 'validate-phoneStrict':true}">
</div>
</div>
Zanim to zrobisz, musisz utworzyć atrybut klienta dla swojego pola niestandardowego do przechowywania bazy danych.
Utwórz atrybut klienta:
Aby to zrobić, musisz utworzyć moduł niestandardowy po utworzeniu modułu niestandardowego
Utwórz plik InstallData.php w następującej ścieżce Vendor \ Module \ Setup
InstallData.php
W poniższym kodzie dodałem atrybut custom_field .
<?php
/**
* Copyright © 2016 Magento. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Vendor\Module\Setup;
use Magento\Customer\Setup\CustomerSetupFactory;
use Magento\Customer\Model\Customer;
use Magento\Eav\Model\Entity\Attribute\Set as AttributeSet;
use Magento\Eav\Model\Entity\Attribute\SetFactory as AttributeSetFactory;
use Magento\Framework\Setup\InstallDataInterface;
use Magento\Framework\Setup\ModuleContextInterface;
use Magento\Framework\Setup\ModuleDataSetupInterface;
/**
* Install data
* @codeCoverageIgnore
*/
class InstallData implements InstallDataInterface
{
/**
* CustomerSetupFactory
* @var CustomerSetupFactory
*/
protected $customerSetupFactory;
/**
* $attributeSetFactory
* @var AttributeSetFactory
*/
private $attributeSetFactory;
/**
* initiate object
* @param CustomerSetupFactory $customerSetupFactory
* @param AttributeSetFactory $attributeSetFactory
*/
public function __construct(
CustomerSetupFactory $customerSetupFactory,
AttributeSetFactory $attributeSetFactory
)
{
$this->customerSetupFactory = $customerSetupFactory;
$this->attributeSetFactory = $attributeSetFactory;
}
/**
* install data method
* @param ModuleDataSetupInterface $setup
* @param ModuleContextInterface $context
*/
public function install(ModuleDataSetupInterface $setup, ModuleContextInterface $context)
{
/** @var CustomerSetup $customerSetup */
$customerSetup = $this->customerSetupFactory->create(['setup' => $setup]);
$customerEntity = $customerSetup->getEavConfig()->getEntityType('customer');
$attributeSetId = $customerEntity->getDefaultAttributeSetId();
/** @var $attributeSet AttributeSet */
$attributeSet = $this->attributeSetFactory->create();
$attributeGroupId = $attributeSet->getDefaultGroupId($attributeSetId);
/**
* customer registration form default field mobile number
*/
$customerSetup->addAttribute(Customer::ENTITY, 'custom_field', [
'type' => 'varchar',
'label' => 'Custom Field',
'input' => 'text',
'required' => true,
'visible' => true,
'user_defined' => true,
'sort_order' => 1000,
'position' => 1000,
'system' => 0,
]);
//add attribute to attribute set
$attribute = $customerSetup->getEavConfig()->getAttribute(Customer::ENTITY, 'mobile_number')
->addData([
'attribute_set_id' => $attributeSetId,
'attribute_group_id' => $attributeGroupId,
'used_in_forms' => ['adminhtml_customer', 'customer_account_create'],
]);
$attribute->save();
}
}
Następnie uruchom poniższe polecenie:
php bin/magento setup:upgrade
php bin/magento setup:static-content:deploy
php bin/magento cache:clean
Zobaczysz swoje niestandardowe wypełnione w formularzu rejestracyjnym.
Daj mi znać, jeśli masz problem.
Musisz utworzyć moduł, a oto
installData.php
:Spowoduje to utworzenie pola i będziesz mógł wywołać plik phtml (tj.: Dodatkowyinfocustomer.phtml).
Możesz pomóc z tych 2 adresów URL: IBNAB i SASHAS
Mam nadzieję, że ci to pomoże.
źródło
Możesz skorzystać z poniższego linku, aby utworzyć niestandardowe pola na stronie rejestracji w magento2-
https://github.com/jainmegha5395/custom-fields
Ten moduł niestandardowy doda niestandardowe pole i atrybut w formularzu rejestracyjnym. Atrybut pojawi się również w formularzu dodawania lub edycji klienta w Magento 2 Admin.
źródło
Możesz faktycznie pozwolić Magento 2 zapytać o pełny adres przy generowaniu konta, ustawiając pole show_address_fields na true w bloku rejestru - wtedy pyta także (poza innymi) o firmę.
źródło