简体   繁体   中英

Remove 'Continue Shopping' link from WP e-commerce Notification Box

I am using the WP e-commerce plugin on my site. After you click to the "Add to Cart" button it shows a Fancy notification Box with 2 links:

  • Go to checkout
  • Continue Shopping

I have only one product on my shop so the "Continue Shopping" link in the Fancy Notification Box become redundant.

Inspecting the element with Firebug it appears to be a jquery that controls the "Continue Shopping" link:

<a href=#" onclick="jQuery("#fancy_notification").css("display", "none"); return false;" class="continue_shopping">

At this point, how to disable that link? via CSS? if yes, how?

thanks!

You can hide the button with this css :

.continue_shopping {
    display: none;
}

If you want to remove the link with javascript and jQuery :

$(function() {
    $('.continue_shopping').remove();
});

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM