VirtueMart Forum

VirtueMart 2 + 3 + 4 => General Questions => Topic started by: ysdoar on September 05, 2012, 23:24:21 PM

Title: how display products by Category & Type of discount?
Post by: ysdoar on September 05, 2012, 23:24:21 PM
Hello everyone

Is there a way to display products by 1. Category 2. Type of discount?

Maybe there is a code that i can add in a category view, or product details page, or a module that already exists and I do not know?

Title: Re: how display products by Category & Type of discount?
Post by: ysdoar on September 06, 2012, 09:26:23 AM

I'm trying to write some code I'd love some help ..

Perhaps the best idea is: add code to "category view", so I want to set to display only the products that have a valid discount.

so in : category/view.html.php    i added it:


// Load the products in the given category

$product .= ' vmpp.product_discount_id IS NOT NULL '

    $products = $productModel->getProductsInCategory($categoryId);
    $productModel->addImages($products,1);
    $this->assignRef('products', $products);