Hey M,
The features you’ve described are neither offered by Pro nor ConvertPlus. I’ll show you an example Javascript to hide the Info Bar when it reaches a certain scroll position but please note that we will not support issues that will arise from the use of custom codes nor further enhancing them.
Below is the sample code. Javascript code should be placed in Theme Options > JS.
jQuery(function($) {
$(window).scroll(function() {
if ( $(this).scrollTop() < 40 ) {
$('.cp-info-bar-container').hide(1000);
}
else {
$('.cp-info-bar-container').show(1000);
}
});
})
The Info Bar should behave like in the screencast below.
There’s no option to remove the # in the URL. That would require further custom JS development. You will need to enlist help from a third party developer to extend ConvertPlus.
Hope that helps and thank you for understanding.