Removing Title "Links" of products on shop page.
-
Hello,
I wish to remove the Product Title Link within the shop page.
I wish to create a catalog website and i donot wish for seperate product pages.
Is this possible?
Thank you for your time
Hello,
Provide your shop page URL I will give custom CSS to make the title not clickable.
Best Regards
No problem i had not think of using css thank you for that.
I used this
.product-title a{
pointer-events: none;
cursor: default;
}
Thanked you again
For Anyone whou has the same issue can use this CSS
/**** Remove Product Links *****/
/*** ProductPage ***/
/** Title **/
.product-title a{
pointer-events:none;
cursor: default;
}
/** Image **/
.product-element-top, .product-thumbnail, a img{
pointer-events:none;
cursor: default;
}
/**ProductPage End**/
/*** CartPage ***/
/** Image **/
.woocommerce-cart-form__cart-item .cart-item .product-thumbnail a{
pointer-events: none;
cursor: default;
}
/** Title **/
.woocommerce-cart-form__cart-item .product-name a{
pointer-events: none;
cursor: default;
}
/** CartPage End **/
/** Small Cart **/
/** Title **/
.widget_shopping_cart .mini_cart_item .cart-item-link{
pointer-events: none;
cursor: default;
}
/** Image **/
.widget_shopping_cart .mini_cart_item .cart-item-image {
pointer-events: none;
cursor: default;
}
/** Remove Product Links End **/
Hello,
Thank you for sharing the information.
Best Regards
The topic ‘Removing Title "Links" of products on shop page.’ is closed to new replies.