e-commerce

Paypal Express Checkout with ActiveMerchant as in Shopify

感情迁移 提交于 2019-12-04 19:00:34
I'm successfully using Paypal Express Checkout in a marketplace web app passing for every seller the three parameters to the PaypalExpressGateway (login, password and signature). So, I see that Shopify lets the seller set only the e-mail address of the Paypal account requesting to grant scott_api1.jadedpixel.com as the API Partner Username. I could't find anything in the ActiveMerchant doc on how I can do it...Someone can help? Thanks a lot, zetarun We use PayPals "Accelerated Boarding" method of setup for Express. They should send you an email after the first attempted sale with a link that

Amazon-like interface for selecting product size and color (i.e., click a little red box to select a red product, etc)

筅森魡賤 提交于 2019-12-04 17:09:42
In my online store, I want to implement an interface like Amazon's for selecting product size and color. I.e., instead of radio buttons for the different sizes / colors, the user should see a bunch of little boxes, each containing either a swatch of color or the name of a size. When the user clicks a box, the border should change to indicate it's selected. I'm using jQuery already, so I thought that the jQuery selectable widget would be a natural way to implement this. Unfortunately, it doesn't appear to give you control over the maximum number of items the user can select, and therefore I

Mysql database design for customer multiple addresses and default address

浪尽此生 提交于 2019-12-04 15:56:22
I am creating the database structure of an ecommerce with Mysql and INNODB engine. Point 1 : To create multiple addresses for the customers i have this tables Am I doing it in the correct way? And how should I store the default address (in which table)? Point 2 : I have another table called "Suppliers", should i just connect it to addresses with a "supplier_address" table or is there a better way? Point 3 : What about the tables cities and countries? Should i add something or is that ok? Maybe a field "district" in another table beetween the two? In my view you're making this far too complex.

What eCommerce application is this?

心不动则不痛 提交于 2019-12-04 14:27:44
问题 I have seen a lot of sites using this URL structure: webapp/wcs/stores/servlet webapp/wcs/stores/OrderShippingDisplayView What application is it? Lots of the competition of my client sites use this in their sites. 回答1: IBM WebSphere Commerce I suspect down-vote mob for this but here goes..The application is IBM WebSphere Commerce, a Java based application. Very powerful application, but obviously for enterprise companies, so that means your customer must be ready to shell out some big bucks.

How do i enable a third party payment gateway (not supported today by Shopify)

自古美人都是妖i 提交于 2019-12-04 13:20:49
In india, Shopify supports the following payment gateways: Citrus Payment Direc Pay PayU India PayU Paisa But we have an existing merchant account with Axis Bank. I have no idea where to configure my Axis Bank Payment Gateway with Shopify. So the question is: How do i configure my Axis Bank Payment Gateway with Shopify? Is it even possible to add other payment gateways, which asre not yet supported (not listed in their store admin panel) by Shopify? You can write a connector for that Gateway that follows the ActiveMerchant pattern. Once it is all tested and works, submit it to Shopify for

Custom Start Number for Order Numbers in Magento 1.5

故事扮演 提交于 2019-12-04 13:16:21
问题 How do I customise the starting number for orders, invoices etc in Magento 1.5? 回答1: From magento's forum: by LindyKyaw (Magento Team Member), changing start number (through sql query): There is a table in the database which stored increment id of order. It is called “eav_entity_store” table. You can check which entity type id belongs to which entity by looking at eav_entity_type table. You can run following query to update last increment id for the order. update eav_entity_store inner join

how to Commercially Licence Java Software? [closed]

纵然是瞬间 提交于 2019-12-04 13:16:18
I have written a Desktop based accounting software in Java. I want to put a key or licence or other kind of security to prevent redistribution of the software by the client. I just want to know how to go about it? The short answer: DRM doesn't stop piracy. It only hurts your paying customers. It doesn't really matter what you do. The best you can do is set up a simple product-key system, all that really does is makes your application not able to be copied quickly with no work, it doesn't really harm your paying customers but don't expect it to stop anyone who's determined not to pay for your

Database Design Brainstorming: Sale Prices

最后都变了- 提交于 2019-12-04 12:37:23
I need to create a database solution to provide product discounting. Current tables: Products Columns: ProductId, ProductTypeId, ReleaseDate ProductPrices Columns: ProductPriceId, ProductPriceTypeId (one product may have n prices), ProductId, Price We want to be able to discount by ProductId and/or ProductTypeId and/or ProductPriceTypeId and/or ReleaseDate. Example sales: Discount a single ProductId. Discount all products of a specified ProductTypeId and ProductPriceTypeId. Discount all products of a specified ProductTypeId with a ReleaseDate within the last month. The challenging aspect of #2

How to get woocommerce country select dropdown?

你离开我真会死。 提交于 2019-12-04 11:54:18
I want to display woocommerce countries list some where on website. how can i get the country list like this as image? Yes you can achieve this by having the following code where ever you want global $woocommerce; $countries_obj = new WC_Countries(); $countries = $countries_obj->__get('countries'); echo '<div id="my_custom_countries_field"><h2>' . __('Countries') . '</h2>'; woocommerce_form_field('my_country_field', array( 'type' => 'select', 'class' => array( 'chzn-drop' ), 'label' => __('Select a country'), 'placeholder' => __('Enter something'), 'options' => $countries ) ); echo '</div>'; I

Multi merchant payment system with PayPal

Deadly 提交于 2019-12-04 11:43:47
I need to build web application where users can sell goods. Each user should be able to get money directly on his PayPal account. Can you suggest which PayPal service/payment method (or other payment system) it is better/safely to use in this case? Thanks in advance This is easily set up (if I read your requirements correctly). You would have to create your part of the system, but that's obvious. The rest, specifically vendor payments, could be handled all by PayPal. PayPal could process the orders into individual accounts. You would simply have to use the same IPN notification file for each