Home Forums WoodMart support forum Removing Title "Links" of products on shop page.

Removing Title "Links" of products on shop page.

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #173182

    icon32
    Participant

    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

    #173198

    Hello,

    Provide your shop page URL I will give custom CSS to make the title not clickable.

    Best Regards

    #173201

    icon32
    Participant
    #173206

    icon32
    Participant

    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

    #173223

    icon32
    Participant

    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 **/
    #173244

    Hello,

    Thank you for sharing the information.

    Best Regards

Viewing 6 posts - 1 through 6 (of 6 total)

The topic ‘Removing Title "Links" of products on shop page.’ is closed to new replies.