{/if} {$obj->mOrderButtonVisible} /> | Edit Shopping Cart | 2. Add a new member to the CheckoutInfo class in presentation/checkout_info.php as follows: public $mLinkToCart; public $mLinkToContinueShopping; public $mShippingInfo; 3. Modify the init() method in the CheckoutInfo class in presentation/checkout_info.php: // If the Place Order button was clicked, save the order to database ... if(isset ($_POST['place_order'])) { $this->mCustomerData = Customer::Get(); $tax_id = ''; switch ($this->mCustomerData['shipping_region_id']) { case 2: $tax_id = 1; break; default: $tax_id = 2; } // Create the order and get the order ID $order_id = ShoppingCart::CreateOrder( $this->mCustomerData['customer_id'], (int)$_POST['shipping'], $tax_id); // This will contain the PayPal link $redirect = PAYPAL_URL .