golden hour
/home/phakp/public_html/wp/wp-content/themes/hestia/inc/customizer/controls/ui/customizer-scroll
⬆️ Go Up
Upload
File/Folder
Size
Actions
class-hestia-customizer-scroll-ui.php
1.07 KB
Del
OK
helper-script.js
1.29 KB
Del
OK
script.js
694 B
Del
OK
Edit: helper-script.js
/** * Script fort the customizer sections scroll function. * * @since 1.1.43 * @package Hestia * * @author ThemeIsle */ /* global wp */ var hestia_customizer_section_scroll = function ( $ ) { 'use strict'; $( function () { var customize = wp.customize; customize.preview.bind( 'clicked-customizer-section', function( data ) { var sectionId = ''; switch (data) { case 'sub-accordion-section-sidebar-widgets-sidebar-big-title': sectionId = '#carousel-hestia-generic'; break; case 'shop': sectionId = 'section#products'; break; case 'ribbon': sectionId = 'section.hestia-ribbon'; break; case 'sub-accordion-section-sidebar-widgets-subscribe-widgets': sectionId = 'section#subscribe'; break; case 'bar': sectionId = 'section.hestia-clients-bar'; break; case 'slider': sectionId = '#carousel-hestia-generic.carousel.slide'; break; default: sectionId = 'section#' + data; break; } if ( $( sectionId ).length > 0) { $( 'html, body' ).animate( { scrollTop: $( sectionId ).offset().top - 100 }, 1000 ); } } ); } ); }; hestia_customizer_section_scroll( jQuery );
Save