Zend certified PHP/Magento developer

Disable Navigation to element on click

Since Magento 2.3.3, when you click a product’s details, it moves the page to there. I believe this happens because of the offset or Aria Roles, however, I’ve been trying to remove it, tried different ways and I can’t disable it.

< ?php /* @escapeNotVerified */ echo $html; ?>

Offset_Details

I use Porto theme, but I believe It started happening with the Magento 2.3.3 update, as I’ve been looking into Porto theme files aswell and found nothing.
There are other places where this happens, such as OnePageCheckout, etc etc.

OffsetAria_Osc

How can I disable it? / Is there a solution that prevents it from happening? I’ve tried e.preventDefault() , return false, href = javascript:; aswell, but nothing, the page always moves to the element I’m clicking.

I think the below script is responsible for it, however, if I delete it, the page continues to move to the element I click..