Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Ismail

    (@elhardoum)

    Hello,

    Try adding this code to your child theme’s functions file or with a custom plugin:

    add_action('wp_footer', function() {
    	?>
    		<script type="text/javascript">
    			window.onload = function() {
    				var a = document.querySelectorAll('a[href*="/?recipient="]');
    				for (var i=0;i<a.length;i++) {
    					a[i].setAttribute('onmousedown', "window.open(this.href, '', 'width=500,height=600');window.event.preventDefault()");
    				}
    			}
    		</script>
    	<?php
    });

    Let me know if it worked and that does it for you.

    Thank you,
    Samuel

    Thread Starter pryde1919

    (@pryde1919)

    ok let me try ??

    Thread Starter pryde1919

    (@pryde1919)

    Hi, is it possible without the windows tool? like without the maximize, close x , without the address bar?

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘chatbox’ is closed to new replies.