Tech Help Blog

A Technical Support Blog

Browsing Posts in Web Developer Tech Help

So I have run into this issue with some wordpress sites more often of late, I guess shared hosting servers or similar are tightening their reign on memory allocation? In any case, funnily enough, as I went to post this very post I received the same Fatel error on TechHelp Blog!! So I had to perform my [...]

A while back I posted a fix to stop wordpress from removing / cleaning html code in posts and pages. In later versions of WordPress this fix was rendered useless so I’ve found another solution and here it is.   Install the Plugin TinyMCE Advanced from your WP Admin area. Then in it’s main settings page check [...]

Here is another quick post for you. This comes up pretty often and is a simple task to do using php. here is a snipet of code that will display a viewers IP address to them. You can build on it from here. <?php $ip = $_SERVER['REMOTE_ADDR']; echo “Your IP Address is: ” . $ip; [...]

So you want to add a neat little Twitter/Tweet/etc button to your website, it really is a great way to “spread the word”. As with most social networking sites they really are the fastest way to be recognised! So here is how. The code from Twitter is already basically done for you, you can create [...]

So, you’ve decided to “upgrade” your site to include some like buttons for facebook? I recently had to do this for a customers website and was surprised at how simple it really is. The only difficulty is if you have a dynamic page, IE a product or blog style page that the code may need [...]

As you would be aware I use WordPress regularly (this site is also wordpress) and being a web dev I tend to place html code in pages regularly, recently I’ve become more and more anoyed with the WordPress auto code cleanup function. After some Google Searching I found this little Gem “Smacking WordPress Editor, or [...]