e-commerce

Good e-commerce platform for Java or .NET [closed]

半城伤御伤魂 提交于 2019-12-31 07:55:07
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 7 years ago . I'm looking for an e-commerce "platform" in Java or .NET that can satisfy the following requirements: Product / Service Management

What's the best jQuery product zoom plugin? [closed]

我是研究僧i 提交于 2019-12-30 04:57:14
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 8 years ago . I'm not much of a frontend guy, just learning jQuery, so any help is appreciated. What's the easiest, most stable jQuery zoom plugin?

How to get data for an entity (for example customer) from eav_attribute table to be shown in Customer Grid for admin

江枫思渺然 提交于 2019-12-29 07:51:48
问题 I have extended Magento’s customer information form to store an additional attribute for customer. Lets call it ‘customer_referrer_id’. I have a role ‘referrer ‘ who has access to customer grid and order grid only. But, I want to restrict a referrer to see only those customers in the grid who have the customer_referrer_id set as the referrer’s id who has logged in. Similarly for orders, the logged in referrer shall be able to see only those orders made by customers who have customer_referrer

How to get data for an entity (for example customer) from eav_attribute table to be shown in Customer Grid for admin

我是研究僧i 提交于 2019-12-29 07:51:25
问题 I have extended Magento’s customer information form to store an additional attribute for customer. Lets call it ‘customer_referrer_id’. I have a role ‘referrer ‘ who has access to customer grid and order grid only. But, I want to restrict a referrer to see only those customers in the grid who have the customer_referrer_id set as the referrer’s id who has logged in. Similarly for orders, the logged in referrer shall be able to see only those orders made by customers who have customer_referrer

Enable template path hint in admin pages - Magento

[亡魂溺海] 提交于 2019-12-28 08:02:51
问题 I want to enable template path hints in admin panel. I know how to do it for the front end, but for back end?? I actually want to edit the admin panel . Thanks in advance.. 回答1: You can do it by changing the database directly. If you have something like phpMyAdmin that is a good way to gain access. Enter this SQL. INSERT INTO `core_config_data` (`scope`, `scope_id`, `path`, `value`) VALUES ('websites', '0', 'dev/debug/template_hints', '1'); When you are done with path hints just delete the

Enable template path hint in admin pages - Magento

倾然丶 夕夏残阳落幕 提交于 2019-12-28 08:02:16
问题 I want to enable template path hints in admin panel. I know how to do it for the front end, but for back end?? I actually want to edit the admin panel . Thanks in advance.. 回答1: You can do it by changing the database directly. If you have something like phpMyAdmin that is a good way to gain access. Enter this SQL. INSERT INTO `core_config_data` (`scope`, `scope_id`, `path`, `value`) VALUES ('websites', '0', 'dev/debug/template_hints', '1'); When you are done with path hints just delete the

Magento: externally get relative URL's to categories

血红的双手。 提交于 2019-12-25 16:31:52
问题 I'm building a website, and installed Magento in the /shop/ subdirectory. I'd like to integrate the top categories into the menu of my non-Magento site, so you can navigate directly into the category. For this I need the category names and url's. Magento's categories are: Templates Color Theme General Other products I first needed to get a list of categories below the Templates top-level, so I wrote the following code. It's my first try with integrating with Magento, so be gentle :-) : <?php

Magento: externally get relative URL's to categories

折月煮酒 提交于 2019-12-25 16:31:15
问题 I'm building a website, and installed Magento in the /shop/ subdirectory. I'd like to integrate the top categories into the menu of my non-Magento site, so you can navigate directly into the category. For this I need the category names and url's. Magento's categories are: Templates Color Theme General Other products I first needed to get a list of categories below the Templates top-level, so I wrote the following code. It's my first try with integrating with Magento, so be gentle :-) : <?php

Disable order email in Django-oscar [closed]

妖精的绣舞 提交于 2019-12-25 07:05:41
问题 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 3 years ago . I built a simple e-commerce site with django-oscar. After a successful order placement an email is sent to client regardless of settings. I found the code located at oscar/apps/customer/utils.py:Dispatcher.dispatch_order_messages Is it possible to turn this behavior off? 回答1: You should fork the checkout app (as

Display item list in shopping cart using PHP

孤街醉人 提交于 2019-12-25 06:06:13
问题 With the foreach loop I'm trying to connect to my database and display in a list the products that have been added to the cart. Each product has a product ID which is correctly working and being stored in the session variable through the cart.php. I can't figure out how to connect to the database to display the information gathered about the product added - I also tried doing var_dump $SESSION['cart'] and its prints out null even after I use the "Add" button in cart.php . <div class="row">