VirtueMart Forum

VirtueMart Dev/Coding Central: VM1 (old version) => Quality & Testing VirtueMart 1.1.x => Virtuemart 1.1 Development (Archiv) => Q&T Resolved => Topic started by: aravot on July 06, 2007, 21:14:21 PM

Title: [SOLVED] VM 1.1 how to remove 'Recently Viewed Products' from product view page.
Post by: aravot on July 06, 2007, 21:14:21 PM
Downloaded VirtuMart 1.1 SVN r875.

How to remove from product view page and frontpage 'Recently Viewed Products', in the backend there is an option to limit the display of products but can't find option to remove it, even if I enter 0 for the number it still shows 1 item.
Title: Re: VM 1.1 how to remove 'Recently Viewed Products
Post by: Edgar. R. Koster on August 09, 2007, 20:04:58 PM
I'm not testing that version yet. I say it should have a checkbox where you say you enter the number to display. maybe an enhancement?
Title: Re: VM 1.1 how to remove 'Recently Viewed Products' from product view page.
Post by: macallf on September 09, 2007, 17:15:15 PM
This is a flypage template setting. The main setting is number of recently visited products.

In the flypage you have this

if( !empty( $recent_products )) { ?>
<div class="vmRecent">
<?php echo $recent_products?>
</div>
<?php 
}


If the recently viewed products limit is set to 0, then no recently viewed products will be displayed. I have tested this and confirm that it is working.
Title: Re: VM 1.1 how to remove 'Recently Viewed Products' from product view page.
Post by: aravot on September 09, 2007, 19:14:16 PM
Fixed, it was my browser cache.