Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Contributor HT Plugins

    (@htplugins)

    Hello @digimaxme

    Thanks for contacting us.
    Currently, this feature is not available in our plugin.
    We’ve taken it into our consideration.
    We will think about it in future updates.

    Best Regards,
    Support Team

    Thread Starter digimaxme

    (@digimaxme)

    Thank you for your reply.
    If its not something too complicated, Can you suggest any css code for that function please?

    Plugin Contributor HT Plugins

    (@htplugins)

    Hi @digimaxme

    Unfortunately, it’s not possible to use CSS. But using JS (Javascript) code that is possible. You may use the sample code below as a reference.

    
    <script type="text/javascript">
    $(document).ready(function(){
        $('.hthb-notification').on('click', function(){
            window.location = 'https:google.com';
        });
    });
    </script>

    If you have any questions, please let us know.

    Thanks!

    Thread Starter digimaxme

    (@digimaxme)

    Thank you so much for your help.
    I tried your code and it worked, however I’m facing a small issue.
    After using your code the close icon “x” isn’t working anymore. Please have a look:
    Eventsplanner.cateringindubai.com
    Do you think there’s a solution for that?

    Plugin Contributor HT Plugins

    (@htplugins)

    Hello @digimaxme

    Please use the modified code given below.
    Hopefully, your problem will be fixed.

    $(document).ready(function(){
         $('.hthb-notification').on('click', function(e){
    	var is_closed = $(e.target).parent().is('.hthb-close-toggle')
    	if(!is_closed){
               window.location = 'https:google.com';	
    	}
         });
    });

    Best Regards,
    Support Team

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Whole Bar Clickable’ is closed to new replies.