The title says it all, the following code does the trick: Simply add this code to the bottom of your functions.php file for your active theme [box] (!current_user_can(‘manage_options’)) { add_filter(‘show_admin_bar’,’__return_false’);…
Only show wordpress admin bar for administrators
Remove price when 0 or empty in Classipress
Sometimes people would just like to post without selling something – e.g advertising clubs, bands, etc. In such cases there is no need for the price. To remove the price…
Google Hangout vs Skype
I’ve been watching Google Hangout for quite sometime, and tested it quite a bit with Google+. The voice quality and video quality is absolutely brilliant, and knocks skype out the…
Convert ArrayList to string[] C#
Some quick and simple code to convert an ArrayList to a string array in C# [box] string[] stringArray = (string[])arrayList.ToArray(typeof(string));[/box]
Split data in 1 excel column into multiple columns (Split by delimiter)
Well I came across a situation the other day where a client had data in one column and wanted to extract that data and put elements of that column into…
How to add a jar file to Eclipse / DiscoveryListener cannot be resolved to a type
A common problem when JAR files are not imported into Eclipse, is the error: “… cannot be resolved to a type” A quick fix is to ensure that you have…
Get content between two delimiters in PHP – extract HTML comments using PHP
Quite a handy little function provided by BitRepository which enables you to grab the text between two delimiters in PHP. Example: [box type=”bio”] Sentence: Hello *world, thanks for having a look…
Sign into multiple Skype accounts on the same computer
Quite a nifty code which enables you to log into multiple skype accounts on the same computer – very simple to implement: Open Notepad Paste the following code in Notepad[box…
Change slider speed in OpenCart
The slider / Slideshow in OpenCart is way way to fast: Open: catalog/view/theme/default/template/module/slideshow.tpl Find: [box type=”bio”] $(‘#slideshow’).nivoSlider();[/box] Change To: [box type=”bio”] $(‘#slideshow’).nivoSlider({pauseTime:8000});[/box] Courtesy of OpenCart Forums user Simon
Email Notifier (TurkeyBabble) based on subject or from address
We recently wrote a lovely little email notifier application (TurkeyBabble) which plays a specified sound upon receiving a particular email or from a particular address. Your email client will notify…
