Installation and configuring plug-in Auto Registration of Guests You can install and configure plugin very easy. After installing you should select how you want to register Guests - Manual or Automatic (4 modes): Customer will get e-mail with password Automatic mode - plugin will register Guests after payment/place the order Manual mode - administrator do it manually (the store's owner can register Guests manually (press the button)) Manual mode - guest do it manually (Guest do it manually on order completed page) If you have a large table GenericAttribute you should create the index This is a SQL Server index
- automatic after payment (the plugin will do it after 60 minutes automatically)
- automatically after the order was created (the plugin will do it after 60 minutes automatically)
- administrator do it manually (The store's owner can press the button "Register Customer" from the order in nop admin mode)
- guest do it manually (Guest do it manually on order completed page)
CREATE NONCLUSTERED INDEX [IX_GenericAttribute_Key_and_KeyGroup] ON [dbo].[GenericAttribute]
(
[Key] ASC,
[KeyGroup] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY]
GO