Dear support,
thank for your reply , understood
there have a way to work around, want to share with you and some user face the same problem
Just add class add-parameter for the link widget ,
and use the follow jquery to add the link with the url param
hope it help and have a good day
mango
jQuery(document).ready(function($) {
$(‘.add-parameter a’).each(function() {
var url = $(this).attr(‘href’);
var param = ‘stock_status=instock’;
// Append the URL parameter if it doesn’t exist already
if (url.indexOf(‘?’) === -1) {
$(this).attr(‘href’, url + ‘?’ + param);
} else {
$(this).attr(‘href’, url + ‘&’ + param);
}
});
});