- Posts: 202
- Thank you received: 2
Pre-Sales Questions
1) I need users to be restricted to categories. So, for instance, UserA will only be able to see CatA, CatB and CatC. However, UserB will be able to see CatA, CatC and CatD.
2) I need to be able to provide a file upload field during the checkout process. Preferably a field that will allow multiple file uploads.
3) Allow users to add products from the front-end.
Thanks!!
Rick
Please Log in or Create an account to join the conversation.
1/ You can restrict categories of products to group of joomla users in the Business edition of HikaShop so you will be able to do that.
2/ You can create custom order fields of the type "file" via the menu Display->Custom fields for that. You can create several fields for that but there is no multi upload for one field.
3/ This is actually not possible in HikaShop.
Please Log in or Create an account to join the conversation.
Of the three, only the first two are really critical, so that works. Since #3 is not possible, is there, by any chance, a product upload function?
Please Log in or Create an account to join the conversation.
www.hikashop.com/en/support/documentatio...hikashop-import.html
Please Log in or Create an account to join the conversation.
And I can buy this with a 30 day money-back guarantee, so there's nothing to lose!
Please Log in or Create an account to join the conversation.
Thanks!!
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Well, if you don't need payments handling on your store, you can remove the payment_ view from the checkout workflow options and change a bit the texts so that orders are assimilated to cart quote requests.
But if you need both cart quotes and normal checkout on your shop, then, that's not possible.
Please Log in or Create an account to join the conversation.
I have decided that HikaShop will handle my needs. I just need to get approval for the purchase and then I will buy!
BTW - you may want to look into adding a quoting system in the future. I had looked into redShop, which includes that feature, as do many of the other players in this market. In the end, though, your extension does 99% of what I need and that's enough for me!!
Rick
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
The store I am setting up will be used as a B2B site with our customers for the ordering of printed marketing material. The "products" will be thousands of supplier-provided images relating to their product lines. My clients (distributors) will be able to browse through and pick out the supplier images they want used on their printed material. Ideally what I would like to do is to have my client pick out a printed product type - say a 6"x8" postcard. This item would allow for one image on the front and two on the back. I would like to know if there was some way to set up dependencies, whether in the cart itself or in the product, which would make sure the user chooses three images. Does that make sense?
I know this is probably a pipe dream, but I have to ask!!
Thanks!
Rick
Please Log in or Create an account to join the conversation.
edit the file cart of the view checkout and something like this ( you need to write the code //check related products and set the variable $not_ok ) :
foreach($this->rows as $product){
if(empty($row->cart_product_quantity)) continue;
//check related products and set the variable $not_ok
if($not_ok){
$app =& JFactory::getApplication();
$app->enqueueMessage('You do not have enough images for your post cards...','error');
$this->nextButton = false;
}
}
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.