Most of WordPress theme developers may already agree that the most flexible for WordPress CMS is able to extend a template (we called parent theme) to create any child theme we want. You may also face the same issue to me when we want to remove one configuration of the parent theme. I have and… Read More


Security is most concerning for all kinds of software or applications. WordPress is a free opensource blogging and CMS-like system, as it is an opensource product so source code is opening that’s easy for hackers to read to understand the way of the open source does. But it doesn’t mean that it’s easy to hack.… Read More


Working with Weblogic 8.1, it’s fine just to put jar of weblogic-8.1.jar into your classpath, your client application will find weblogic server easily but with Weblogic 9+ (in my case, Weblogic 10.3), it’s not the case if you don’t know. You may get similar errors as: java.lang.NoClassDefFoundError: weblogic/utils/NestedException or java.lang.NoClassDefFoundError: weblogic/descriptor/DescriptorBean or java.lang.NoClassDefFoundError: weblogic/utils/classloaders/GenericClassLoader So… Read More


I used Horizontal scrolling announcement wordpress plugin (v3.0) for some sites but currently it’s not supporting for multi langauges but I need. I modified the code in the plugin for displaying purpose in file: horizontal-scrolling-announcement.php in method: horizontal_scrolling_announcement() Line 53: $hsa = htmlspecialchars(__(stripslashes($data->hsa_text))); Line 61: $hsa = $hsa . ”   –   ” . htmlspecialchars(__(stripslashes($data->hsa_text))); At… Read More


Parse error: syntax error, unexpected $end in … on line … While I develop a wordpress plugin, I got such error, finally I found that the issue when we use short tag in PHP <? … ?> So solutions we can try: Replace <? by <?php Enable PHP setting: short_open_tag Create or edit .htaccess file… Read More