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 - Eric_2358

#1
I have figured out my problem

Quote
function getQuote($address) {
   
        $quote_data = array('custom_method' => array(
                'id' => 'custom_shipping.custom_method',          <----------- the id value needs to be '[Extension ID].[array key]
                'title' => 'Custom Method',
                'cost' => 5,
                'tax_class_id' => 0,
                'text' => $this->currency->format('5')));
       
   $method_data = array(
      'id'         => 'custom_shipping',
      'title'      => 'custom shipping',
      'quote'      => $quote_data,
      'sort_order' => 0,
      'error'      => false);
     
   return $method_data;
}
#2
I am making a custom shipping extension, which uses the prices of shipping methods from another site

Currently the shipping methods add to the shipment combo box on the checkout page
When any of the methods get selected, the shipping details do not add to the sub total price / total price of the checkout (the attachment shows this)


Here is my current code for adding the shipping methods to the combo box.
Quote
function getQuote($address) {
   
        $quote_data = array('custom_method' => array(
                'id' => 'custom_shipping.custom_method',
                'title' => 'Custom Method',
                'cost' => 5,
                'tax_class_id' => 0,
                'text' => $this->currency->format('5')));
       
   $method_data = array(
      'id'         => 'custom_shipping',
      'title'      => 'custom shipping',
      'quote'      => $quote_data,
      'sort_order' => 0,
      'error'      => false);
      
   return $method_data;
}

Forum Rules Code of conduct
AbanteCart.com 2010 -