• Resolved Brandon Zhang

    (@bradonzhang)


    Hi,

    My site is using a OceanWP child theme 1.0, but I found an issue after parent theme got automatic update to the latest version 3.5.

    Details about my issue, please refer to the technical data section, try switching from 50HZ to 60HZ. The tab is attempting to “scroll” to anchor when a tab is clicked.

    Could you please take a look?

    I’ve tested by deactivating all the plugins, so it seems problem comes with the theme update. Any ideas how to fix it?

    Thank you so much in advance.
    Brandon

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hello,

    Tried checking but not facing the exact issue, kindly share the related snapshots or a short video of the issue.

    In addition, Please go to Elementor > System Info and share the report with us so that we can take a look.

    Thread Starter Brandon Zhang

    (@bradonzhang)

    Hello,

    Thanks for your reply.

    Sorry about this, a friend on stackoverflow provides a solution to me yesterday, the problem was fixed. I forgot to update in here.

    The issue is happening because the anchor tag(a.kt-tab-title) href attribute and it’s parent li have a same id, that is why first the anchor tag jump to the it’s parent li.

    I have it fixed by adding these JS codes.

    window.addEventListener(‘DOMContentLoaded’, function() { document.querySelectorAll(‘.kt-title-item a’).forEach( item => { item.setAttribute(“href”, “javascript:void(0)”);
    });
    });

    Regards,
    Brandon

    Glad to hear that issue has been fixed and thank you so much for sharing the solution with us.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Strange behavior on tabs after updating parent theme’ is closed to new replies.