3 replies [Last post]
kris's picture
Offline
Joined: 02/09/2009
Juice: 30
Was this information Helpful?

I'm trying to remove the hyperlinks from around the Product names on the Shopping Cart page.

For example, at mysite/cart, I can see a list of all the products I've added to my cart. For each product, the picture and name link to the product zoom page. I want to remove those links.

Is there a setting to do this?

Ryan's picture
Offline
Joined: 08/07/2007
Juice: 15438
Re: Shopping Cart Links

There isn't a setting for this. You'd have to do it through a custom module at this point, using hook_form_alter() to replace the titles with plain text. If you're a developer, you can check out UC Node Checkout on d.o for an example, b/c I remove the links to product pages for products that are purchased through node forms.

kris's picture
Offline
Joined: 02/09/2009
Juice: 30
Re: Re: Shopping Cart Links

Thanks! That is definitely something I will consider. Are there any other kinds of work arounds? For example, could I make that link point somewhere else?

Ryan's picture
Offline
Joined: 08/07/2007
Juice: 15438
Re: Re: Re: Shopping Cart Links

You can do that using the same method.