I used the following CSS to globally remove the animated circle arrow and the diamond shaped pointer on images. It worked for a while but I may have messed up some CSS somewhere because it stopped working.
Is this correct:
/* REMOVES CIRCLE/ARROW ANNIMATION ON HOVER */
.av-masonry-entry {
opacity: 1 !important;
visibility: visible !important;
}
/* FIGCAPTION remove diamond-arrow */
.av-masonry-entry .avia-arrow {
display: none;
}