nakit2017-07-23 11:02 | Is there any possibility to buy just product attributes plugin for QuickCart v6. I am using QuickCart 6.2 for more than 3 years and it has been Ok like it is, until we decided to start selling some products which require different sizes, colors etc. I know someone would recommend QuickCart EXT, but all we need is product attributes and no more additional functionalities. What is important is that the customer can select the same product twice with different attributes without adding just a quantity of the same product in basket. Part about saving ORDERS in ADMIN is not important. » Quick.Cart v6.x |
grafiQa2017-07-23 11:21 | I don't think so. Buy Ext version. More plugins, more capabilities. |
nakit2017-07-23 11:31 | Hello grafiQa, |
nakit2017-07-23 11:38 | Can you at least tell me where in the code is the line or the lines which are responsible for comparing product ID before adding quantity to existing quantity of the same product in the basket. I know that pressing Add to basket takes the product ID and using it for putting products in the basket, but the process of comparing IDs I can not find. |
boboo2017-07-24 20:22 | The comparison Prod ID is done in the saveBasket function (core/orders.php).
if( isset( $aBasket[$iOrder][$iProduct] ) )
boboo :-) |
nakit2017-07-29 18:27 | Thans Boboo, |