Show Posts


Messages - elpas0

Pages: [1]
1
There is no validation of cost and price. Possible you are right. But what if i had 1000 items and sell 990. left 10 items and i just want to sell them at any price. i think in this case you can set the price lower than cost

2
News and Announcements / Re: Happy New Year!!
« on: January 04, 2012, 04:55:21 AM »
- happy new year

3
General Discussion / Re: How to change some items in registration?
« on: January 04, 2012, 04:53:42 AM »
We are planning to make it fully customizable
You will have full control over user info.

However there still be at least one required field - user email :)

4
General Discussion / Re: How to count taxes only in the cart?
« on: January 04, 2012, 04:51:50 AM »
hi proFFioz

as i understand you want to have prices with tax, but hide 'tax' text so user will think that prices without tax?

5
General Discussion / Re: Multi Page Checkout? Or Single Page
« on: January 04, 2012, 04:47:56 AM »
yes, this is interesting page
usually one-page checkout is done by using some tabs or accordion

but there is no shipping method select on this page
so if we offer different shipping methods in different locations we still need to use ajax to reload page with appropriate info

6
General Discussion / Where are you from, abantecart users?
« on: January 04, 2012, 04:42:45 AM »
Hi all
It would be nice to know geographic location of our users.
You are welcome :)

7
k, we will add it to extension list to develop :)

8
General Support / Re: Additional Payment Method / Avenues India
« on: January 04, 2012, 04:28:29 AM »
yeah, James,  this doc is much better  :)

on page 11 they mention some 'integration kit'.
download it.
inside should be sample codes for php


9
General Support / Re: About the Per Item Shipping Option
« on: January 04, 2012, 04:21:23 AM »
hi there

it is easy to implement

1. edit extensions\default_per_item_shipping\config.xml

find
Code: [Select]
<item id="default_per_item_shipping_cost">
            <type>input</type>
            <default_value></default_value>
        </item>
and insert after it
Code: [Select]
        <item id="default_per_item_shipping_fee">
            <type>input</type>
            <default_value>0</default_value>
        </item>
we add new parameter in extension config.

2. add translation for this parameter.
edit extensions\default_per_item_shipping\admin\language\english\default_per_item_shipping\default_per_item_shipping.xml

Code: [Select]
<definition>
    <key>default_per_item_shipping_fee</key>
    <value><![CDATA[Fee:]]></value>
  </definition>

3. now we need to change shipping cost calculation
edit extensions\default_per_item_shipping\storefront\model\extension\default_per_item_shipping.php

find
Code: [Select]
$quote_data['default_per_item_shipping'] = array(
        'id'           => 'default_per_item_shipping.default_per_item_shipping',
        'title'        => $this->language->get('text_description'),
        'cost'         => $this->config->get('default_per_item_shipping_cost') * $this->cart->countProducts(),
          'tax_class_id' => $this->config->get('default_per_item_shipping_tax_class_id'),
'text'         => $this->currency->format($this->tax->calculate($this->config->get('default_per_item_shipping_cost') * $this->cart->countProducts(), $this->config->get('default_per_item_shipping_tax_class_id'), $this->config->get('config_tax')))
      );

and change it to
Code: [Select]
$quote_data['default_per_item_shipping'] = array(
        'id'           => 'default_per_item_shipping.default_per_item_shipping',
        'title'        => $this->language->get('text_description'),
        'cost'         => $this->config->get('default_per_item_shipping_cost') * $this->cart->countProducts() + $this->config->get('default_per_item_shipping_fee') ,
          'tax_class_id' => $this->config->get('default_per_item_shipping_tax_class_id'),
'text'         => $this->currency->format($this->tax->calculate($this->config->get('default_per_item_shipping_cost') * $this->cart->countProducts() + $this->config->get('default_per_item_shipping_fee'), $this->config->get('default_per_item_shipping_tax_class_id'), $this->config->get('config_tax')))
      );


10
General Support / Re: Additional Payment Method / Avenues India
« on: January 03, 2012, 07:51:05 AM »
i check ccavenue.com
did not find good documents or sdk for developers
but there are implementations of this payment module for OSC, zen and other open-source projects

so you can take paypal module as an example
and update it using code from other cart

11
The feature you describe is pretty similar to abandoned cart module for cre.
do you think this feature would be popular?


12
General Support / Re: Catalog->Manufacturer (Character Limit)
« on: January 03, 2012, 07:36:30 AM »
the character limit is set to 2+ in 0.9.2 version. check news for it

13
General Support / Re: Real Time Success / Failure feature for Payment
« on: January 03, 2012, 07:31:19 AM »
Hello James

Yes, payment modules support such feature
For example you can check PayPal Website Payment Pro

In settings you can choose order status for success payment
In extensions\default_pp_pro\storefront\controller\responses\extension\default_pp_pro.php
there is a send method, which send request to paypal site and in case of success change/update order status

$this->model_checkout_order->update($this->session->data['order_id'], $this->config->get('default_pp_pro_order_status_id'), $message, FALSE);


Pages: [1]

Powered by SMFPacks Social Login Mod