News:

Looking for documentation? Take a look on our wiki

Main Menu

Show products in Checkout

Started by 10287, May 28, 2015, 16:50:18 PM

Previous topic - Next topic

10287

Virtuemart: 2.0.24c
Joomla 2.5

Hi, is there a method that is built into Virtuemart where I can display products in the checkout?

I am querying the database for products with a custom field and I was hoping I could use a product ID(s) to display products in the checkout as a way to hopefully get some products sold as the customer is checking out.

I have looked around the forum but it's quite difficult to search for as there are many related searches.

Thanks, Steve.

10287

Answered my own question:

In case anyone is interested:

Inside default_pricelist.php template override: (I have not tried elsewhere)

$productModel = VmModel::getModel('Product');
$product = $productModel->getProduct('enter_product_id', false, false);

Then you can go $product->product_sku

Like you normally would.