Wprowadzone przez Kornel Kosoń

5 simple questions that will urge your clients to have a conversation

Being an online vendor, you may not always have the possibility to contact your customers directly. Hence -the support tickets, online chat, customer reviews, forums, and telephone orders, which are probably the only way to get feedback from the client. Unfortunately, most of them do not always give a sincere opinion about completed purchases, and […]

Removing Clients from Magento database

After tests are finished, it is good to clean database with any unnecessary accounts. Below commands should remove unliked writings from the customer’s charts. 1 2 3 4 5 6 7 8 9 10 11 12 TRUNCATE TABLE `customer_address_entity`; TRUNCATE TABLE `customer_address_entity_datetime`; TRUNCATE TABLE `customer_address_entity_decimal`; TRUNCATE TABLE `customer_address_entity_int`; TRUNCATE TABLE `customer_address_entity_text`; TRUNCATE TABLE `customer_address_entity_varchar`; TRUNCATE […]