Hi
I am trying all sort of variations of your solutions, but no "Continue Shopping" link (or button) show on my cart page. There are no differences with the 2 or 3 solutions you provide in the forum. My code now, under the cart section, looks like this:
if ($cart["idx"]) {
?>
<div class="cart-checkout-bar">
<?php
$continue_link = '/';
if( $continue_link != '') {
?>
<a href="<?php echo $continue_link ?>" class="continue_link">
<?php echo $VM_LANG->_('PHPSHOP_CONTINUE_SHOPPING'); ?>
</a>
<?php
}
if (!defined('_MIN_POV_REACHED')) { ?>
<span style="font-weight:bold;"><?php echo $VM_LANG->_('PHPSHOP_CHECKOUT_ERR_MIN_POV2') . " ".$CURRENCY_DISPLAY->getFullValue($_SESSION['minimum_pov']) ?></span>
<?php
}
else {
$href = $sess->url( $_SERVER['PHP_SELF'].'?page=checkout.index&ssl_redirect=1', true);
$href2 = $sess->url( $mm_action_url . "/index2.php?page=checkout.index&ssl_redirect=1", true);
$class_att = 'class="checkout_link"';
$text = $VM_LANG->_('PHPSHOP_CHECKOUT_TITLE');
if( $this->get_cfg('useGreyBoxOnCheckout', 1)) {
echo vmCommonHTML::getGreyBoxPopupLink( $href2, $text, '', $text, $class_att, 500, 600, $href );
}
else {
echo vmCommonHTML::hyperlink( $href, $text, '', $text, $class_att );
}
}
?>
</div>
<?php
// End if statement
}
?>
My question is if there is any othe parameter to set for this, I am new to Virtuemart?
Right now, I only have the "Checkout" button showing, and would like a continue shopping button as well.
Thanks