Disabling Links / Hide Single product page
-
So im trying to make it where the image link is disabled and the link in the name of product is also disabled, so they don’t redirect to any page and user stays on this page (expect the take a tour button which I set to an external link)
Right now i was able to disable the single product page with the follow function:
add_filter( ‘woocommerce_register_post_type_product’,’hide_product_page’,12,1);
function hide_product_page($args){
$args[“publicly_queryable”]=false;
$args[“public”]=false;
return $args;
}
It no longer redirects to the single product but its the links still redirect to the main page of site.Can anyone here help so it links are disabled and not redirecting the user
The page I need help with: [log in to see the link]
- The topic ‘Disabling Links / Hide Single product page’ is closed to new replies.