Files
torebki-fabiola.pl/wp-content/plugins/woocommerce-pdf-invoices-packing-slips/assets/js/my-account-link.js
2026-03-05 13:07:40 +01:00

12 lines
429 B
JavaScript

jQuery( function( $ ) {
$('a').each(function(e){
// check if href attribute exists
if ( $(this).attr('href') ) {
// for lack of specific classes on the my account action buttons we check the url.
// 'generate_wpo_wcpdf' can be replaced when using the pretty links setting from the status page.
if( $(this).attr('href').indexOf('generate_wpo_wcpdf') != -1 ){
$(this).attr('target', '_blank');
};
}
});
});