Quote from Alex Dovlatov on May 25, 2026, 13:04
Hello
This behavior is not caused by HUSKY itself — the new tab is triggered by a target="_blank" attribute on the product links, which comes from your theme or another plugin.
The fix is a small JavaScript snippet that removes that attribute after each HUSKY filter/search update. Add this to your theme's functions.php or a custom JS file:
add_action('wp_footer', function() {
?>
<script>
jQuery(document).on('woof_ajax_done', function() {
jQuery('.products a').removeAttr('target');
});
</script>
<?php
});If you are using a page builder or your theme has its own product card template, the selector .products a may need to be adjusted to match your actual product link elements.
For further support place please actual purchase code of the plugin into the private area of this ticket:
https://share.pluginus.net/image/i20230222134241.png
https://share.pluginus.net/image/i20230222134615.png
https://share.pluginus.net/image/i20230222134511.png
Hello
This behavior is not caused by HUSKY itself — the new tab is triggered by a target="_blank" attribute on the product links, which comes from your theme or another plugin.
The fix is a small JavaScript snippet that removes that attribute after each HUSKY filter/search update. Add this to your theme's functions.php or a custom JS file:
add_action('wp_footer', function() {
?>
<script>
jQuery(document).on('woof_ajax_done', function() {
jQuery('.products a').removeAttr('target');
});
</script>
<?php
});If you are using a page builder or your theme has its own product card template, the selector .products a may need to be adjusted to match your actual product link elements.
For further support place please actual purchase code of the plugin into the private area of this ticket:
https://share.pluginus.net/image/i20230222134241.png
https://share.pluginus.net/image/i20230222134615.png
https://share.pluginus.net/image/i20230222134511.png