Jump to content

apislerr

Members
  • Posts

    40
  • Joined

  • Last visited

1 Follower

About apislerr

  • Birthday 12/17/1987

Profile Information

  • Location
    Malaysia
  • Activity
    Developer

apislerr's Achievements

Newbie

Newbie (1/14)

2

Reputation

1

Community Answers

  1. Hi, Which one is the best payment gateway for prestashop store in Malaysia? I'm not using Bankwire and Payment by Check and Paypal. I want local bank payment gateway such as CIMB, RHB, and MAYBANK.
  2. How to subtotal product tax and carrier (6% per product)? At the screenshot show my invoice. Product price: RM 319 Product Tax: RM 19.14 Carrier Price: RM 22 Carrier Tax: RM 1.32 Total Tax: RM 20.46 But, my invoice show Total Tax: RM 23.32 (Carrier Price + Carrier Tax) not Carrier Tax + Product Tax that should be RM 20.46 my code /classes/PDF.php if (Configuration::get('PS_TAX') OR $order->total_products_wt != $order->total_products) { $pdf->Cell($width, 0, self::l('Total').' '.(self::$_priceDisplayMethod == PS_TAX_EXC ? self::l(' Exc GST') : self::l(' (tax excl.)')).' : ', 0, 0, 'R'); $pdf->Cell(0, 0, (self::$orderSlip ? '-' : '').self::convertSign(Tools::displayPrice((self::$_priceDisplayMethod == PS_TAX_EXC ? $priceBreakDown['totalWithoutTax'] : $priceBreakDown['totalWithTax']), self::$currency, true)), 0, 0, 'R'); $pdf->Ln(4); $pdf->Cell($width, 0, self::l('GST 6%').' : ', 0, 0, 'R'); $pdf->Cell($w[$priceBreakDown['hasEcotax'] ? 5 : 4], $lineSize, (self::$orderSlip ? '-' : '').self::convertSign(Tools::displayPrice(self::$order->total_shipping, self::$currency, true)), 0, 0, 'R'); $pdf->Ln(4); $pdf->Cell($width, 0, self::l('Total Inc GST').' : ', 0, 0, 'R'); $pdf->Cell(0, 0, (self::$orderSlip ? '-' : '').self::convertSign(Tools::displayPrice(($priceBreakDown['totalWithTax']), self::$currency, true)), 0, 0, 'R'); $pdf->Ln(4); } else { $pdf->Cell($width, 0, self::l('Total').' : ', 0, 0, 'R'); $pdf->Cell(0, 0, (self::$orderSlip ? '-' : '').self::convertSign(Tools::displayPrice(($priceBreakDown['totalWithoutTax']), self::$currency, true)), 0, 0, 'R'); $pdf->Ln(4); }
  3. Im using prestashop 1.6.0.9. i make root category for product Product - category 1 - category 2 - category 3 After view product in category 1 it display well product list with grid view or list view then, after view root product it display sub category - category 1 - category 2 - category 3 but it display product list in grid view and list view at the same time. how to fix that or how to remove product list from the root product?
  4. Is this enable to change text name "add to cart" to others without changing class name? thank you for your cooperation..
  5. enabled your left column to show (preferences > themes > your theme's configuration
×
×
  • Create New...