tcraw1010
07-04-2007, 01:20 AM
Hey All:
The only reason I'm posting this question here is because I'm getting absolutely no help over at the VirtueMart Forum . . .
How can I remove the "Show Cart" text/link from the "Your Cart" module that displays on the Home Page?
For reference, my work-in-progress site is HERE (http://www.musicians-marketplace.com/index.php)
Here is the code from mod_virtuemart_cart.php file . . .
?><table width="100%">
<tr>
<td>
<a class="mainlevel" href="<?php echo $sess->url($mm_action_url."index.php?page=shop.cart")?>">
<?php echo $VM_LANG->_PHPSHOP_CART_SHOW ?></a>
</td>
</tr>
<tr>
<td><?php include (PAGEPATH.'shop.basket_short.php') ?></td>
</tr>
</table>
Now, when I inspect the code for that particular module in FireFox, I see this . . .
<div class="moduletable">
<h3> Your Shopping Cart </h3>
<table width="100%">
<tbody>
<tr>
<td>
<a class="mainlevel" href="http://www.musicians-marketplace.com/index.php?page=shop.cart&option=com_virtuemart&Itemid=26"> Show Cart</a>
</td>
</tr>
<tr>
</tr>
</tbody>
</table>
</div>
I have been looking for days and I cannot find the line of code to modify the module so I can remove the "Show Cart" text/link.
PLEASE HELP !!!
:((
TOM
P.S. (What I would REALLY like to do is put the shopping cart info at the top, just under the top navigation text links. There is already a "View Cart" link, so a simple one like "Your Cart Is Empty" and "You Have "x" Items" right underneath would be nice).
The only reason I'm posting this question here is because I'm getting absolutely no help over at the VirtueMart Forum . . .
How can I remove the "Show Cart" text/link from the "Your Cart" module that displays on the Home Page?
For reference, my work-in-progress site is HERE (http://www.musicians-marketplace.com/index.php)
Here is the code from mod_virtuemart_cart.php file . . .
?><table width="100%">
<tr>
<td>
<a class="mainlevel" href="<?php echo $sess->url($mm_action_url."index.php?page=shop.cart")?>">
<?php echo $VM_LANG->_PHPSHOP_CART_SHOW ?></a>
</td>
</tr>
<tr>
<td><?php include (PAGEPATH.'shop.basket_short.php') ?></td>
</tr>
</table>
Now, when I inspect the code for that particular module in FireFox, I see this . . .
<div class="moduletable">
<h3> Your Shopping Cart </h3>
<table width="100%">
<tbody>
<tr>
<td>
<a class="mainlevel" href="http://www.musicians-marketplace.com/index.php?page=shop.cart&option=com_virtuemart&Itemid=26"> Show Cart</a>
</td>
</tr>
<tr>
</tr>
</tbody>
</table>
</div>
I have been looking for days and I cannot find the line of code to modify the module so I can remove the "Show Cart" text/link.
PLEASE HELP !!!
:((
TOM
P.S. (What I would REALLY like to do is put the shopping cart info at the top, just under the top navigation text links. There is already a "View Cart" link, so a simple one like "Your Cart Is Empty" and "You Have "x" Items" right underneath would be nice).