#2171

Hi again,

Elementor Product Category don’t support add custom link, so that you cann’t set custom link for it.

To add link, please use Image Widget: https://prnt.sc/vvfdwu

Add Animate hover image:

#Step 1. Add Widget Image, select your image, add link, title and add custom class: https://prnt.sc/vvff3k

#Step 2. Add css into file style.css

.animate-image.elementor-widget-image figure.wp-caption a:before {
    font-family: "poco-icon";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    vertical-align: middle;
    content: "";
}

.animate-image.elementor-widget-image figure.wp-caption a:before {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 170px;
    z-index: -1;
    -webkit-transform: translateX(-50%) translateY(-50%) scale(0);
    -ms-transform: translateX(-50%) translateY(-50%) scale(0);
    transform: translateX(-50%) translateY(-50%) scale(0);
    color: var(--primary);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.animate-image.elementor-widget-image:hover figure.wp-caption a:before  {
    -webkit-transform: translateX(-50%) translateY(-50%) scale(1);
    -ms-transform: translateX(-50%) translateY(-50%) scale(1);
    transform: translateX(-50%) translateY(-50%) scale(1);
}