Show Posts


Messages - abantecart

Pages: 1 ... 174 175 [176] 177 178 ... 203
2626
Support / Re: Order Management - > Reset order and invoive number
« on: February 05, 2013, 04:11:22 AM »
Coming back on item #1. Conceptually it is not very simple to handle stock return. This will require implementation of RMA extension.
It is based on the policy how each merchant handle stock management.
If you cancel the order and stock is returned to the total count, and later you decide to complete the order. What should happen? There is a lot to validate here and it can be a mess.
Clean way to do this is implementing RMA and return process will handle stock return to total.

Any thoughts?

2627
Support / Re: Order Management - > Reset order and invoive number
« on: February 04, 2013, 03:22:13 AM »
1. Good observation. Stock management is a tricky part. I think we will try to add restocking feature into core in next release.

2. For order # you need to reset table accoutrement for orders to start from 1. This needs to be done in your Mysql database.

ALTER TABLE ac_orders AUTO_INCREMENT = 1;
NOTE; ac_orders might be different on your database and you need to delete all records from the table first.

For invoice #, once you delete all orders from above table you can set invoice # to start from 1 in admin -> settings -> checkout.

2628
FAQ & Tutorials / Quick Help Videos
« on: February 04, 2013, 02:58:31 AM »
Sometimes it is easier to see once than read or hear few times :)

We have create few videos with some interesting features in AbanteCart that is hard to explain in a simple way.

Check our youtube videos and subscribe to get updates on new videos added. http://www.youtube.com/user/abantecart/videos?view=0&flow=grid

Auto-translation:
http://www.youtube.com/watch?v=50VZire81S8

Quick search and auto-suggest
http://www.youtube.com/watch?v=sNRsVJMEuk4

Multi-store


And more



2629
Template Support / Re: email alerts for when customers create an account
« on: February 04, 2013, 01:42:56 AM »
Thank you for clarification. We will keep this in mind as feature improvement 

2630
Extension Support / Re: BANK TRANSFER EXTENSION
« on: February 04, 2013, 01:37:41 AM »
Before I get into small argument, I say that BANK TRANSFER will be available in next version 1.1.4 in about 1 week. It is developed.

We can argue that Wire-transfer or bank transfer extensions is important. In my experience of 10+ yeas in eCommerce I had barely see any shopping carts using this payment method.
It could be subject to the county shopping cart will be used at, but it does not make this payment method very important to everyone. 

2631
Support / Re: shipping
« on: February 04, 2013, 01:32:34 AM »
Its only works at payment page. But i get error on shipping page (the page going to nowhere after check the auto select on weight based shipping or any other options) . Need help, thank you

Before we say this is a bug, we need to know what error do you get. Please indicate exactly what settings do you have that cause the error.

Thanks

2632
Extension Support / Re: how to upload the extension?
« on: February 01, 2013, 09:51:06 AM »
Delegation. We are mostly sponsored by AlgoZone and they manage commercial side.  This can change in the future.

2633
Extension Support / Re: how to upload the extension?
« on: February 01, 2013, 05:54:44 AM »
Oh, yes. This would have to go through our partner that supports marketplace.
I think they also in process of updating site to allow resale.

There is a link to register if you go to admin -> Extensions -> Extensions store.
 

2634
Templates / Re: pls what does this error logs mean?
« on: February 01, 2013, 05:51:51 AM »
Yea, just warnings, but we will address this and update the template.  ;)

2635
Extension Support / Re: how to upload the extension?
« on: February 01, 2013, 05:15:30 AM »
You can submit your extension on our site after you register.

http://www.abantecart.com/sign-in

Once we review and approve your extension, it will be available for everyone to download.

FYI:
We are working on new site for AbanteCart and this process will be easier.   

2636
Template Support / Re: email alerts for when customers create an account
« on: January 29, 2013, 03:50:49 PM »
This is not currently available by default.  This is more related to reporting rather than notification.
There is abandoned orders extension that is available in in admin-> extensions -> extension store 

2637
General Support / Re: Currency symbols
« on: January 29, 2013, 03:45:50 PM »
This is set in Admin Currencies -> Edit Currency - Euro
You can position symbol to right or left.
Euro already set to the right

2638
Support / Re: Tax not calculating correctly after 1.1.3 update
« on: January 29, 2013, 02:31:15 AM »
You did not follow instructions and messed up the code.   ;)
Use attached file to replace file on your cart.

2639
Support / Re: Tax not calculating correctly after 1.1.3 update
« on: January 28, 2013, 10:56:13 AM »
Problem is solved. There is a typo in the cart class. :(

Open this file /core/lib/cart.php

Locate line:
Code: [Select]
if (!isset($taxes[$product['tax_class_id']])) {
$this->taxes[$product['tax_class_id']]['total'] = $product['total'];
$this->taxes[$product['tax_class_id']]['tax'] = $this->tax->calcTotalTaxAmount($product['total'], $product['tax_class_id']);
Replace with:
Code: [Select]
if (!isset($this->taxes[$product['tax_class_id']])) {
$this->taxes[$product['tax_class_id']]['total'] = $product['total'];
$this->taxes[$product['tax_class_id']]['tax'] = $this->tax->calcTotalTaxAmount($product['total'], $product['tax_class_id']);

2640
Template Support / Re: Which files to edit....
« on: January 28, 2013, 06:52:33 AM »
Abolabo meant to say, you need to use admin interface to edit text. This is a unique feature in AbanteCart.

You can quickly locate  text using quick search at the top right corner of the admin and click to edit.

Watch this quick video to help you understand how it works:

Pages: 1 ... 174 175 [176] 177 178 ... 203

Powered by SMFPacks Social Login Mod