Okay
  Public Ticket #1043373
App demo - enable classic scroll
Closed

Comments

  • David started the conversation

    Hi,

    Is it possible to enable classic scrolling feature when using full-screen slides? I like the Salient App demo but recently I realized that some users have problem with this new way of scrolling and so it would be usefull to donĀ“t hide classic scrolling feature. So pages

  •  8,461
    Tahir replied

    Hey David, 

    The only known bug is with Anchor links not working on Mobile when the "Disable on Mobile" Option is selected in the "Page Full screen Rows" Metabox . 

    We do have a quick fix for it so you can use it and provide us wp-admin login details to add in the fix . 

    Best.


    ThemeNectar Support Team 

  •   David replied privately
  •  8,461
    Tahir replied

    Hey Again,

    You seem to be using an older version of the Theme or likely have updated manually some files   . Please update to latest 7.6 and then add this code in "salient/js/init.js " file : 

    //change anchor link IDs for when disabled on mobile
    if($disableFPonMobile == 'on' && $('#nectar_fullscreen_rows').length > 0) {
        $('#nectar_fullscreen_rows > .wpb_row[data-fullscreen-anchor-id]').each(function(){
            if($(this).attr('data-fullscreen-anchor-id').length > 0)
                $(this).attr('id',$(this).attr('data-fullscreen-anchor-id'));
        });
    }
    

    Bes.t 


    ThemeNectar Support Team