Questions tagged [e-commerce]

Electronic commerce, commonly known as e-commerce, eCommerce or e-comm, refers to the buying and selling of products or services over electronic systems such as the Internet.

Electronic commerce also includes the entire online process of developing, marketing, selling, delivering, servicing and paying for products and services.

Usually, is related with e-payment in-which money transfer is occurred electronically. The majority of systems need made using a .

It is directly related to some sub tags as

For more details, please visit Wikipedia.

5356 questions
30
votes
8 answers

How to remove index.php from URLs?

All of my URLs on my Magento installation require index.php in them, like: http://example.com/index.php/admin/ http://example.com/index.php/customer/account/login/ The problem is that the system by default links to URLs…
delwin
  • 830
  • 2
  • 10
  • 15
29
votes
8 answers

How to clear a Woocommerce cart

I am wondering how you can clear the contents of your cart on page load using woocommerce. I came accross how to add a clear cart button using by adding this in to functions.php add_action( 'init', 'woocommerce_clear_cart_url' ); function…
user1370288
  • 909
  • 3
  • 10
  • 20
28
votes
2 answers

Is there a standard e-commerce database schema to apply the discounts/taxes/gift vouchers to products?

A good and flexible database schema illustrating e-commerce products and their rates management is required.
suhair
  • 10,895
  • 11
  • 52
  • 63
24
votes
8 answers

How Do I Create Returning Page Setting with WorldPay?

The docs for WorldPay are really difficult for me to understand after reading and re-reading them for hours. (In fact, many of the docs gave me the wrong Live URL and I had to look around on the web and try things with trial/error in order to find…
Volomike
  • 23,743
  • 21
  • 113
  • 209
24
votes
11 answers

Good e-commerce platform for Java or .NET

I'm looking for an e-commerce "platform" in Java or .NET that can satisfy the following requirements: Product / Service Management Customer Account Management Shopping Cart Checkout / Merchant Integration Localization (especially for…
cliff.meyers
  • 17,666
  • 5
  • 51
  • 66
23
votes
6 answers

django-cart or Satchmo?

I'm looking to implement a very basic shopping cart. Satchmo seems to install a lot of applications and extra stuff that I don't need. I've heard others mention django-cart. Has anyone tried this Django app (django-cart)? Anything to watch for…
Ryan Duffield
  • 18,497
  • 6
  • 40
  • 40
23
votes
13 answers

Best way to generate order numbers for an online store?

Every order in my online store has a user-facing order number. I'm wondering the best way to generate them. Criteria include: Short Easy to say over the phone (e.g., "m" and "n" are ambiguous) Unique Checksum (overkill? Useful?) Edit: Doesn't…
Tom Lehman
  • 85,973
  • 71
  • 200
  • 272
22
votes
4 answers

Deciding between Umbraco and Orchard ASP.NET CMS

Now that both system's are built on ASP.NET MVC, does anyone have any experience dealing with both? Looking to set up a small business site for a friend, that will eventually have an online store. I've read a lot of posts, but nothing recent ( since…
Michael Armstrong
  • 371
  • 1
  • 5
  • 16
22
votes
3 answers

Does the Luhn algorithm work for all mainstream credit cards? (Discover, Visa, Mastercard, Amex)

Reference: Luhn Algorithm The Luhn Algorithm is a great way to quickly verify that the user typed their CC # in correctly. However, I am concerned that there may be a subset of mainstream credit cards that do not use Luhn-Algorithm-friendly…
Brian Webster
  • 30,033
  • 48
  • 152
  • 225
22
votes
9 answers

Enable template path hint in admin pages - Magento

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..
Damodaran
  • 10,882
  • 10
  • 60
  • 81
22
votes
14 answers

Magento 2 goes terribly slow (Developer mode)

Recently I started developing magento 2 projects. First I tried on Windows with xampp and it was a mess... every refresh page was a nightmare, about 30-40sec to load the page. I read about it, that Windows system files is so slow working with…
Marc Pont
  • 988
  • 2
  • 14
  • 34
22
votes
5 answers

woocommerce get attribute terms

In Woocommerce you can add global product attributes and terms. So for instance: Size (attribute) small (term) medium (term) large (term) This is product independent. You can then select from the pre defined attributes on a product. I need to get…
phantomdentist
  • 393
  • 1
  • 4
  • 9
20
votes
9 answers

PHP framework for building e-commerce site?

What web application framework based on php would be recommended to build an ecommerce site in? Are there an e-commerce specific frameworks that include payment processing, user accounts, etc? Thanks B
b20000
  • 995
  • 1
  • 12
  • 30
20
votes
1 answer

Order/Invoice/Payment database modeling

I am designing an e-commerce website that has the following scenario: A customer can purchase items and create an order. The order may have unknown fee that will be added after the customer pays the total amount of the items. That is, the customer…
322896
  • 956
  • 1
  • 9
  • 19
20
votes
3 answers

ASP.NET MVC eCommerce solutions (either commercial or open source)

Okay, so we have a development infrastructure that utilizes the following: 1. MVC 4 (Razor views) 2. Entity Framework 5 code first 3. Ninject What I'm looking for are eCommerce solutions that are as close as possible to our existing infrastructure…