Change link for "Continue Shopping"

GK User
Mon Jan 12, 2015 8:04 am
Hello. After adding a product to cart from my home page, a popup appears asking you to continue shopping or view cart. But when i click continue shopping i am redirected to the link http://digital47media.com/shreemstore/i ... virtuemart.
Can i change this link to something like http://digital47media.com/shreemstore/i ... ds-clothes ?

I would also like to disable the 'shipment method' option during checkout since we are implementing cash on delivery. Thanks
User avatar
Fresh Boarder

GK User
Mon Jan 12, 2015 4:36 pm
Actually this is something that VM generates itself in the code.
You can replace the link by editing:
/templates/gk_storefront/html/com_virtuemart/cart/default.php
file, finding this section:
Code: Select all
      <div class="width50 floatleft vm-continue-shopping">
         <?php // Continue Shopping Button
         if (!empty($this->continue_link_html)) {
            echo $this->continue_link_html;
         } ?>
      </div>

and replacing it with:
Code: Select all
      <div class="width50 floatleft vm-continue-shopping">
         <?php // Continue Shopping Button
         if (!empty($this->continue_link_html)) {
            echo '<a class="continue_link" href="http://digital47media.com/shreemstore/index.php/kids-clothes">Continue Shopping</a>';
         } ?>
      </div>
User avatar
Moderator

GK User
Mon Jan 12, 2015 4:37 pm
Just remember this is a template core file and this change will be overwrite with template update.
User avatar
Moderator

GK User
Tue Jan 13, 2015 9:56 am
Thanks so much!!
User avatar
Fresh Boarder

GK User
Tue Jan 13, 2015 7:32 pm
Is there anything else I can help you with regarding this topic?
User avatar
Moderator


cron