This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: Settings icon

#27789
Ernest MarcinkoErnest Marcinko
Keymaster

Hi,

I’m afraid that is not possible via settings. It is however possible via custom coding.

Try adding this custom code to the functions.php in your theme/child theme directory. Before editing, please make sure to have a full site back-up just in case!

add_action('wp_footer', 'asp_open_settings_on_hover');
function asp_open_settings_on_hover() {
	?>
	<script>
	jQuery(function($){
		$('.prosettings').on('hover', function() {
			ASP.api(
				$(this).closest('.asp_w').data('id'),
				$(this).closest('.asp_w').data('instance'), 
				'toggleSettings', 'show'
			);
		});
	});
	</script>
	<?php
}

Please note that I cannot guarantee this is going to work in all cases correctly.