News:

Support the VirtueMart project and become a member

Main Menu

Remove hyperlink from product on Shopping Cart

Started by Scott Ackerman, August 09, 2012, 22:55:07 PM

Previous topic - Next topic

Scott Ackerman

What is the template that controls the 'Shopping Cart' page? I want to remove the <A> tag from the individual products.
Scott Ackerman
Fort Collins, CO 80524

greenparrot

Hi

I was looking for answer to this, in the end i worked it out

/public_html/components/com_virtuemart/views/cart/tmpl/default_pricelist.php

line 309

<?php echo JHTML::link ($prow->url$prow->product_name) . $prow->customfields?>

change to

<?php echo ($prow->product_name) . $prow->customfields?>

I'm not a php coder, you may be able to shorten it to

<?php echo $prow->product_name $prow->customfields?>

Hope this help anyone that maybe looking for a solution

Roy