Portfolio Images Links

Hi guys,
i don’t want the images of the portfolio to link anywhere. I want them just to be there as images.
Anyone can help?

i found the plugin you created, i also would like no title to show on the image.

Hi @tatti,

Thank you for your question.

i found the plugin you created

Awesome great to see you got that found.

i also would like no title to show on the image.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Shapely Options -> Other

.shapely_home_portfolio .masonry .title {
    display: none;
}

Best Regards,
Movin

Thank you so much, i also would like no effect to show when going over with the mouse, just static images.
you’re very helpful. thanks.

i also would like no effect to show when going over with the mouse, just static images. you’re very helpful. thanks.

Use the below CSS code to achieve this.

.shapely_home_portfolio .inner-title:hover {
    opacity: 1;
}

.shapely_home_portfolio .inner-title.hover-reveal:before{
  opacity: 0;
}