News:

AbanteCart v1.4.2 is released.

Main Menu

Do you like AbanteCart? Please rate AbanteCart or share your experience with other eCommerce entrepreneurs. Go to Softaculous rating page to add your rating or write a review

Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - elpas0

#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!!
January 04, 2012, 04:55:21 AM
happy new year
#3
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
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
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
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
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
hi there

it is easy to implement

1. edit extensions\default_per_item_shipping\config.xml

find
<item id="default_per_item_shipping_cost">
            <type>input</type>
            <default_value></default_value>
        </item>

and insert after it
        <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

<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
$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
$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
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
the character limit is set to 2+ in 0.9.2 version. check news for it
#13
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);

Forum Rules Code of conduct
AbanteCart.com 2010 -