Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
Improve this question
I like to know is there any way to delete a customer from back end side in zen cart.
I all ways delete a customer details from data base manually.
Go to admin site click customers tab in the menu
and then whatever you want to delete or edit.
Hopefully this video helps: http://www.blogadr.com/tutorials/free-zen-cart-tutorial/zencart_admin_customers.html
According to the video there should be a section that allows you manage customers in the admin side.
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 months ago.
Improve this question
We have an external table of our website users that we would like to update when the user changes something in their profile. Currently, we sync the databases, but now we need faster transfer.
I've searched stack and google, and can't find anything?
Any help or links is appreciated.
You can do that with a hook:
https://developer.wordpress.org/reference/hooks/profile_update/
add_action('profile_update', 'force_sync_profile');
function force_sync_profile($userId, $oldUserData) {
$newData = get_userdata($userId);
// Call an API or something to sync new/old data
}
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
Is there any way to make a record that contains the data admin can not be deleted? Anyone who knows please help.
1) you can set status for db field for avoiding permanent delete.
2) use access control to prevent admin from deleting by having a secret super admin.
3) disable delete feature from admin panel.
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
Hi I have created a new website, store and store view through System->Manage Store. I just want to know how to create an admin user for this new website/store who will not be able to manage any other store created by the super admin.
Please check the following link:
http://www.magentocommerce.com/knowledge-base/entry/configuring-admin-users
You will require to create a separate role, in which you can specify what sections can the role access.
That option is only available for Magento Enterprise
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
Improve this question
i searched a lot to get an idea about deleting product images in Zen-cart, but not getting the ay, can anyone guide me to remove images for any product in zen cart?
Thanks in advance
Very simple, go to edit product, you will find "Delete Image?". Select "YES" and click on preview and "update" in next page.
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
I'm experimenting with virtuemart, I have the default install without changes, but the add to cart button only shows in sub-categories (eg. Powertools > Outdoor tools).
I changed the "Category Browse Page" and "Category Flypage" to be the same for both, but it does not work.
Is there a setting I have to change to get it to show? Please remember this is all default settings.
I discovered a "fix". You need to have no options for the item (eg. no differenc sizes, colours, etc) in order to display the add to card on the list page.