Okay
  Public Ticket #3589532
Disable Smooth Scroll for PC only
Closed

Comments

  •  1
    David NAIZOT started the conversation

    Hi, i would like to disable the smooth scroll only for PC, is it possible ? And if it is, how can i achieve this ? 


    Thank you very much 

  •  1,806
    Support replied

    Hello David,

    to disable smooth scrolling only on PC, plz open /include/hooks-config.php file and replace line 16

    if( serano_get_theme_options( 'clapat_serano_enable_smooth_scrolling' ) ){

    with

    if( wp_is_mobile() && serano_get_theme_options( 'clapat_serano_enable_smooth_scrolling' ) ){

    https://prnt.sc/nRq_cSUdrg1R

    this will enable smooth scrolling only on mobile (if the smooth scrolling options is enabled in customizer -> general settings)


    Thank you.

    Clapat Support

    https://www.clapat.com/

    Review Envato Item Support Policy

  •  1
    David NAIZOT replied

    Hello,

    Thank you very much, works just fine!