1. Home
  2. ReHub Theme
  3. Advanced tips and customizations
  4. Allow compare button only for logged users

Allow compare button only for logged users

Add next code to theme option – general – footer js

<script>
jQuery(document).ready(function($) {
$('body:not(.logged-in) .wpsm-button-new-compare').each(function(index){
$(this).addClass('act-rehub-login-popup');
});
});
</script>

Add next code to theme option – general – custom css

body:not(.logged-in) .re-compare-icon-fixed, body:not(.logged-in) #re-compare-bar{display:none !important}