For the box that shows a random service, I'd recommend just making it sequential. When it randomly comes back to a service I've seen before, I assume that I've seen all the services.
For example, I got: YouTube, Tumblr, YouTube, YouTube, Twitter
Thanks for the feedback. Really appreciate it :D - It's now sequential! (yay~) We also modified it slightly to (hopefully) make the idea "you can sell _anything_ on _anything_" clearer. Any thoughts?
Your design overall is really nice. Me thinks this is either becoming a crowded space or there's just a lot of people doing similar projects for fun because the payment part is much easier (I did http://bngal.com as a side project for example).
BIG QUESTION: why PayPal for disbursing funds? With Stripe and BalancedPayments as options, I'm not sure why you'd use PayPal (other than possibly international reach).
Good question. PayPal was the easiest to use, for now, and works well. We'll likely add additional payout options, but no concrete plans or timing just yet.
You should consider modifying your pricing to be more in line with gumroad --- who appear to be your main competitor.
They charge 5 percent of the purchase price plus a $0.25 flat fee.
We see shopping cart providers as our competition and they usually charge setup and/or monthly fees, which we do not. Given the value and functionalities our product provides we feel our pricing is fair, but we're open to structuring it differently in the future depending on market feedback, like volume or product price based, or we introduce a premium account with a monthly fee but lower per transaction fees.
Great work, love the design. One thing I'd like to see before I sign up, though, is a sample "product / purchase page". When I needed something like this I ran to Gumroad because I had used them before (as a customer) and loved the experience.
This.
Basically all the emphasis is on the shorturl, which is a nice feature but the least important factor when selling products on an online store (hyperlinks are older than ecommerce, after all). There's nothing about what the buying process is like for the customer, how you support fulfilment, how easy it is to tweak prices/availability etc. - it's all assumed away by the "how it works" section which seems to imply you don't do anything after initial setup.
Thanks! That's a great point and we're in the process of creating a few more product screenshots and possibly a video demo to cycle in that header area. In the mean time feel free to take a look at it here: http://crop.to/fW
Much better! I really, really like the design. Better than Gumroad IMO. On the other hand, I would highlight a bit more or add more contrast to the link "My shipping address is not in the US", just in case. Other than that, it would be great to have a "test product" just like this but where we wouldn't need to input real CC details, just to check out the whole process, emails being sent, etc.
Anyway, on what I've seen so far: Congratulations!
So then you only support physical products for now, or also digital ones (no shipping, etc)?
Great looking product, I'm a big fan of empowering everyday people to make money doing what they love. ShopLocket is a (local) favourite of mine, and I think GumRoad is also in this category.
Are there specific use cases that CropUp provides more value? Eg. on physical products? Photography? Digital downloads?
I ask because I see more and more similar products cropping up (pardon the pun) which want to help anyone sell anything online, but can't help but think that focusing on a specific vertical may result in the platform providing more value to the sellers.
For now we're focused on physical products, which come with a couple of challenges sellers of digital products usually don't have to worry about, like taxes, fulfillment, returns/refunds, etc. Our goal is to provide a product that equips sellers with everything needed for selling online and to make it real simple, so that they can focus on making their products and don't have to worry about selling them.
Looks great. One thing I was looking for is a demo/test purchase. As a seller I want to know how it looks like to buy my product. In general, a sandbox with a bunch of test products and credit card numbers would make it a lot easier to adopt. Good luck.
You're right. We need to -- and will -- figure something out to better convey the buyers' end to end experience to people interested in using our service to sell their products.
I like it. But 10% seems a little high - I'd at least have reduced percentages for volume.
I'm not sure if you have (or intend) to support people with a lot of products, but I'd be interested to see how it works if you have 50 products vs. 500 vs. 5000. It would be nice to get group reporting (like every color of a T-shirt combined, all my mugs, etc. Ideally with tags instead of categories so you can cross-report).
We have some interesting ideas for what we can do with pricing in the future, like based on volume or product price or maybe we introduce a premium account that comes with a monthly fee, but lower fees per transaction. Still thinking about these.
For now we think 10% is a fair price given the value and the functionalities our product provides, e.g. calculating taxes based on the seller's nexus states and the buyer's shipping address. Also, the seller is only charged a fee in case of a successful order, but not e.g. in case of a refund, which is different from other services like e.g. PayPal. (And different means better here, we think.)
Cool! This is a pretty crowded space but your site looks great. My one criticism is that the pricing is pretty hidden. That's the first thing I look for before signing up for something like this. It's especially important in this case because the service is supposed to help users make money, so they will really want to know how much they can make. Don't be ashamed that you take a cut for providing an awesome service!
The start selling button seem to be displaying incorrectly on chrome. The color isn't filling the button and instead it takes the color of the background.
The website looks great! When I opened it, for some reason, I instinctively looked for a short video explaining what the website does and how it works. Maybe that could be something you might want to consider?
Also, I had to check the comments here in order to find a demo product page - I would recommend you add a demo product page link on the front page, so people can see how it looks like in practice.
Thanks! I completely agree with you on getting a video for the homepage, and we're actually in the process of creating one (they just take some time), as well getting a product demo link up.
Correct, great observation. PayPal Masspay charges the payment sender a fee, but it's free for the recipient. So these payouts are free for our merchants.
It's for anyone who wants to sell a product on a social network like Facebook, Twitter, etc., whether you have an online store already or not. It's not great to share a link to your online store on social networks because then your customers have to go through the entire checkout flow incl. putting the item into the shopping cart, going to the shopping cart, clicking on checkout, creating an account or not, ... even though all they want to do is buy one specific item quickly and easily. With CropUp you can sell individual products via a very streamlined checkout flow, that works great regardless of the social network or the customer's device (mobile, tablet, desktop).
I'm surprised how well AngularJS has worked for us.
Currently, we're using it for the shopping checkout page and also for the merchant dashboard. The dashboard is all driven by AngularJS (using $resource/$http api calls). The checkout page is more like Twitter, in that we preload data in the DOM when it's rendered, but there are API calls via AngularJS to create the order, check quantity, etc. These pages are actually served directly from our CDN.
As far as how it's worked for us. We've actually rewritten our dashboard and checkout page twice, and it look some getting used to on how to structure our controllers. Getting used to writing directives instead of using jQuery and doing DOM manipulation in our controllers also takes some discipline, because it's just way simpler to drop some selectors and event bindings/triggers in your controller.
The way AngularJS encourages you to keep any dom manipulation out of the controller and to think about reusable directives has really helped for readability and maintainability of the code base. We're consistently surprised how quickly we can implement features because of AngularJS. We've actually said, "Wow, that was easier than I was expecting" quite a few times.
However, there are some hurdles. $http doesn't support file uploads, the stable release doesn't support custom http headers with $resource, only one ngView, etc. That said, I still would not hesitate to recommend AngularJS.
Based on the other comments here you can tell we use neither Stripe nor Balanced :) One of the other big guys... Please email me if you'd like to discuss details: [email protected]
[+] [-] rohansingh|13 years ago|reply
For example, I got: YouTube, Tumblr, YouTube, YouTube, Twitter
[+] [-] pfredrich|13 years ago|reply
Yep, we noticed that as well, will fix it. Excellent observation, thank you.
[+] [-] snowcandy|13 years ago|reply
Thanks for the feedback. Really appreciate it :D - It's now sequential! (yay~) We also modified it slightly to (hopefully) make the idea "you can sell _anything_ on _anything_" clearer. Any thoughts?
[+] [-] callmeed|13 years ago|reply
BIG QUESTION: why PayPal for disbursing funds? With Stripe and BalancedPayments as options, I'm not sure why you'd use PayPal (other than possibly international reach).
[+] [-] pfredrich|13 years ago|reply
Good question. PayPal was the easiest to use, for now, and works well. We'll likely add additional payout options, but no concrete plans or timing just yet.
[+] [-] ivansavz|13 years ago|reply
[+] [-] pfredrich|13 years ago|reply
We see shopping cart providers as our competition and they usually charge setup and/or monthly fees, which we do not. Given the value and functionalities our product provides we feel our pricing is fair, but we're open to structuring it differently in the future depending on market feedback, like volume or product price based, or we introduce a premium account with a monthly fee but lower per transaction fees.
[+] [-] manuelflara|13 years ago|reply
[+] [-] notahacker|13 years ago|reply
[+] [-] sulldc|13 years ago|reply
Thanks! That's a great point and we're in the process of creating a few more product screenshots and possibly a video demo to cycle in that header area. In the mean time feel free to take a look at it here: http://crop.to/fW
[+] [-] manuelflara|13 years ago|reply
So then you only support physical products for now, or also digital ones (no shipping, etc)?
[+] [-] mikejarema|13 years ago|reply
Are there specific use cases that CropUp provides more value? Eg. on physical products? Photography? Digital downloads?
I ask because I see more and more similar products cropping up (pardon the pun) which want to help anyone sell anything online, but can't help but think that focusing on a specific vertical may result in the platform providing more value to the sellers.
[+] [-] pfredrich|13 years ago|reply
For now we're focused on physical products, which come with a couple of challenges sellers of digital products usually don't have to worry about, like taxes, fulfillment, returns/refunds, etc. Our goal is to provide a product that equips sellers with everything needed for selling online and to make it real simple, so that they can focus on making their products and don't have to worry about selling them.
[+] [-] guru_shastry|13 years ago|reply
[+] [-] pfredrich|13 years ago|reply
You're right. We need to -- and will -- figure something out to better convey the buyers' end to end experience to people interested in using our service to sell their products.
[+] [-] lubujackson|13 years ago|reply
I'm not sure if you have (or intend) to support people with a lot of products, but I'd be interested to see how it works if you have 50 products vs. 500 vs. 5000. It would be nice to get group reporting (like every color of a T-shirt combined, all my mugs, etc. Ideally with tags instead of categories so you can cross-report).
[+] [-] pfredrich|13 years ago|reply
We have some interesting ideas for what we can do with pricing in the future, like based on volume or product price or maybe we introduce a premium account that comes with a monthly fee, but lower fees per transaction. Still thinking about these.
For now we think 10% is a fair price given the value and the functionalities our product provides, e.g. calculating taxes based on the seller's nexus states and the buyer's shipping address. Also, the seller is only charged a fee in case of a successful order, but not e.g. in case of a refund, which is different from other services like e.g. PayPal. (And different means better here, we think.)
[+] [-] rgbrgb|13 years ago|reply
[+] [-] pfredrich|13 years ago|reply
You're right, we need to make pricing more visible.
[+] [-] zitterbewegung|13 years ago|reply
[+] [-] robgaafar|13 years ago|reply
We can't reproduce that issue. Did you try to clear your cache?
If you're still having that issue, can you send me an email: [email protected]
[+] [-] YPetrov|13 years ago|reply
[+] [-] sulldc|13 years ago|reply
Thanks! I completely agree with you on getting a video for the homepage, and we're actually in the process of creating one (they just take some time), as well getting a product demo link up.
[+] [-] orangethirty|13 years ago|reply
[+] [-] mapleoin|13 years ago|reply
http://cropup.com/help/merchant
What about international buyers?
Yep, no problem. You can accept payments from international customers.
[+] [-] pfredrich|13 years ago|reply
Hmm. I'm not following, can you please explain? It's not US only and that's what the FAQ says / is supposed to say.
[+] [-] Tihiy|13 years ago|reply
But.. if you give money to sellers with PayPal, you're paying PayPal fee?
[+] [-] pfredrich|13 years ago|reply
Correct, great observation. PayPal Masspay charges the payment sender a fee, but it's free for the recipient. So these payouts are free for our merchants.
[+] [-] jollari|13 years ago|reply
Would you imagine something like a pub/sub system or something that you would ping?
[+] [-] anandkulkarni|13 years ago|reply
[+] [-] pfredrich|13 years ago|reply
It's for anyone who wants to sell a product on a social network like Facebook, Twitter, etc., whether you have an online store already or not. It's not great to share a link to your online store on social networks because then your customers have to go through the entire checkout flow incl. putting the item into the shopping cart, going to the shopping cart, clicking on checkout, creating an account or not, ... even though all they want to do is buy one specific item quickly and easily. With CropUp you can sell individual products via a very streamlined checkout flow, that works great regardless of the social network or the customer's device (mobile, tablet, desktop).
[+] [-] chudi|13 years ago|reply
[+] [-] jackseviltwin|13 years ago|reply
[+] [-] eduardordm|13 years ago|reply
[+] [-] jackseviltwin|13 years ago|reply
I'm surprised how well AngularJS has worked for us.
Currently, we're using it for the shopping checkout page and also for the merchant dashboard. The dashboard is all driven by AngularJS (using $resource/$http api calls). The checkout page is more like Twitter, in that we preload data in the DOM when it's rendered, but there are API calls via AngularJS to create the order, check quantity, etc. These pages are actually served directly from our CDN.
As far as how it's worked for us. We've actually rewritten our dashboard and checkout page twice, and it look some getting used to on how to structure our controllers. Getting used to writing directives instead of using jQuery and doing DOM manipulation in our controllers also takes some discipline, because it's just way simpler to drop some selectors and event bindings/triggers in your controller.
The way AngularJS encourages you to keep any dom manipulation out of the controller and to think about reusable directives has really helped for readability and maintainability of the code base. We're consistently surprised how quickly we can implement features because of AngularJS. We've actually said, "Wow, that was easier than I was expecting" quite a few times.
However, there are some hurdles. $http doesn't support file uploads, the stable release doesn't support custom http headers with $resource, only one ngView, etc. That said, I still would not hesitate to recommend AngularJS.
[+] [-] nikoftime|13 years ago|reply
[+] [-] pfredrich|13 years ago|reply
I'm not familiar with them, but I'll check them out now. Have you used them? Do you like them?
[+] [-] zipop|13 years ago|reply
[+] [-] revorad|13 years ago|reply
[+] [-] pfredrich|13 years ago|reply
Based on the other comments here you can tell we use neither Stripe nor Balanced :) One of the other big guys... Please email me if you'd like to discuss details: [email protected]
[+] [-] TheShadowFog|13 years ago|reply
[deleted]