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


i using wp e-commerce plugin on site. after click "add cart" button shows fancy notification box 2 links:

  • go checkout
  • continue shopping

i have 1 product on shop "continue shopping" link in fancy notification box become redundant.

inspecting element firebug appears jquery controls "continue shopping" link:

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

at point, how disable link? via css? if yes, how?

thanks!

you can hide button css :

.continue_shopping {     display: none; } 

if want remove link javascript , jquery :

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

Comments

Popular posts from this blog

commonjs - How to write a typescript definition file for a node module that exports a function? -

openid - Okta: Failed to get authorization code through API call -

thorough guide for profiling racket code -