Skip to main content

Posts

Alternative IRC Clients for Windows

HexChat HexChat is an IRC client based on XChat, but unlike XChat it’s completely free for both Windows and Unix-like systems. Since XChat is open source, it’s perfectly legal https://hexchat.github.io/ ADIIRC http://www.adiirc.com/ Hydrairc http://www.hydrairc.com/ XChat XChat is an IRC chat program for both Linux and Windows. It allows you to join multiple IRC channels (chat rooms) at the same time, talk publicly, private one-on-one conversations etc. Even file transfers are possible. http://xchat.org/ Kvirc KVIrc is a free portable IRC client based on the excellent Qt GUI toolkit. KVirc is being written by Szymon Stefanek and the KVIrc Development Team with the contribution of many IRC addicted developers around the world. http://www.kvirc.net/ ThrashIRC ThrashIRC is the easiest IRC client to connect to IRC. It has the best IRC client features while using little system resources. It connects to multiple networks. It has built-in spell check. This ch...

FIX - smaller search box not working properly on my custom opencart theme

search not working properly on my custom opencart theme Probably you have moved your <?php echo $search; ?> outside the <header> tag. so .... we are going to use the #search id <div id="search" class="input-group">   <input type="text" name="search" value="<?php echo $search; ?>" placeholder="<?php echo $text_search; ?>" class="form-control input-lg" />   <span class="input-group-btn">     <button type="button" class="btn btn-default btn-lg"><i class="fa fa-search"></i></button>   </span> </div> Solution edit catalog/view/javascript/common.js and after var a=$("header input[name='search']").val(); add if(!a){a=$("#search input[name='search']").val();} or just replace var a=$("header input[name='search']").val(); it s with...